Required Package
library(dplyr)
library(biomaRt)
library(tximport)
library(rhdf5)
library(gplots)
library(org.Hs.eg.db)
library(DESeq2)
library(DT)
library(apeglm)
library(RColorBrewer)
library(IHW)
library(PCAtools)
library(pheatmap)
library(clusterProfiler)
library(EnhancedVolcano)
#library(ComplexHeatmap)
library(clusterProfiler)
library(circlize)
library(fgsea)
library(tidyverse)
library(ggpubr)
setwd("~/Downloads")
Directory
# path where your extracted the tar.gz folder to.
# strip the trailing '/'
quant_dir <- "/Users/aungphyo/Downloads/Kallisto"
list.files(quant_dir)
## [1] "D_CON1" "D_CON2"
## [3] "D_CON3" "D_TREAT1"
## [5] "D_TREAT2" "D_TREAT3"
## [7] "GRCh38.idx" "H_CON1"
## [9] "H_CON2" "H_CON3"
## [11] "H_CYTKN1" "H_CYTKN2"
## [13] "H_CYTKN3" "H_TREAT1"
## [15] "H_TREAT2" "H_TREAT3"
## [17] "Homo_sapiens.GRCh38.cdna.all.fa.gz" "samples.csv"
## [19] "samples.txt"
Metadata
samples <- read.csv(paste0(quant_dir, "/samples.csv"), header=T, row.names = "row", stringsAsFactors = T)
samples
## X condition replicate
## D_CON1 NA disease_control 1
## D_CON2 NA disease_control 2
## D_CON3 NA disease_control 3
## D_TREAT1 NA disease_treatment 1
## D_TREAT2 NA disease_treatment 2
## D_TREAT3 NA disease_treatment 3
## H_CON1 NA healthy_control 1
## H_CON2 NA healthy_control 2
## H_CON3 NA healthy_control 3
## H_CYTKN1 NA healthy_cytokine 1
## H_CYTKN2 NA healthy_cytokine 2
## H_CYTKN3 NA healthy_cytokine 3
## H_TREAT1 NA healthy_treatment 1
## H_TREAT2 NA healthy_treatment 2
## H_TREAT3 NA healthy_treatment 3
Convert numeric to factor
samples$replicate <- factor(samples$replicate)
# check its ok:
sapply(samples, is.factor)
## X condition replicate
## FALSE TRUE TRUE
Stage Kallisto Files
files <- file.path(quant_dir, rownames(samples), "abundance.h5")
names(files) <- paste0(rownames(samples))
files
## D_CON1
## "/Users/aungphyo/Downloads/Kallisto/D_CON1/abundance.h5"
## D_CON2
## "/Users/aungphyo/Downloads/Kallisto/D_CON2/abundance.h5"
## D_CON3
## "/Users/aungphyo/Downloads/Kallisto/D_CON3/abundance.h5"
## D_TREAT1
## "/Users/aungphyo/Downloads/Kallisto/D_TREAT1/abundance.h5"
## D_TREAT2
## "/Users/aungphyo/Downloads/Kallisto/D_TREAT2/abundance.h5"
## D_TREAT3
## "/Users/aungphyo/Downloads/Kallisto/D_TREAT3/abundance.h5"
## H_CON1
## "/Users/aungphyo/Downloads/Kallisto/H_CON1/abundance.h5"
## H_CON2
## "/Users/aungphyo/Downloads/Kallisto/H_CON2/abundance.h5"
## H_CON3
## "/Users/aungphyo/Downloads/Kallisto/H_CON3/abundance.h5"
## H_CYTKN1
## "/Users/aungphyo/Downloads/Kallisto/H_CYTKN1/abundance.h5"
## H_CYTKN2
## "/Users/aungphyo/Downloads/Kallisto/H_CYTKN2/abundance.h5"
## H_CYTKN3
## "/Users/aungphyo/Downloads/Kallisto/H_CYTKN3/abundance.h5"
## H_TREAT1
## "/Users/aungphyo/Downloads/Kallisto/H_TREAT1/abundance.h5"
## H_TREAT2
## "/Users/aungphyo/Downloads/Kallisto/H_TREAT2/abundance.h5"
## H_TREAT3
## "/Users/aungphyo/Downloads/Kallisto/H_TREAT3/abundance.h5"
BiomaRT Ensembl
mart <- useMart(biomart = "ensembl", dataset = "hsapiens_gene_ensembl")
Transcript to gene
## show how to identify attribute type
# $ head /data/github/quant/ctrl_1/abundance.tsv
## show how to query mart
listAttributes(mart)
## name
## 1 ensembl_gene_id
## 2 ensembl_gene_id_version
## 3 ensembl_transcript_id
## 4 ensembl_transcript_id_version
## 5 ensembl_peptide_id
## 6 ensembl_peptide_id_version
## 7 ensembl_exon_id
## 8 description
## 9 chromosome_name
## 10 start_position
## 11 end_position
## 12 strand
## 13 band
## 14 transcript_start
## 15 transcript_end
## 16 transcription_start_site
## 17 transcript_length
## 18 transcript_tsl
## 19 transcript_gencode_basic
## 20 transcript_appris
## 21 transcript_is_canonical
## 22 transcript_mane_select
## 23 transcript_mane_plus_clinical
## 24 external_gene_name
## 25 external_gene_source
## 26 external_transcript_name
## 27 external_transcript_source_name
## 28 transcript_count
## 29 percentage_gene_gc_content
## 30 gene_biotype
## 31 transcript_biotype
## 32 source
## 33 transcript_source
## 34 version
## 35 transcript_version
## 36 peptide_version
## 37 external_synonym
## 38 phenotype_description
## 39 source_name
## 40 study_external_id
## 41 strain_name
## 42 strain_gender
## 43 p_value
## 44 go_id
## 45 name_1006
## 46 definition_1006
## 47 go_linkage_type
## 48 namespace_1003
## 49 goslim_goa_accession
## 50 goslim_goa_description
## 51 biogrid
## 52 ccds
## 53 chembl
## 54 dbass3_name
## 55 dbass3_id
## 56 dbass5_name
## 57 dbass5_id
## 58 entrezgene_trans_name
## 59 embl
## 60 arrayexpress
## 61 genecards
## 62 hgnc_id
## 63 hgnc_symbol
## 64 hpa_accession
## 65 hpa_id
## 66 protein_id
## 67 ens_lrg_gene
## 68 ens_lrg_transcript
## 69 merops
## 70 mim_gene_description
## 71 mim_gene_accession
## 72 mim_morbid_description
## 73 mim_morbid_accession
## 74 mirbase_accession
## 75 mirbase_id
## 76 mirbase_trans_name
## 77 entrezgene_description
## 78 entrezgene_accession
## 79 entrezgene_id
## 80 pdb
## 81 reactome
## 82 reactome_gene
## 83 reactome_transcript
## 84 refseq_mrna
## 85 refseq_mrna_predicted
## 86 refseq_ncrna
## 87 refseq_ncrna_predicted
## 88 refseq_peptide
## 89 refseq_peptide_predicted
## 90 rfam
## 91 rfam_trans_name
## 92 rnacentral
## 93 hgnc_trans_name
## 94 ucsc
## 95 uniparc
## 96 uniprot_gn_symbol
## 97 uniprot_gn_id
## 98 uniprot_isoform
## 99 uniprotswissprot
## 100 uniprotsptrembl
## 101 wikigene_description
## 102 wikigene_name
## 103 wikigene_id
## 104 affy_hc_g110
## 105 affy_hg_focus
## 106 affy_hg_u133a_2
## 107 affy_hg_u133b
## 108 affy_hg_u133_plus_2
## 109 affy_hg_u95a
## 110 affy_hg_u95av2
## 111 affy_hg_u95b
## 112 affy_hg_u95c
## 113 affy_hg_u95d
## 114 affy_hg_u95e
## 115 affy_hta_2_0
## 116 affy_ht_hg_u133_plus_pm
## 117 affy_huex_1_0_st_v2
## 118 affy_hugenefl
## 119 affy_hugene_1_0_st_v1
## 120 affy_hugene_2_0_st_v1
## 121 affy_hugene_2_1_st_v1
## 122 affy_primeview
## 123 affy_u133_x3p
## 124 agilent_cgh_44b
## 125 agilent_gpl19072
## 126 agilent_gpl26966
## 127 agilent_gpl6848
## 128 agilent_sureprint_g3_ge_8x60k
## 129 agilent_sureprint_g3_ge_8x60k_v2
## 130 agilent_wholegenome
## 131 agilent_wholegenome_4x44k_v1
## 132 agilent_wholegenome_4x44k_v2
## 133 codelink_codelink
## 134 illumina_humanref_8_v3
## 135 illumina_humanwg_6_v3
## 136 phalanx_onearray
## 137 cdd
## 138 cdd_start
## 139 cdd_end
## 140 gene3d
## 141 gene3d_start
## 142 gene3d_end
## 143 hamap
## 144 hamap_start
## 145 hamap_end
## 146 hmmpanther
## 147 hmmpanther_start
## 148 hmmpanther_end
## 149 pfam
## 150 pfam_start
## 151 pfam_end
## 152 pirsf
## 153 pirsf_start
## 154 pirsf_end
## 155 prints
## 156 prints_start
## 157 prints_end
## 158 scanprosite
## 159 scanprosite_start
## 160 scanprosite_end
## 161 pfscan
## 162 pfscan_start
## 163 pfscan_end
## 164 sfld
## 165 sfld_start
## 166 sfld_end
## 167 smart
## 168 smart_start
## 169 smart_end
## 170 superfamily
## 171 superfamily_start
## 172 superfamily_end
## 173 tigrfam
## 174 tigrfam_start
## 175 tigrfam_end
## 176 interpro
## 177 interpro_short_description
## 178 interpro_description
## 179 interpro_start
## 180 interpro_end
## 181 alphafold_import
## 182 alphafold_import_start
## 183 alphafold_import_end
## 184 mobidblite
## 185 mobidblite_start
## 186 mobidblite_end
## 187 ncoils
## 188 ncoils_start
## 189 ncoils_end
## 190 seg
## 191 seg_start
## 192 seg_end
## 193 sifts_import
## 194 sifts_import_start
## 195 sifts_import_end
## 196 signalp
## 197 signalp_start
## 198 signalp_end
## 199 tmhmm
## 200 tmhmm_start
## 201 tmhmm_end
## 202 ensembl_gene_id
## 203 ensembl_gene_id_version
## 204 version
## 205 ensembl_transcript_id
## 206 ensembl_transcript_id_version
## 207 transcript_version
## 208 ensembl_peptide_id
## 209 ensembl_peptide_id_version
## 210 peptide_version
## 211 chromosome_name
## 212 start_position
## 213 end_position
## 214 transcript_start
## 215 transcript_end
## 216 transcription_start_site
## 217 transcript_length
## 218 strand
## 219 external_gene_name
## 220 external_gene_source
## 221 5_utr_start
## 222 5_utr_end
## 223 3_utr_start
## 224 3_utr_end
## 225 cds_length
## 226 transcript_count
## 227 description
## 228 gene_biotype
## 229 exon_chrom_start
## 230 exon_chrom_end
## 231 is_constitutive
## 232 rank
## 233 phase
## 234 end_phase
## 235 cdna_coding_start
## 236 cdna_coding_end
## 237 genomic_coding_start
## 238 genomic_coding_end
## 239 ensembl_exon_id
## 240 cds_start
## 241 cds_end
## 242 ensembl_gene_id
## 243 ensembl_gene_id_version
## 244 version
## 245 ensembl_transcript_id
## 246 ensembl_transcript_id_version
## 247 transcript_version
## 248 ensembl_peptide_id
## 249 ensembl_peptide_id_version
## 250 peptide_version
## 251 chromosome_name
## 252 start_position
## 253 end_position
## 254 strand
## 255 band
## 256 external_gene_name
## 257 external_gene_source
## 258 transcript_count
## 259 percentage_gene_gc_content
## 260 description
## 261 cabingdonii_homolog_ensembl_gene
## 262 cabingdonii_homolog_associated_gene_name
## 263 cabingdonii_homolog_ensembl_peptide
## 264 cabingdonii_homolog_chromosome
## 265 cabingdonii_homolog_chrom_start
## 266 cabingdonii_homolog_chrom_end
## 267 cabingdonii_homolog_canonical_transcript_protein
## 268 cabingdonii_homolog_subtype
## 269 cabingdonii_homolog_orthology_type
## 270 cabingdonii_homolog_perc_id
## 271 cabingdonii_homolog_perc_id_r1
## 272 cabingdonii_homolog_goc_score
## 273 cabingdonii_homolog_wga_coverage
## 274 cabingdonii_homolog_orthology_confidence
## 275 scaustralis_homolog_ensembl_gene
## 276 scaustralis_homolog_associated_gene_name
## 277 scaustralis_homolog_ensembl_peptide
## 278 scaustralis_homolog_chromosome
## 279 scaustralis_homolog_chrom_start
## 280 scaustralis_homolog_chrom_end
## 281 scaustralis_homolog_canonical_transcript_protein
## 282 scaustralis_homolog_subtype
## 283 scaustralis_homolog_orthology_type
## 284 scaustralis_homolog_perc_id
## 285 scaustralis_homolog_perc_id_r1
## 286 scaustralis_homolog_goc_score
## 287 scaustralis_homolog_wga_coverage
## 288 scaustralis_homolog_orthology_confidence
## 289 mspretus_homolog_ensembl_gene
## 290 mspretus_homolog_associated_gene_name
## 291 mspretus_homolog_ensembl_peptide
## 292 mspretus_homolog_chromosome
## 293 mspretus_homolog_chrom_start
## 294 mspretus_homolog_chrom_end
## 295 mspretus_homolog_canonical_transcript_protein
## 296 mspretus_homolog_subtype
## 297 mspretus_homolog_orthology_type
## 298 mspretus_homolog_perc_id
## 299 mspretus_homolog_perc_id_r1
## 300 mspretus_homolog_goc_score
## 301 mspretus_homolog_wga_coverage
## 302 mspretus_homolog_orthology_confidence
## 303 vpacos_homolog_ensembl_gene
## 304 vpacos_homolog_associated_gene_name
## 305 vpacos_homolog_ensembl_peptide
## 306 vpacos_homolog_chromosome
## 307 vpacos_homolog_chrom_start
## 308 vpacos_homolog_chrom_end
## 309 vpacos_homolog_canonical_transcript_protein
## 310 vpacos_homolog_subtype
## 311 vpacos_homolog_orthology_type
## 312 vpacos_homolog_perc_id
## 313 vpacos_homolog_perc_id_r1
## 314 vpacos_homolog_goc_score
## 315 vpacos_homolog_wga_coverage
## 316 vpacos_homolog_orthology_confidence
## 317 mmmarmota_homolog_ensembl_gene
## 318 mmmarmota_homolog_associated_gene_name
## 319 mmmarmota_homolog_ensembl_peptide
## 320 mmmarmota_homolog_chromosome
## 321 mmmarmota_homolog_chrom_start
## 322 mmmarmota_homolog_chrom_end
## 323 mmmarmota_homolog_canonical_transcript_protein
## 324 mmmarmota_homolog_subtype
## 325 mmmarmota_homolog_orthology_type
## 326 mmmarmota_homolog_perc_id
## 327 mmmarmota_homolog_perc_id_r1
## 328 mmmarmota_homolog_goc_score
## 329 mmmarmota_homolog_wga_coverage
## 330 mmmarmota_homolog_orthology_confidence
## 331 pformosa_homolog_ensembl_gene
## 332 pformosa_homolog_associated_gene_name
## 333 pformosa_homolog_ensembl_peptide
## 334 pformosa_homolog_chromosome
## 335 pformosa_homolog_chrom_start
## 336 pformosa_homolog_chrom_end
## 337 pformosa_homolog_canonical_transcript_protein
## 338 pformosa_homolog_subtype
## 339 pformosa_homolog_orthology_type
## 340 pformosa_homolog_perc_id
## 341 pformosa_homolog_perc_id_r1
## 342 pformosa_homolog_goc_score
## 343 pformosa_homolog_wga_coverage
## 344 pformosa_homolog_orthology_confidence
## 345 bbbison_homolog_ensembl_gene
## 346 bbbison_homolog_associated_gene_name
## 347 bbbison_homolog_ensembl_peptide
## 348 bbbison_homolog_chromosome
## 349 bbbison_homolog_chrom_start
## 350 bbbison_homolog_chrom_end
## 351 bbbison_homolog_canonical_transcript_protein
## 352 bbbison_homolog_subtype
## 353 bbbison_homolog_orthology_type
## 354 bbbison_homolog_perc_id
## 355 bbbison_homolog_perc_id_r1
## 356 bbbison_homolog_goc_score
## 357 bbbison_homolog_wga_coverage
## 358 bbbison_homolog_orthology_confidence
## 359 uamericanus_homolog_ensembl_gene
## 360 uamericanus_homolog_associated_gene_name
## 361 uamericanus_homolog_ensembl_peptide
## 362 uamericanus_homolog_chromosome
## 363 uamericanus_homolog_chrom_start
## 364 uamericanus_homolog_chrom_end
## 365 uamericanus_homolog_canonical_transcript_protein
## 366 uamericanus_homolog_subtype
## 367 uamericanus_homolog_orthology_type
## 368 uamericanus_homolog_perc_id
## 369 uamericanus_homolog_perc_id_r1
## 370 uamericanus_homolog_goc_score
## 371 uamericanus_homolog_wga_coverage
## 372 uamericanus_homolog_orthology_confidence
## 373 nvison_homolog_ensembl_gene
## 374 nvison_homolog_associated_gene_name
## 375 nvison_homolog_ensembl_peptide
## 376 nvison_homolog_chromosome
## 377 nvison_homolog_chrom_start
## 378 nvison_homolog_chrom_end
## 379 nvison_homolog_canonical_transcript_protein
## 380 nvison_homolog_subtype
## 381 nvison_homolog_orthology_type
## 382 nvison_homolog_perc_id
## 383 nvison_homolog_perc_id_r1
## 384 nvison_homolog_goc_score
## 385 nvison_homolog_wga_coverage
## 386 nvison_homolog_orthology_confidence
## 387 cdromedarius_homolog_ensembl_gene
## 388 cdromedarius_homolog_associated_gene_name
## 389 cdromedarius_homolog_ensembl_peptide
## 390 cdromedarius_homolog_chromosome
## 391 cdromedarius_homolog_chrom_start
## 392 cdromedarius_homolog_chrom_end
## 393 cdromedarius_homolog_canonical_transcript_protein
## 394 cdromedarius_homolog_subtype
## 395 cdromedarius_homolog_orthology_type
## 396 cdromedarius_homolog_perc_id
## 397 cdromedarius_homolog_perc_id_r1
## 398 cdromedarius_homolog_goc_score
## 399 cdromedarius_homolog_wga_coverage
## 400 cdromedarius_homolog_orthology_confidence
## 401 uparryii_homolog_ensembl_gene
## 402 uparryii_homolog_associated_gene_name
## 403 uparryii_homolog_ensembl_peptide
## 404 uparryii_homolog_chromosome
## 405 uparryii_homolog_chrom_start
## 406 uparryii_homolog_chrom_end
## 407 uparryii_homolog_canonical_transcript_protein
## 408 uparryii_homolog_subtype
## 409 uparryii_homolog_orthology_type
## 410 uparryii_homolog_perc_id
## 411 uparryii_homolog_perc_id_r1
## 412 uparryii_homolog_goc_score
## 413 uparryii_homolog_wga_coverage
## 414 uparryii_homolog_orthology_confidence
## 415 smerianae_homolog_ensembl_gene
## 416 smerianae_homolog_associated_gene_name
## 417 smerianae_homolog_ensembl_peptide
## 418 smerianae_homolog_chromosome
## 419 smerianae_homolog_chrom_start
## 420 smerianae_homolog_chrom_end
## 421 smerianae_homolog_canonical_transcript_protein
## 422 smerianae_homolog_subtype
## 423 smerianae_homolog_orthology_type
## 424 smerianae_homolog_perc_id
## 425 smerianae_homolog_perc_id_r1
## 426 smerianae_homolog_goc_score
## 427 smerianae_homolog_wga_coverage
## 428 smerianae_homolog_orthology_confidence
## 429 dnovemcinctus_homolog_ensembl_gene
## 430 dnovemcinctus_homolog_associated_gene_name
## 431 dnovemcinctus_homolog_ensembl_peptide
## 432 dnovemcinctus_homolog_chromosome
## 433 dnovemcinctus_homolog_chrom_start
## 434 dnovemcinctus_homolog_chrom_end
## 435 dnovemcinctus_homolog_canonical_transcript_protein
## 436 dnovemcinctus_homolog_subtype
## 437 dnovemcinctus_homolog_orthology_type
## 438 dnovemcinctus_homolog_perc_id
## 439 dnovemcinctus_homolog_perc_id_r1
## 440 dnovemcinctus_homolog_goc_score
## 441 dnovemcinctus_homolog_wga_coverage
## 442 dnovemcinctus_homolog_orthology_confidence
## 443 sformosus_homolog_ensembl_gene
## 444 sformosus_homolog_associated_gene_name
## 445 sformosus_homolog_ensembl_peptide
## 446 sformosus_homolog_chromosome
## 447 sformosus_homolog_chrom_start
## 448 sformosus_homolog_chrom_end
## 449 sformosus_homolog_canonical_transcript_protein
## 450 sformosus_homolog_subtype
## 451 sformosus_homolog_orthology_type
## 452 sformosus_homolog_perc_id
## 453 sformosus_homolog_perc_id_r1
## 454 sformosus_homolog_goc_score
## 455 sformosus_homolog_wga_coverage
## 456 sformosus_homolog_orthology_confidence
## 457 gmorhua_homolog_ensembl_gene
## 458 gmorhua_homolog_associated_gene_name
## 459 gmorhua_homolog_ensembl_peptide
## 460 gmorhua_homolog_chromosome
## 461 gmorhua_homolog_chrom_start
## 462 gmorhua_homolog_chrom_end
## 463 gmorhua_homolog_canonical_transcript_protein
## 464 gmorhua_homolog_subtype
## 465 gmorhua_homolog_orthology_type
## 466 gmorhua_homolog_perc_id
## 467 gmorhua_homolog_perc_id_r1
## 468 gmorhua_homolog_goc_score
## 469 gmorhua_homolog_orthology_confidence
## 470 charengus_homolog_ensembl_gene
## 471 charengus_homolog_associated_gene_name
## 472 charengus_homolog_ensembl_peptide
## 473 charengus_homolog_chromosome
## 474 charengus_homolog_chrom_start
## 475 charengus_homolog_chrom_end
## 476 charengus_homolog_canonical_transcript_protein
## 477 charengus_homolog_subtype
## 478 charengus_homolog_orthology_type
## 479 charengus_homolog_perc_id
## 480 charengus_homolog_perc_id_r1
## 481 charengus_homolog_goc_score
## 482 charengus_homolog_wga_coverage
## 483 charengus_homolog_orthology_confidence
## 484 ssalar_homolog_ensembl_gene
## 485 ssalar_homolog_associated_gene_name
## 486 ssalar_homolog_ensembl_peptide
## 487 ssalar_homolog_chromosome
## 488 ssalar_homolog_chrom_start
## 489 ssalar_homolog_chrom_end
## 490 ssalar_homolog_canonical_transcript_protein
## 491 ssalar_homolog_subtype
## 492 ssalar_homolog_orthology_type
## 493 ssalar_homolog_perc_id
## 494 ssalar_homolog_perc_id_r1
## 495 ssalar_homolog_goc_score
## 496 ssalar_homolog_orthology_confidence
## 497 cporosus_homolog_ensembl_gene
## 498 cporosus_homolog_associated_gene_name
## 499 cporosus_homolog_ensembl_peptide
## 500 cporosus_homolog_chromosome
## 501 cporosus_homolog_chrom_start
## 502 cporosus_homolog_chrom_end
## 503 cporosus_homolog_canonical_transcript_protein
## 504 cporosus_homolog_subtype
## 505 cporosus_homolog_orthology_type
## 506 cporosus_homolog_perc_id
## 507 cporosus_homolog_perc_id_r1
## 508 cporosus_homolog_goc_score
## 509 cporosus_homolog_wga_coverage
## 510 cporosus_homolog_orthology_confidence
## 511 lbergylta_homolog_ensembl_gene
## 512 lbergylta_homolog_associated_gene_name
## 513 lbergylta_homolog_ensembl_peptide
## 514 lbergylta_homolog_chromosome
## 515 lbergylta_homolog_chrom_start
## 516 lbergylta_homolog_chrom_end
## 517 lbergylta_homolog_canonical_transcript_protein
## 518 lbergylta_homolog_subtype
## 519 lbergylta_homolog_orthology_type
## 520 lbergylta_homolog_perc_id
## 521 lbergylta_homolog_perc_id_r1
## 522 lbergylta_homolog_goc_score
## 523 lbergylta_homolog_wga_coverage
## 524 lbergylta_homolog_orthology_confidence
## 525 lcalcarifer_homolog_ensembl_gene
## 526 lcalcarifer_homolog_associated_gene_name
## 527 lcalcarifer_homolog_ensembl_peptide
## 528 lcalcarifer_homolog_chromosome
## 529 lcalcarifer_homolog_chrom_start
## 530 lcalcarifer_homolog_chrom_end
## 531 lcalcarifer_homolog_canonical_transcript_protein
## 532 lcalcarifer_homolog_subtype
## 533 lcalcarifer_homolog_orthology_type
## 534 lcalcarifer_homolog_perc_id
## 535 lcalcarifer_homolog_perc_id_r1
## 536 lcalcarifer_homolog_goc_score
## 537 lcalcarifer_homolog_wga_coverage
## 538 lcalcarifer_homolog_orthology_confidence
## 539 dleucas_homolog_ensembl_gene
## 540 dleucas_homolog_associated_gene_name
## 541 dleucas_homolog_ensembl_peptide
## 542 dleucas_homolog_chromosome
## 543 dleucas_homolog_chrom_start
## 544 dleucas_homolog_chrom_end
## 545 dleucas_homolog_canonical_transcript_protein
## 546 dleucas_homolog_subtype
## 547 dleucas_homolog_orthology_type
## 548 dleucas_homolog_perc_id
## 549 dleucas_homolog_perc_id_r1
## 550 dleucas_homolog_goc_score
## 551 dleucas_homolog_wga_coverage
## 552 dleucas_homolog_orthology_confidence
## 553 spartitus_homolog_ensembl_gene
## 554 spartitus_homolog_associated_gene_name
## 555 spartitus_homolog_ensembl_peptide
## 556 spartitus_homolog_chromosome
## 557 spartitus_homolog_chrom_start
## 558 spartitus_homolog_chrom_end
## 559 spartitus_homolog_canonical_transcript_protein
## 560 spartitus_homolog_subtype
## 561 spartitus_homolog_orthology_type
## 562 spartitus_homolog_perc_id
## 563 spartitus_homolog_perc_id_r1
## 564 spartitus_homolog_goc_score
## 565 spartitus_homolog_wga_coverage
## 566 spartitus_homolog_orthology_confidence
## 567 rbieti_homolog_ensembl_gene
## 568 rbieti_homolog_associated_gene_name
## 569 rbieti_homolog_ensembl_peptide
## 570 rbieti_homolog_chromosome
## 571 rbieti_homolog_chrom_start
## 572 rbieti_homolog_chrom_end
## 573 rbieti_homolog_canonical_transcript_protein
## 574 rbieti_homolog_subtype
## 575 rbieti_homolog_orthology_type
## 576 rbieti_homolog_perc_id
## 577 rbieti_homolog_perc_id_r1
## 578 rbieti_homolog_goc_score
## 579 rbieti_homolog_wga_coverage
## 580 rbieti_homolog_orthology_confidence
## 581 bmusculus_homolog_ensembl_gene
## 582 bmusculus_homolog_associated_gene_name
## 583 bmusculus_homolog_ensembl_peptide
## 584 bmusculus_homolog_chromosome
## 585 bmusculus_homolog_chrom_start
## 586 bmusculus_homolog_chrom_end
## 587 bmusculus_homolog_canonical_transcript_protein
## 588 bmusculus_homolog_subtype
## 589 bmusculus_homolog_orthology_type
## 590 bmusculus_homolog_perc_id
## 591 bmusculus_homolog_perc_id_r1
## 592 bmusculus_homolog_goc_score
## 593 bmusculus_homolog_wga_coverage
## 594 bmusculus_homolog_orthology_confidence
## 595 llaticaudata_homolog_ensembl_gene
## 596 llaticaudata_homolog_associated_gene_name
## 597 llaticaudata_homolog_ensembl_peptide
## 598 llaticaudata_homolog_chromosome
## 599 llaticaudata_homolog_chrom_start
## 600 llaticaudata_homolog_chrom_end
## 601 llaticaudata_homolog_canonical_transcript_protein
## 602 llaticaudata_homolog_subtype
## 603 llaticaudata_homolog_orthology_type
## 604 llaticaudata_homolog_perc_id
## 605 llaticaudata_homolog_perc_id_r1
## 606 llaticaudata_homolog_goc_score
## 607 llaticaudata_homolog_wga_coverage
## 608 llaticaudata_homolog_orthology_confidence
## 609 sbboliviensis_homolog_ensembl_gene
## 610 sbboliviensis_homolog_associated_gene_name
## 611 sbboliviensis_homolog_ensembl_peptide
## 612 sbboliviensis_homolog_chromosome
## 613 sbboliviensis_homolog_chrom_start
## 614 sbboliviensis_homolog_chrom_end
## 615 sbboliviensis_homolog_canonical_transcript_protein
## 616 sbboliviensis_homolog_subtype
## 617 sbboliviensis_homolog_orthology_type
## 618 sbboliviensis_homolog_perc_id
## 619 sbboliviensis_homolog_perc_id_r1
## 620 sbboliviensis_homolog_goc_score
## 621 sbboliviensis_homolog_wga_coverage
## 622 sbboliviensis_homolog_orthology_confidence
## 623 ppaniscus_homolog_ensembl_gene
## 624 ppaniscus_homolog_associated_gene_name
## 625 ppaniscus_homolog_ensembl_peptide
## 626 ppaniscus_homolog_chromosome
## 627 ppaniscus_homolog_chrom_start
## 628 ppaniscus_homolog_chrom_end
## 629 ppaniscus_homolog_canonical_transcript_protein
## 630 ppaniscus_homolog_subtype
## 631 ppaniscus_homolog_orthology_type
## 632 ppaniscus_homolog_perc_id
## 633 ppaniscus_homolog_perc_id_r1
## 634 ppaniscus_homolog_goc_score
## 635 ppaniscus_homolog_wga_coverage
## 636 ppaniscus_homolog_orthology_confidence
## 637 strutta_homolog_ensembl_gene
## 638 strutta_homolog_associated_gene_name
## 639 strutta_homolog_ensembl_peptide
## 640 strutta_homolog_chromosome
## 641 strutta_homolog_chrom_start
## 642 strutta_homolog_chrom_end
## 643 strutta_homolog_canonical_transcript_protein
## 644 strutta_homolog_subtype
## 645 strutta_homolog_orthology_type
## 646 strutta_homolog_perc_id
## 647 strutta_homolog_perc_id_r1
## 648 strutta_homolog_goc_score
## 649 strutta_homolog_wga_coverage
## 650 strutta_homolog_orthology_confidence
## 651 hburtoni_homolog_ensembl_gene
## 652 hburtoni_homolog_associated_gene_name
## 653 hburtoni_homolog_ensembl_peptide
## 654 hburtoni_homolog_chromosome
## 655 hburtoni_homolog_chrom_start
## 656 hburtoni_homolog_chrom_end
## 657 hburtoni_homolog_canonical_transcript_protein
## 658 hburtoni_homolog_subtype
## 659 hburtoni_homolog_orthology_type
## 660 hburtoni_homolog_perc_id
## 661 hburtoni_homolog_perc_id_r1
## 662 hburtoni_homolog_goc_score
## 663 hburtoni_homolog_wga_coverage
## 664 hburtoni_homolog_orthology_confidence
## 665 ogarnettii_homolog_ensembl_gene
## 666 ogarnettii_homolog_associated_gene_name
## 667 ogarnettii_homolog_ensembl_peptide
## 668 ogarnettii_homolog_chromosome
## 669 ogarnettii_homolog_chrom_start
## 670 ogarnettii_homolog_chrom_end
## 671 ogarnettii_homolog_canonical_transcript_protein
## 672 ogarnettii_homolog_subtype
## 673 ogarnettii_homolog_orthology_type
## 674 ogarnettii_homolog_perc_id
## 675 ogarnettii_homolog_perc_id_r1
## 676 ogarnettii_homolog_goc_score
## 677 ogarnettii_homolog_wga_coverage
## 678 ogarnettii_homolog_orthology_confidence
## 679 cintestinalis_homolog_ensembl_gene
## 680 cintestinalis_homolog_associated_gene_name
## 681 cintestinalis_homolog_ensembl_peptide
## 682 cintestinalis_homolog_chromosome
## 683 cintestinalis_homolog_chrom_start
## 684 cintestinalis_homolog_chrom_end
## 685 cintestinalis_homolog_canonical_transcript_protein
## 686 cintestinalis_homolog_subtype
## 687 cintestinalis_homolog_orthology_type
## 688 cintestinalis_homolog_perc_id
## 689 cintestinalis_homolog_perc_id_r1
## 690 cintestinalis_homolog_wga_coverage
## 691 cintestinalis_homolog_orthology_confidence
## 692 csavignyi_homolog_ensembl_gene
## 693 csavignyi_homolog_associated_gene_name
## 694 csavignyi_homolog_ensembl_peptide
## 695 csavignyi_homolog_chromosome
## 696 csavignyi_homolog_chrom_start
## 697 csavignyi_homolog_chrom_end
## 698 csavignyi_homolog_canonical_transcript_protein
## 699 csavignyi_homolog_subtype
## 700 csavignyi_homolog_orthology_type
## 701 csavignyi_homolog_perc_id
## 702 csavignyi_homolog_perc_id_r1
## 703 csavignyi_homolog_wga_coverage
## 704 csavignyi_homolog_orthology_confidence
## 705 celegans_homolog_ensembl_gene
## 706 celegans_homolog_associated_gene_name
## 707 celegans_homolog_ensembl_peptide
## 708 celegans_homolog_chromosome
## 709 celegans_homolog_chrom_start
## 710 celegans_homolog_chrom_end
## 711 celegans_homolog_canonical_transcript_protein
## 712 celegans_homolog_subtype
## 713 celegans_homolog_orthology_type
## 714 celegans_homolog_perc_id
## 715 celegans_homolog_perc_id_r1
## 716 celegans_homolog_orthology_confidence
## 717 fcatus_homolog_ensembl_gene
## 718 fcatus_homolog_associated_gene_name
## 719 fcatus_homolog_ensembl_peptide
## 720 fcatus_homolog_chromosome
## 721 fcatus_homolog_chrom_start
## 722 fcatus_homolog_chrom_end
## 723 fcatus_homolog_canonical_transcript_protein
## 724 fcatus_homolog_subtype
## 725 fcatus_homolog_orthology_type
## 726 fcatus_homolog_perc_id
## 727 fcatus_homolog_perc_id_r1
## 728 fcatus_homolog_goc_score
## 729 fcatus_homolog_wga_coverage
## 730 fcatus_homolog_orthology_confidence
## 731 cwagneri_homolog_ensembl_gene
## 732 cwagneri_homolog_associated_gene_name
## 733 cwagneri_homolog_ensembl_peptide
## 734 cwagneri_homolog_chromosome
## 735 cwagneri_homolog_chrom_start
## 736 cwagneri_homolog_chrom_end
## 737 cwagneri_homolog_canonical_transcript_protein
## 738 cwagneri_homolog_subtype
## 739 cwagneri_homolog_orthology_type
## 740 cwagneri_homolog_perc_id
## 741 cwagneri_homolog_perc_id_r1
## 742 cwagneri_homolog_goc_score
## 743 cwagneri_homolog_wga_coverage
## 744 cwagneri_homolog_orthology_confidence
## 745 cgobio_homolog_ensembl_gene
## 746 cgobio_homolog_associated_gene_name
## 747 cgobio_homolog_ensembl_peptide
## 748 cgobio_homolog_chromosome
## 749 cgobio_homolog_chrom_start
## 750 cgobio_homolog_chrom_end
## 751 cgobio_homolog_canonical_transcript_protein
## 752 cgobio_homolog_subtype
## 753 cgobio_homolog_orthology_type
## 754 cgobio_homolog_perc_id
## 755 cgobio_homolog_perc_id_r1
## 756 cgobio_homolog_goc_score
## 757 cgobio_homolog_wga_coverage
## 758 cgobio_homolog_orthology_confidence
## 759 ipunctatus_homolog_ensembl_gene
## 760 ipunctatus_homolog_associated_gene_name
## 761 ipunctatus_homolog_ensembl_peptide
## 762 ipunctatus_homolog_chromosome
## 763 ipunctatus_homolog_chrom_start
## 764 ipunctatus_homolog_chrom_end
## 765 ipunctatus_homolog_canonical_transcript_protein
## 766 ipunctatus_homolog_subtype
## 767 ipunctatus_homolog_orthology_type
## 768 ipunctatus_homolog_perc_id
## 769 ipunctatus_homolog_perc_id_r1
## 770 ipunctatus_homolog_goc_score
## 771 ipunctatus_homolog_wga_coverage
## 772 ipunctatus_homolog_orthology_confidence
## 773 ggallus_homolog_ensembl_gene
## 774 ggallus_homolog_associated_gene_name
## 775 ggallus_homolog_ensembl_peptide
## 776 ggallus_homolog_chromosome
## 777 ggallus_homolog_chrom_start
## 778 ggallus_homolog_chrom_end
## 779 ggallus_homolog_canonical_transcript_protein
## 780 ggallus_homolog_subtype
## 781 ggallus_homolog_orthology_type
## 782 ggallus_homolog_perc_id
## 783 ggallus_homolog_perc_id_r1
## 784 ggallus_homolog_goc_score
## 785 ggallus_homolog_wga_coverage
## 786 ggallus_homolog_orthology_confidence
## 787 ptroglodytes_homolog_ensembl_gene
## 788 ptroglodytes_homolog_associated_gene_name
## 789 ptroglodytes_homolog_ensembl_peptide
## 790 ptroglodytes_homolog_chromosome
## 791 ptroglodytes_homolog_chrom_start
## 792 ptroglodytes_homolog_chrom_end
## 793 ptroglodytes_homolog_canonical_transcript_protein
## 794 ptroglodytes_homolog_subtype
## 795 ptroglodytes_homolog_orthology_type
## 796 ptroglodytes_homolog_perc_id
## 797 ptroglodytes_homolog_perc_id_r1
## 798 ptroglodytes_homolog_goc_score
## 799 ptroglodytes_homolog_wga_coverage
## 800 ptroglodytes_homolog_orthology_confidence
## 801 cgchok1gshd_homolog_ensembl_gene
## 802 cgchok1gshd_homolog_associated_gene_name
## 803 cgchok1gshd_homolog_ensembl_peptide
## 804 cgchok1gshd_homolog_chromosome
## 805 cgchok1gshd_homolog_chrom_start
## 806 cgchok1gshd_homolog_chrom_end
## 807 cgchok1gshd_homolog_canonical_transcript_protein
## 808 cgchok1gshd_homolog_subtype
## 809 cgchok1gshd_homolog_orthology_type
## 810 cgchok1gshd_homolog_perc_id
## 811 cgchok1gshd_homolog_perc_id_r1
## 812 cgchok1gshd_homolog_goc_score
## 813 cgchok1gshd_homolog_wga_coverage
## 814 cgchok1gshd_homolog_orthology_confidence
## 815 osinensis_homolog_ensembl_gene
## 816 osinensis_homolog_associated_gene_name
## 817 osinensis_homolog_ensembl_peptide
## 818 osinensis_homolog_chromosome
## 819 osinensis_homolog_chrom_start
## 820 osinensis_homolog_chrom_end
## 821 osinensis_homolog_canonical_transcript_protein
## 822 osinensis_homolog_subtype
## 823 osinensis_homolog_orthology_type
## 824 osinensis_homolog_perc_id
## 825 osinensis_homolog_perc_id_r1
## 826 osinensis_homolog_goc_score
## 827 osinensis_homolog_wga_coverage
## 828 osinensis_homolog_orthology_confidence
## 829 psinensis_homolog_ensembl_gene
## 830 psinensis_homolog_associated_gene_name
## 831 psinensis_homolog_ensembl_peptide
## 832 psinensis_homolog_chromosome
## 833 psinensis_homolog_chrom_start
## 834 psinensis_homolog_chrom_end
## 835 psinensis_homolog_canonical_transcript_protein
## 836 psinensis_homolog_subtype
## 837 psinensis_homolog_orthology_type
## 838 psinensis_homolog_perc_id
## 839 psinensis_homolog_perc_id_r1
## 840 psinensis_homolog_goc_score
## 841 psinensis_homolog_wga_coverage
## 842 psinensis_homolog_orthology_confidence
## 843 otshawytscha_homolog_ensembl_gene
## 844 otshawytscha_homolog_associated_gene_name
## 845 otshawytscha_homolog_ensembl_peptide
## 846 otshawytscha_homolog_chromosome
## 847 otshawytscha_homolog_chrom_start
## 848 otshawytscha_homolog_chrom_end
## 849 otshawytscha_homolog_canonical_transcript_protein
## 850 otshawytscha_homolog_subtype
## 851 otshawytscha_homolog_orthology_type
## 852 otshawytscha_homolog_perc_id
## 853 otshawytscha_homolog_perc_id_r1
## 854 otshawytscha_homolog_goc_score
## 855 otshawytscha_homolog_wga_coverage
## 856 otshawytscha_homolog_orthology_confidence
## 857 atestudineus_homolog_ensembl_gene
## 858 atestudineus_homolog_associated_gene_name
## 859 atestudineus_homolog_ensembl_peptide
## 860 atestudineus_homolog_chromosome
## 861 atestudineus_homolog_chrom_start
## 862 atestudineus_homolog_chrom_end
## 863 atestudineus_homolog_canonical_transcript_protein
## 864 atestudineus_homolog_subtype
## 865 atestudineus_homolog_orthology_type
## 866 atestudineus_homolog_perc_id
## 867 atestudineus_homolog_perc_id_r1
## 868 atestudineus_homolog_goc_score
## 869 atestudineus_homolog_orthology_confidence
## 870 aocellaris_homolog_ensembl_gene
## 871 aocellaris_homolog_associated_gene_name
## 872 aocellaris_homolog_ensembl_peptide
## 873 aocellaris_homolog_chromosome
## 874 aocellaris_homolog_chrom_start
## 875 aocellaris_homolog_chrom_end
## 876 aocellaris_homolog_canonical_transcript_protein
## 877 aocellaris_homolog_subtype
## 878 aocellaris_homolog_orthology_type
## 879 aocellaris_homolog_perc_id
## 880 aocellaris_homolog_perc_id_r1
## 881 aocellaris_homolog_goc_score
## 882 aocellaris_homolog_wga_coverage
## 883 aocellaris_homolog_orthology_confidence
## 884 lchalumnae_homolog_ensembl_gene
## 885 lchalumnae_homolog_associated_gene_name
## 886 lchalumnae_homolog_ensembl_peptide
## 887 lchalumnae_homolog_chromosome
## 888 lchalumnae_homolog_chrom_start
## 889 lchalumnae_homolog_chrom_end
## 890 lchalumnae_homolog_canonical_transcript_protein
## 891 lchalumnae_homolog_subtype
## 892 lchalumnae_homolog_orthology_type
## 893 lchalumnae_homolog_perc_id
## 894 lchalumnae_homolog_perc_id_r1
## 895 lchalumnae_homolog_goc_score
## 896 lchalumnae_homolog_wga_coverage
## 897 lchalumnae_homolog_orthology_confidence
## 898 okisutch_homolog_ensembl_gene
## 899 okisutch_homolog_associated_gene_name
## 900 okisutch_homolog_ensembl_peptide
## 901 okisutch_homolog_chromosome
## 902 okisutch_homolog_chrom_start
## 903 okisutch_homolog_chrom_end
## 904 okisutch_homolog_canonical_transcript_protein
## 905 okisutch_homolog_subtype
## 906 okisutch_homolog_orthology_type
## 907 okisutch_homolog_perc_id
## 908 okisutch_homolog_perc_id_r1
## 909 okisutch_homolog_goc_score
## 910 okisutch_homolog_wga_coverage
## 911 okisutch_homolog_orthology_confidence
## 912 falbicollis_homolog_ensembl_gene
## 913 falbicollis_homolog_associated_gene_name
## 914 falbicollis_homolog_ensembl_peptide
## 915 falbicollis_homolog_chromosome
## 916 falbicollis_homolog_chrom_start
## 917 falbicollis_homolog_chrom_end
## 918 falbicollis_homolog_canonical_transcript_protein
## 919 falbicollis_homolog_subtype
## 920 falbicollis_homolog_orthology_type
## 921 falbicollis_homolog_perc_id
## 922 falbicollis_homolog_perc_id_r1
## 923 falbicollis_homolog_goc_score
## 924 falbicollis_homolog_orthology_confidence
## 925 scanaria_homolog_ensembl_gene
## 926 scanaria_homolog_associated_gene_name
## 927 scanaria_homolog_ensembl_peptide
## 928 scanaria_homolog_chromosome
## 929 scanaria_homolog_chrom_start
## 930 scanaria_homolog_chrom_end
## 931 scanaria_homolog_canonical_transcript_protein
## 932 scanaria_homolog_subtype
## 933 scanaria_homolog_orthology_type
## 934 scanaria_homolog_perc_id
## 935 scanaria_homolog_perc_id_r1
## 936 scanaria_homolog_goc_score
## 937 scanaria_homolog_wga_coverage
## 938 scanaria_homolog_orthology_confidence
## 939 cccarpio_homolog_ensembl_gene
## 940 cccarpio_homolog_associated_gene_name
## 941 cccarpio_homolog_ensembl_peptide
## 942 cccarpio_homolog_chromosome
## 943 cccarpio_homolog_chrom_start
## 944 cccarpio_homolog_chrom_end
## 945 cccarpio_homolog_canonical_transcript_protein
## 946 cccarpio_homolog_subtype
## 947 cccarpio_homolog_orthology_type
## 948 cccarpio_homolog_perc_id
## 949 cccarpio_homolog_perc_id_r1
## 950 cccarpio_homolog_goc_score
## 951 cccarpio_homolog_orthology_confidence
## 952 pmuralis_homolog_ensembl_gene
## 953 pmuralis_homolog_associated_gene_name
## 954 pmuralis_homolog_ensembl_peptide
## 955 pmuralis_homolog_chromosome
## 956 pmuralis_homolog_chrom_start
## 957 pmuralis_homolog_chrom_end
## 958 pmuralis_homolog_canonical_transcript_protein
## 959 pmuralis_homolog_subtype
## 960 pmuralis_homolog_orthology_type
## 961 pmuralis_homolog_perc_id
## 962 pmuralis_homolog_perc_id_r1
## 963 pmuralis_homolog_goc_score
## 964 pmuralis_homolog_wga_coverage
## 965 pmuralis_homolog_orthology_confidence
## 966 vursinus_homolog_ensembl_gene
## 967 vursinus_homolog_associated_gene_name
## 968 vursinus_homolog_ensembl_peptide
## 969 vursinus_homolog_chromosome
## 970 vursinus_homolog_chrom_start
## 971 vursinus_homolog_chrom_end
## 972 vursinus_homolog_canonical_transcript_protein
## 973 vursinus_homolog_subtype
## 974 vursinus_homolog_orthology_type
## 975 vursinus_homolog_perc_id
## 976 vursinus_homolog_perc_id_r1
## 977 vursinus_homolog_goc_score
## 978 vursinus_homolog_wga_coverage
## 979 vursinus_homolog_orthology_confidence
## 980 pcoquereli_homolog_ensembl_gene
## 981 pcoquereli_homolog_associated_gene_name
## 982 pcoquereli_homolog_ensembl_peptide
## 983 pcoquereli_homolog_chromosome
## 984 pcoquereli_homolog_chrom_start
## 985 pcoquereli_homolog_chrom_end
## 986 pcoquereli_homolog_canonical_transcript_protein
## 987 pcoquereli_homolog_subtype
## 988 pcoquereli_homolog_orthology_type
## 989 pcoquereli_homolog_perc_id
## 990 pcoquereli_homolog_perc_id_r1
## 991 pcoquereli_homolog_goc_score
## 992 pcoquereli_homolog_wga_coverage
## 993 pcoquereli_homolog_orthology_confidence
## 994 btaurus_homolog_ensembl_gene
## 995 btaurus_homolog_associated_gene_name
## 996 btaurus_homolog_ensembl_peptide
## 997 btaurus_homolog_chromosome
## 998 btaurus_homolog_chrom_start
## 999 btaurus_homolog_chrom_end
## 1000 btaurus_homolog_canonical_transcript_protein
## 1001 btaurus_homolog_subtype
## 1002 btaurus_homolog_orthology_type
## 1003 btaurus_homolog_perc_id
## 1004 btaurus_homolog_perc_id_r1
## 1005 btaurus_homolog_goc_score
## 1006 btaurus_homolog_wga_coverage
## 1007 btaurus_homolog_orthology_confidence
## 1008 mfascicularis_homolog_ensembl_gene
## 1009 mfascicularis_homolog_associated_gene_name
## 1010 mfascicularis_homolog_ensembl_peptide
## 1011 mfascicularis_homolog_chromosome
## 1012 mfascicularis_homolog_chrom_start
## 1013 mfascicularis_homolog_chrom_end
## 1014 mfascicularis_homolog_canonical_transcript_protein
## 1015 mfascicularis_homolog_subtype
## 1016 mfascicularis_homolog_orthology_type
## 1017 mfascicularis_homolog_perc_id
## 1018 mfascicularis_homolog_perc_id_r1
## 1019 mfascicularis_homolog_goc_score
## 1020 mfascicularis_homolog_wga_coverage
## 1021 mfascicularis_homolog_orthology_confidence
## 1022 odegus_homolog_ensembl_gene
## 1023 odegus_homolog_associated_gene_name
## 1024 odegus_homolog_ensembl_peptide
## 1025 odegus_homolog_chromosome
## 1026 odegus_homolog_chrom_start
## 1027 odegus_homolog_chrom_end
## 1028 odegus_homolog_canonical_transcript_protein
## 1029 odegus_homolog_subtype
## 1030 odegus_homolog_orthology_type
## 1031 odegus_homolog_perc_id
## 1032 odegus_homolog_perc_id_r1
## 1033 odegus_homolog_goc_score
## 1034 odegus_homolog_wga_coverage
## 1035 odegus_homolog_orthology_confidence
## 1036 dclupeoides_homolog_ensembl_gene
## 1037 dclupeoides_homolog_associated_gene_name
## 1038 dclupeoides_homolog_ensembl_peptide
## 1039 dclupeoides_homolog_chromosome
## 1040 dclupeoides_homolog_chrom_start
## 1041 dclupeoides_homolog_chrom_end
## 1042 dclupeoides_homolog_canonical_transcript_protein
## 1043 dclupeoides_homolog_subtype
## 1044 dclupeoides_homolog_orthology_type
## 1045 dclupeoides_homolog_perc_id
## 1046 dclupeoides_homolog_perc_id_r1
## 1047 dclupeoides_homolog_goc_score
## 1048 dclupeoides_homolog_wga_coverage
## 1049 dclupeoides_homolog_orthology_confidence
## 1050 cldingo_homolog_ensembl_gene
## 1051 cldingo_homolog_associated_gene_name
## 1052 cldingo_homolog_ensembl_peptide
## 1053 cldingo_homolog_chromosome
## 1054 cldingo_homolog_chrom_start
## 1055 cldingo_homolog_chrom_end
## 1056 cldingo_homolog_canonical_transcript_protein
## 1057 cldingo_homolog_subtype
## 1058 cldingo_homolog_orthology_type
## 1059 cldingo_homolog_perc_id
## 1060 cldingo_homolog_perc_id_r1
## 1061 cldingo_homolog_goc_score
## 1062 cldingo_homolog_wga_coverage
## 1063 cldingo_homolog_orthology_confidence
## 1064 clfamiliaris_homolog_ensembl_gene
## 1065 clfamiliaris_homolog_associated_gene_name
## 1066 clfamiliaris_homolog_ensembl_peptide
## 1067 clfamiliaris_homolog_chromosome
## 1068 clfamiliaris_homolog_chrom_start
## 1069 clfamiliaris_homolog_chrom_end
## 1070 clfamiliaris_homolog_canonical_transcript_protein
## 1071 clfamiliaris_homolog_subtype
## 1072 clfamiliaris_homolog_orthology_type
## 1073 clfamiliaris_homolog_perc_id
## 1074 clfamiliaris_homolog_perc_id_r1
## 1075 clfamiliaris_homolog_goc_score
## 1076 clfamiliaris_homolog_wga_coverage
## 1077 clfamiliaris_homolog_orthology_confidence
## 1078 ttruncatus_homolog_ensembl_gene
## 1079 ttruncatus_homolog_associated_gene_name
## 1080 ttruncatus_homolog_ensembl_peptide
## 1081 ttruncatus_homolog_chromosome
## 1082 ttruncatus_homolog_chrom_start
## 1083 ttruncatus_homolog_chrom_end
## 1084 ttruncatus_homolog_canonical_transcript_protein
## 1085 ttruncatus_homolog_subtype
## 1086 ttruncatus_homolog_orthology_type
## 1087 ttruncatus_homolog_perc_id
## 1088 ttruncatus_homolog_perc_id_r1
## 1089 ttruncatus_homolog_goc_score
## 1090 ttruncatus_homolog_wga_coverage
## 1091 ttruncatus_homolog_orthology_confidence
## 1092 bgrunniens_homolog_ensembl_gene
## 1093 bgrunniens_homolog_associated_gene_name
## 1094 bgrunniens_homolog_ensembl_peptide
## 1095 bgrunniens_homolog_chromosome
## 1096 bgrunniens_homolog_chrom_start
## 1097 bgrunniens_homolog_chrom_end
## 1098 bgrunniens_homolog_canonical_transcript_protein
## 1099 bgrunniens_homolog_subtype
## 1100 bgrunniens_homolog_orthology_type
## 1101 bgrunniens_homolog_perc_id
## 1102 bgrunniens_homolog_perc_id_r1
## 1103 bgrunniens_homolog_goc_score
## 1104 bgrunniens_homolog_wga_coverage
## 1105 bgrunniens_homolog_orthology_confidence
## 1106 easinus_homolog_ensembl_gene
## 1107 easinus_homolog_associated_gene_name
## 1108 easinus_homolog_ensembl_peptide
## 1109 easinus_homolog_chromosome
## 1110 easinus_homolog_chrom_start
## 1111 easinus_homolog_chrom_end
## 1112 easinus_homolog_canonical_transcript_protein
## 1113 easinus_homolog_subtype
## 1114 easinus_homolog_orthology_type
## 1115 easinus_homolog_perc_id
## 1116 easinus_homolog_perc_id_r1
## 1117 easinus_homolog_goc_score
## 1118 easinus_homolog_orthology_confidence
## 1119 mleucophaeus_homolog_ensembl_gene
## 1120 mleucophaeus_homolog_associated_gene_name
## 1121 mleucophaeus_homolog_ensembl_peptide
## 1122 mleucophaeus_homolog_chromosome
## 1123 mleucophaeus_homolog_chrom_start
## 1124 mleucophaeus_homolog_chrom_end
## 1125 mleucophaeus_homolog_canonical_transcript_protein
## 1126 mleucophaeus_homolog_subtype
## 1127 mleucophaeus_homolog_orthology_type
## 1128 mleucophaeus_homolog_perc_id
## 1129 mleucophaeus_homolog_perc_id_r1
## 1130 mleucophaeus_homolog_goc_score
## 1131 mleucophaeus_homolog_wga_coverage
## 1132 mleucophaeus_homolog_orthology_confidence
## 1133 dmelanogaster_homolog_ensembl_gene
## 1134 dmelanogaster_homolog_associated_gene_name
## 1135 dmelanogaster_homolog_ensembl_peptide
## 1136 dmelanogaster_homolog_chromosome
## 1137 dmelanogaster_homolog_chrom_start
## 1138 dmelanogaster_homolog_chrom_end
## 1139 dmelanogaster_homolog_canonical_transcript_protein
## 1140 dmelanogaster_homolog_subtype
## 1141 dmelanogaster_homolog_orthology_type
## 1142 dmelanogaster_homolog_perc_id
## 1143 dmelanogaster_homolog_perc_id_r1
## 1144 dmelanogaster_homolog_orthology_confidence
## 1145 applatyrhynchos_homolog_ensembl_gene
## 1146 applatyrhynchos_homolog_associated_gene_name
## 1147 applatyrhynchos_homolog_ensembl_peptide
## 1148 applatyrhynchos_homolog_chromosome
## 1149 applatyrhynchos_homolog_chrom_start
## 1150 applatyrhynchos_homolog_chrom_end
## 1151 applatyrhynchos_homolog_canonical_transcript_protein
## 1152 applatyrhynchos_homolog_subtype
## 1153 applatyrhynchos_homolog_orthology_type
## 1154 applatyrhynchos_homolog_perc_id
## 1155 applatyrhynchos_homolog_perc_id_r1
## 1156 applatyrhynchos_homolog_goc_score
## 1157 applatyrhynchos_homolog_wga_coverage
## 1158 applatyrhynchos_homolog_orthology_confidence
## 1159 ptextilis_homolog_ensembl_gene
## 1160 ptextilis_homolog_associated_gene_name
## 1161 ptextilis_homolog_ensembl_peptide
## 1162 ptextilis_homolog_chromosome
## 1163 ptextilis_homolog_chrom_start
## 1164 ptextilis_homolog_chrom_end
## 1165 ptextilis_homolog_canonical_transcript_protein
## 1166 ptextilis_homolog_subtype
## 1167 ptextilis_homolog_orthology_type
## 1168 ptextilis_homolog_perc_id
## 1169 ptextilis_homolog_perc_id_r1
## 1170 ptextilis_homolog_goc_score
## 1171 ptextilis_homolog_wga_coverage
## 1172 ptextilis_homolog_orthology_confidence
## 1173 acalliptera_homolog_ensembl_gene
## 1174 acalliptera_homolog_associated_gene_name
## 1175 acalliptera_homolog_ensembl_peptide
## 1176 acalliptera_homolog_chromosome
## 1177 acalliptera_homolog_chrom_start
## 1178 acalliptera_homolog_chrom_end
## 1179 acalliptera_homolog_canonical_transcript_protein
## 1180 acalliptera_homolog_subtype
## 1181 acalliptera_homolog_orthology_type
## 1182 acalliptera_homolog_perc_id
## 1183 acalliptera_homolog_perc_id_r1
## 1184 acalliptera_homolog_goc_score
## 1185 acalliptera_homolog_wga_coverage
## 1186 acalliptera_homolog_orthology_confidence
## 1187 eelectricus_homolog_ensembl_gene
## 1188 eelectricus_homolog_associated_gene_name
## 1189 eelectricus_homolog_ensembl_peptide
## 1190 eelectricus_homolog_chromosome
## 1191 eelectricus_homolog_chrom_start
## 1192 eelectricus_homolog_chrom_end
## 1193 eelectricus_homolog_canonical_transcript_protein
## 1194 eelectricus_homolog_subtype
## 1195 eelectricus_homolog_orthology_type
## 1196 eelectricus_homolog_perc_id
## 1197 eelectricus_homolog_perc_id_r1
## 1198 eelectricus_homolog_goc_score
## 1199 eelectricus_homolog_wga_coverage
## 1200 eelectricus_homolog_orthology_confidence
## 1201 lafricana_homolog_ensembl_gene
## 1202 lafricana_homolog_associated_gene_name
## 1203 lafricana_homolog_ensembl_peptide
## 1204 lafricana_homolog_chromosome
## 1205 lafricana_homolog_chrom_start
## 1206 lafricana_homolog_chrom_end
## 1207 lafricana_homolog_canonical_transcript_protein
## 1208 lafricana_homolog_subtype
## 1209 lafricana_homolog_orthology_type
## 1210 lafricana_homolog_perc_id
## 1211 lafricana_homolog_perc_id_r1
## 1212 lafricana_homolog_goc_score
## 1213 lafricana_homolog_wga_coverage
## 1214 lafricana_homolog_orthology_confidence
## 1215 cmilii_homolog_ensembl_gene
## 1216 cmilii_homolog_associated_gene_name
## 1217 cmilii_homolog_ensembl_peptide
## 1218 cmilii_homolog_chromosome
## 1219 cmilii_homolog_chrom_start
## 1220 cmilii_homolog_chrom_end
## 1221 cmilii_homolog_canonical_transcript_protein
## 1222 cmilii_homolog_subtype
## 1223 cmilii_homolog_orthology_type
## 1224 cmilii_homolog_perc_id
## 1225 cmilii_homolog_perc_id_r1
## 1226 cmilii_homolog_wga_coverage
## 1227 cmilii_homolog_orthology_confidence
## 1228 svulgaris_homolog_ensembl_gene
## 1229 svulgaris_homolog_associated_gene_name
## 1230 svulgaris_homolog_ensembl_peptide
## 1231 svulgaris_homolog_chromosome
## 1232 svulgaris_homolog_chrom_start
## 1233 svulgaris_homolog_chrom_end
## 1234 svulgaris_homolog_canonical_transcript_protein
## 1235 svulgaris_homolog_subtype
## 1236 svulgaris_homolog_orthology_type
## 1237 svulgaris_homolog_perc_id
## 1238 svulgaris_homolog_perc_id_r1
## 1239 svulgaris_homolog_goc_score
## 1240 svulgaris_homolog_wga_coverage
## 1241 svulgaris_homolog_orthology_confidence
## 1242 dlabrax_homolog_ensembl_gene
## 1243 dlabrax_homolog_associated_gene_name
## 1244 dlabrax_homolog_ensembl_peptide
## 1245 dlabrax_homolog_chromosome
## 1246 dlabrax_homolog_chrom_start
## 1247 dlabrax_homolog_chrom_end
## 1248 dlabrax_homolog_canonical_transcript_protein
## 1249 dlabrax_homolog_subtype
## 1250 dlabrax_homolog_orthology_type
## 1251 dlabrax_homolog_perc_id
## 1252 dlabrax_homolog_perc_id_r1
## 1253 dlabrax_homolog_goc_score
## 1254 dlabrax_homolog_orthology_confidence
## 1255 mpfuro_homolog_ensembl_gene
## 1256 mpfuro_homolog_associated_gene_name
## 1257 mpfuro_homolog_ensembl_peptide
## 1258 mpfuro_homolog_chromosome
## 1259 mpfuro_homolog_chrom_start
## 1260 mpfuro_homolog_chrom_end
## 1261 mpfuro_homolog_canonical_transcript_protein
## 1262 mpfuro_homolog_subtype
## 1263 mpfuro_homolog_orthology_type
## 1264 mpfuro_homolog_perc_id
## 1265 mpfuro_homolog_perc_id_r1
## 1266 mpfuro_homolog_goc_score
## 1267 mpfuro_homolog_wga_coverage
## 1268 mpfuro_homolog_orthology_confidence
## 1269 trubripes_homolog_ensembl_gene
## 1270 trubripes_homolog_associated_gene_name
## 1271 trubripes_homolog_ensembl_peptide
## 1272 trubripes_homolog_chromosome
## 1273 trubripes_homolog_chrom_start
## 1274 trubripes_homolog_chrom_end
## 1275 trubripes_homolog_canonical_transcript_protein
## 1276 trubripes_homolog_subtype
## 1277 trubripes_homolog_orthology_type
## 1278 trubripes_homolog_perc_id
## 1279 trubripes_homolog_perc_id_r1
## 1280 trubripes_homolog_goc_score
## 1281 trubripes_homolog_wga_coverage
## 1282 trubripes_homolog_orthology_confidence
## 1283 amelanoleuca_homolog_ensembl_gene
## 1284 amelanoleuca_homolog_associated_gene_name
## 1285 amelanoleuca_homolog_ensembl_peptide
## 1286 amelanoleuca_homolog_chromosome
## 1287 amelanoleuca_homolog_chrom_start
## 1288 amelanoleuca_homolog_chrom_end
## 1289 amelanoleuca_homolog_canonical_transcript_protein
## 1290 amelanoleuca_homolog_subtype
## 1291 amelanoleuca_homolog_orthology_type
## 1292 amelanoleuca_homolog_perc_id
## 1293 amelanoleuca_homolog_perc_id_r1
## 1294 amelanoleuca_homolog_goc_score
## 1295 amelanoleuca_homolog_orthology_confidence
## 1296 nleucogenys_homolog_ensembl_gene
## 1297 nleucogenys_homolog_associated_gene_name
## 1298 nleucogenys_homolog_ensembl_peptide
## 1299 nleucogenys_homolog_chromosome
## 1300 nleucogenys_homolog_chrom_start
## 1301 nleucogenys_homolog_chrom_end
## 1302 nleucogenys_homolog_canonical_transcript_protein
## 1303 nleucogenys_homolog_subtype
## 1304 nleucogenys_homolog_orthology_type
## 1305 nleucogenys_homolog_perc_id
## 1306 nleucogenys_homolog_perc_id_r1
## 1307 nleucogenys_homolog_goc_score
## 1308 nleucogenys_homolog_wga_coverage
## 1309 nleucogenys_homolog_orthology_confidence
## 1310 saurata_homolog_ensembl_gene
## 1311 saurata_homolog_associated_gene_name
## 1312 saurata_homolog_ensembl_peptide
## 1313 saurata_homolog_chromosome
## 1314 saurata_homolog_chrom_start
## 1315 saurata_homolog_chrom_end
## 1316 saurata_homolog_canonical_transcript_protein
## 1317 saurata_homolog_subtype
## 1318 saurata_homolog_orthology_type
## 1319 saurata_homolog_perc_id
## 1320 saurata_homolog_perc_id_r1
## 1321 saurata_homolog_goc_score
## 1322 saurata_homolog_wga_coverage
## 1323 saurata_homolog_orthology_confidence
## 1324 chircus_homolog_ensembl_gene
## 1325 chircus_homolog_associated_gene_name
## 1326 chircus_homolog_ensembl_peptide
## 1327 chircus_homolog_chromosome
## 1328 chircus_homolog_chrom_start
## 1329 chircus_homolog_chrom_end
## 1330 chircus_homolog_canonical_transcript_protein
## 1331 chircus_homolog_subtype
## 1332 chircus_homolog_orthology_type
## 1333 chircus_homolog_perc_id
## 1334 chircus_homolog_perc_id_r1
## 1335 chircus_homolog_goc_score
## 1336 chircus_homolog_wga_coverage
## 1337 chircus_homolog_orthology_confidence
## 1338 mauratus_homolog_ensembl_gene
## 1339 mauratus_homolog_associated_gene_name
## 1340 mauratus_homolog_ensembl_peptide
## 1341 mauratus_homolog_chromosome
## 1342 mauratus_homolog_chrom_start
## 1343 mauratus_homolog_chrom_end
## 1344 mauratus_homolog_canonical_transcript_protein
## 1345 mauratus_homolog_subtype
## 1346 mauratus_homolog_orthology_type
## 1347 mauratus_homolog_perc_id
## 1348 mauratus_homolog_perc_id_r1
## 1349 mauratus_homolog_goc_score
## 1350 mauratus_homolog_wga_coverage
## 1351 mauratus_homolog_orthology_confidence
## 1352 acchrysaetos_homolog_ensembl_gene
## 1353 acchrysaetos_homolog_associated_gene_name
## 1354 acchrysaetos_homolog_ensembl_peptide
## 1355 acchrysaetos_homolog_chromosome
## 1356 acchrysaetos_homolog_chrom_start
## 1357 acchrysaetos_homolog_chrom_end
## 1358 acchrysaetos_homolog_canonical_transcript_protein
## 1359 acchrysaetos_homolog_subtype
## 1360 acchrysaetos_homolog_orthology_type
## 1361 acchrysaetos_homolog_perc_id
## 1362 acchrysaetos_homolog_perc_id_r1
## 1363 acchrysaetos_homolog_goc_score
## 1364 acchrysaetos_homolog_wga_coverage
## 1365 acchrysaetos_homolog_orthology_confidence
## 1366 rroxellana_homolog_ensembl_gene
## 1367 rroxellana_homolog_associated_gene_name
## 1368 rroxellana_homolog_ensembl_peptide
## 1369 rroxellana_homolog_chromosome
## 1370 rroxellana_homolog_chrom_start
## 1371 rroxellana_homolog_chrom_end
## 1372 rroxellana_homolog_canonical_transcript_protein
## 1373 rroxellana_homolog_subtype
## 1374 rroxellana_homolog_orthology_type
## 1375 rroxellana_homolog_perc_id
## 1376 rroxellana_homolog_perc_id_r1
## 1377 rroxellana_homolog_goc_score
## 1378 rroxellana_homolog_wga_coverage
## 1379 rroxellana_homolog_orthology_confidence
## 1380 sgrahami_homolog_ensembl_gene
## 1381 sgrahami_homolog_associated_gene_name
## 1382 sgrahami_homolog_ensembl_peptide
## 1383 sgrahami_homolog_chromosome
## 1384 sgrahami_homolog_chrom_start
## 1385 sgrahami_homolog_chrom_end
## 1386 sgrahami_homolog_canonical_transcript_protein
## 1387 sgrahami_homolog_subtype
## 1388 sgrahami_homolog_orthology_type
## 1389 sgrahami_homolog_perc_id
## 1390 sgrahami_homolog_perc_id_r1
## 1391 sgrahami_homolog_goc_score
## 1392 sgrahami_homolog_wga_coverage
## 1393 sgrahami_homolog_orthology_confidence
## 1394 cauratus_homolog_ensembl_gene
## 1395 cauratus_homolog_associated_gene_name
## 1396 cauratus_homolog_ensembl_peptide
## 1397 cauratus_homolog_chromosome
## 1398 cauratus_homolog_chrom_start
## 1399 cauratus_homolog_chrom_end
## 1400 cauratus_homolog_canonical_transcript_protein
## 1401 cauratus_homolog_subtype
## 1402 cauratus_homolog_orthology_type
## 1403 cauratus_homolog_perc_id
## 1404 cauratus_homolog_perc_id_r1
## 1405 cauratus_homolog_goc_score
## 1406 cauratus_homolog_wga_coverage
## 1407 cauratus_homolog_orthology_confidence
## 1408 gevgoodei_homolog_ensembl_gene
## 1409 gevgoodei_homolog_associated_gene_name
## 1410 gevgoodei_homolog_ensembl_peptide
## 1411 gevgoodei_homolog_chromosome
## 1412 gevgoodei_homolog_chrom_start
## 1413 gevgoodei_homolog_chrom_end
## 1414 gevgoodei_homolog_canonical_transcript_protein
## 1415 gevgoodei_homolog_subtype
## 1416 gevgoodei_homolog_orthology_type
## 1417 gevgoodei_homolog_perc_id
## 1418 gevgoodei_homolog_perc_id_r1
## 1419 gevgoodei_homolog_goc_score
## 1420 gevgoodei_homolog_wga_coverage
## 1421 gevgoodei_homolog_orthology_confidence
## 1422 ggorilla_homolog_ensembl_gene
## 1423 ggorilla_homolog_associated_gene_name
## 1424 ggorilla_homolog_ensembl_peptide
## 1425 ggorilla_homolog_chromosome
## 1426 ggorilla_homolog_chrom_start
## 1427 ggorilla_homolog_chrom_end
## 1428 ggorilla_homolog_canonical_transcript_protein
## 1429 ggorilla_homolog_subtype
## 1430 ggorilla_homolog_orthology_type
## 1431 ggorilla_homolog_perc_id
## 1432 ggorilla_homolog_perc_id_r1
## 1433 ggorilla_homolog_goc_score
## 1434 ggorilla_homolog_wga_coverage
## 1435 ggorilla_homolog_orthology_confidence
## 1436 pmajor_homolog_ensembl_gene
## 1437 pmajor_homolog_associated_gene_name
## 1438 pmajor_homolog_ensembl_peptide
## 1439 pmajor_homolog_chromosome
## 1440 pmajor_homolog_chrom_start
## 1441 pmajor_homolog_chrom_end
## 1442 pmajor_homolog_canonical_transcript_protein
## 1443 pmajor_homolog_subtype
## 1444 pmajor_homolog_orthology_type
## 1445 pmajor_homolog_perc_id
## 1446 pmajor_homolog_perc_id_r1
## 1447 pmajor_homolog_goc_score
## 1448 pmajor_homolog_wga_coverage
## 1449 pmajor_homolog_orthology_confidence
## 1450 sdumerili_homolog_ensembl_gene
## 1451 sdumerili_homolog_associated_gene_name
## 1452 sdumerili_homolog_ensembl_peptide
## 1453 sdumerili_homolog_chromosome
## 1454 sdumerili_homolog_chrom_start
## 1455 sdumerili_homolog_chrom_end
## 1456 sdumerili_homolog_canonical_transcript_protein
## 1457 sdumerili_homolog_subtype
## 1458 sdumerili_homolog_orthology_type
## 1459 sdumerili_homolog_perc_id
## 1460 sdumerili_homolog_perc_id_r1
## 1461 sdumerili_homolog_goc_score
## 1462 sdumerili_homolog_wga_coverage
## 1463 sdumerili_homolog_orthology_confidence
## 1464 psimus_homolog_ensembl_gene
## 1465 psimus_homolog_associated_gene_name
## 1466 psimus_homolog_ensembl_peptide
## 1467 psimus_homolog_chromosome
## 1468 psimus_homolog_chrom_start
## 1469 psimus_homolog_chrom_end
## 1470 psimus_homolog_canonical_transcript_protein
## 1471 psimus_homolog_subtype
## 1472 psimus_homolog_orthology_type
## 1473 psimus_homolog_perc_id
## 1474 psimus_homolog_perc_id_r1
## 1475 psimus_homolog_goc_score
## 1476 psimus_homolog_wga_coverage
## 1477 psimus_homolog_orthology_confidence
## 1478 rferrumequinum_homolog_ensembl_gene
## 1479 rferrumequinum_homolog_associated_gene_name
## 1480 rferrumequinum_homolog_ensembl_peptide
## 1481 rferrumequinum_homolog_chromosome
## 1482 rferrumequinum_homolog_chrom_start
## 1483 rferrumequinum_homolog_chrom_end
## 1484 rferrumequinum_homolog_canonical_transcript_protein
## 1485 rferrumequinum_homolog_subtype
## 1486 rferrumequinum_homolog_orthology_type
## 1487 rferrumequinum_homolog_perc_id
## 1488 rferrumequinum_homolog_perc_id_r1
## 1489 rferrumequinum_homolog_goc_score
## 1490 rferrumequinum_homolog_wga_coverage
## 1491 rferrumequinum_homolog_orthology_confidence
## 1492 acarolinensis_homolog_ensembl_gene
## 1493 acarolinensis_homolog_associated_gene_name
## 1494 acarolinensis_homolog_ensembl_peptide
## 1495 acarolinensis_homolog_chromosome
## 1496 acarolinensis_homolog_chrom_start
## 1497 acarolinensis_homolog_chrom_end
## 1498 acarolinensis_homolog_canonical_transcript_protein
## 1499 acarolinensis_homolog_subtype
## 1500 acarolinensis_homolog_orthology_type
## 1501 acarolinensis_homolog_perc_id
## 1502 acarolinensis_homolog_perc_id_r1
## 1503 acarolinensis_homolog_goc_score
## 1504 acarolinensis_homolog_orthology_confidence
## 1505 cporcellus_homolog_ensembl_gene
## 1506 cporcellus_homolog_associated_gene_name
## 1507 cporcellus_homolog_ensembl_peptide
## 1508 cporcellus_homolog_chromosome
## 1509 cporcellus_homolog_chrom_start
## 1510 cporcellus_homolog_chrom_end
## 1511 cporcellus_homolog_canonical_transcript_protein
## 1512 cporcellus_homolog_subtype
## 1513 cporcellus_homolog_orthology_type
## 1514 cporcellus_homolog_perc_id
## 1515 cporcellus_homolog_perc_id_r1
## 1516 cporcellus_homolog_goc_score
## 1517 cporcellus_homolog_wga_coverage
## 1518 cporcellus_homolog_orthology_confidence
## 1519 preticulata_homolog_ensembl_gene
## 1520 preticulata_homolog_associated_gene_name
## 1521 preticulata_homolog_ensembl_peptide
## 1522 preticulata_homolog_chromosome
## 1523 preticulata_homolog_chrom_start
## 1524 preticulata_homolog_chrom_end
## 1525 preticulata_homolog_canonical_transcript_protein
## 1526 preticulata_homolog_subtype
## 1527 preticulata_homolog_orthology_type
## 1528 preticulata_homolog_perc_id
## 1529 preticulata_homolog_perc_id_r1
## 1530 preticulata_homolog_goc_score
## 1531 preticulata_homolog_wga_coverage
## 1532 preticulata_homolog_orthology_confidence
## 1533 eburgeri_homolog_ensembl_gene
## 1534 eburgeri_homolog_associated_gene_name
## 1535 eburgeri_homolog_ensembl_peptide
## 1536 eburgeri_homolog_chromosome
## 1537 eburgeri_homolog_chrom_start
## 1538 eburgeri_homolog_chrom_end
## 1539 eburgeri_homolog_canonical_transcript_protein
## 1540 eburgeri_homolog_subtype
## 1541 eburgeri_homolog_orthology_type
## 1542 eburgeri_homolog_perc_id
## 1543 eburgeri_homolog_perc_id_r1
## 1544 eburgeri_homolog_wga_coverage
## 1545 eburgeri_homolog_orthology_confidence
## 1546 eeuropaeus_homolog_ensembl_gene
## 1547 eeuropaeus_homolog_associated_gene_name
## 1548 eeuropaeus_homolog_ensembl_peptide
## 1549 eeuropaeus_homolog_chromosome
## 1550 eeuropaeus_homolog_chrom_start
## 1551 eeuropaeus_homolog_chrom_end
## 1552 eeuropaeus_homolog_canonical_transcript_protein
## 1553 eeuropaeus_homolog_subtype
## 1554 eeuropaeus_homolog_orthology_type
## 1555 eeuropaeus_homolog_perc_id
## 1556 eeuropaeus_homolog_perc_id_r1
## 1557 eeuropaeus_homolog_goc_score
## 1558 eeuropaeus_homolog_wga_coverage
## 1559 eeuropaeus_homolog_orthology_confidence
## 1560 ecaballus_homolog_ensembl_gene
## 1561 ecaballus_homolog_associated_gene_name
## 1562 ecaballus_homolog_ensembl_peptide
## 1563 ecaballus_homolog_chromosome
## 1564 ecaballus_homolog_chrom_start
## 1565 ecaballus_homolog_chrom_end
## 1566 ecaballus_homolog_canonical_transcript_protein
## 1567 ecaballus_homolog_subtype
## 1568 ecaballus_homolog_orthology_type
## 1569 ecaballus_homolog_perc_id
## 1570 ecaballus_homolog_perc_id_r1
## 1571 ecaballus_homolog_goc_score
## 1572 ecaballus_homolog_wga_coverage
## 1573 ecaballus_homolog_orthology_confidence
## 1574 hhucho_homolog_ensembl_gene
## 1575 hhucho_homolog_associated_gene_name
## 1576 hhucho_homolog_ensembl_peptide
## 1577 hhucho_homolog_chromosome
## 1578 hhucho_homolog_chrom_start
## 1579 hhucho_homolog_chrom_end
## 1580 hhucho_homolog_canonical_transcript_protein
## 1581 hhucho_homolog_subtype
## 1582 hhucho_homolog_orthology_type
## 1583 hhucho_homolog_perc_id
## 1584 hhucho_homolog_perc_id_r1
## 1585 hhucho_homolog_goc_score
## 1586 hhucho_homolog_wga_coverage
## 1587 hhucho_homolog_orthology_confidence
## 1588 bihybrid_homolog_ensembl_gene
## 1589 bihybrid_homolog_associated_gene_name
## 1590 bihybrid_homolog_ensembl_peptide
## 1591 bihybrid_homolog_chromosome
## 1592 bihybrid_homolog_chrom_start
## 1593 bihybrid_homolog_chrom_end
## 1594 bihybrid_homolog_canonical_transcript_protein
## 1595 bihybrid_homolog_subtype
## 1596 bihybrid_homolog_orthology_type
## 1597 bihybrid_homolog_perc_id
## 1598 bihybrid_homolog_perc_id_r1
## 1599 bihybrid_homolog_goc_score
## 1600 bihybrid_homolog_wga_coverage
## 1601 bihybrid_homolog_orthology_confidence
## 1602 pcapensis_homolog_ensembl_gene
## 1603 pcapensis_homolog_associated_gene_name
## 1604 pcapensis_homolog_ensembl_peptide
## 1605 pcapensis_homolog_chromosome
## 1606 pcapensis_homolog_chrom_start
## 1607 pcapensis_homolog_chrom_end
## 1608 pcapensis_homolog_canonical_transcript_protein
## 1609 pcapensis_homolog_subtype
## 1610 pcapensis_homolog_orthology_type
## 1611 pcapensis_homolog_perc_id
## 1612 pcapensis_homolog_perc_id_r1
## 1613 pcapensis_homolog_goc_score
## 1614 pcapensis_homolog_wga_coverage
## 1615 pcapensis_homolog_orthology_confidence
## 1616 nnaja_homolog_ensembl_gene
## 1617 nnaja_homolog_associated_gene_name
## 1618 nnaja_homolog_ensembl_peptide
## 1619 nnaja_homolog_chromosome
## 1620 nnaja_homolog_chrom_start
## 1621 nnaja_homolog_chrom_end
## 1622 nnaja_homolog_canonical_transcript_protein
## 1623 nnaja_homolog_subtype
## 1624 nnaja_homolog_orthology_type
## 1625 nnaja_homolog_perc_id
## 1626 nnaja_homolog_perc_id_r1
## 1627 nnaja_homolog_goc_score
## 1628 nnaja_homolog_wga_coverage
## 1629 nnaja_homolog_orthology_confidence
## 1630 omelastigma_homolog_ensembl_gene
## 1631 omelastigma_homolog_associated_gene_name
## 1632 omelastigma_homolog_ensembl_peptide
## 1633 omelastigma_homolog_chromosome
## 1634 omelastigma_homolog_chrom_start
## 1635 omelastigma_homolog_chrom_end
## 1636 omelastigma_homolog_canonical_transcript_protein
## 1637 omelastigma_homolog_subtype
## 1638 omelastigma_homolog_orthology_type
## 1639 omelastigma_homolog_perc_id
## 1640 omelastigma_homolog_perc_id_r1
## 1641 omelastigma_homolog_goc_score
## 1642 omelastigma_homolog_wga_coverage
## 1643 omelastigma_homolog_orthology_confidence
## 1644 olatipes_homolog_ensembl_gene
## 1645 olatipes_homolog_associated_gene_name
## 1646 olatipes_homolog_ensembl_peptide
## 1647 olatipes_homolog_chromosome
## 1648 olatipes_homolog_chrom_start
## 1649 olatipes_homolog_chrom_end
## 1650 olatipes_homolog_canonical_transcript_protein
## 1651 olatipes_homolog_subtype
## 1652 olatipes_homolog_orthology_type
## 1653 olatipes_homolog_perc_id
## 1654 olatipes_homolog_perc_id_r1
## 1655 olatipes_homolog_goc_score
## 1656 olatipes_homolog_wga_coverage
## 1657 olatipes_homolog_orthology_confidence
## 1658 cjaponica_homolog_ensembl_gene
## 1659 cjaponica_homolog_associated_gene_name
## 1660 cjaponica_homolog_ensembl_peptide
## 1661 cjaponica_homolog_chromosome
## 1662 cjaponica_homolog_chrom_start
## 1663 cjaponica_homolog_chrom_end
## 1664 cjaponica_homolog_canonical_transcript_protein
## 1665 cjaponica_homolog_subtype
## 1666 cjaponica_homolog_orthology_type
## 1667 cjaponica_homolog_perc_id
## 1668 cjaponica_homolog_perc_id_r1
## 1669 cjaponica_homolog_goc_score
## 1670 cjaponica_homolog_wga_coverage
## 1671 cjaponica_homolog_orthology_confidence
## 1672 ojavanicus_homolog_ensembl_gene
## 1673 ojavanicus_homolog_associated_gene_name
## 1674 ojavanicus_homolog_ensembl_peptide
## 1675 ojavanicus_homolog_chromosome
## 1676 ojavanicus_homolog_chrom_start
## 1677 ojavanicus_homolog_chrom_end
## 1678 ojavanicus_homolog_canonical_transcript_protein
## 1679 ojavanicus_homolog_subtype
## 1680 ojavanicus_homolog_orthology_type
## 1681 ojavanicus_homolog_perc_id
## 1682 ojavanicus_homolog_perc_id_r1
## 1683 ojavanicus_homolog_goc_score
## 1684 ojavanicus_homolog_wga_coverage
## 1685 ojavanicus_homolog_orthology_confidence
## 1686 shabroptila_homolog_ensembl_gene
## 1687 shabroptila_homolog_associated_gene_name
## 1688 shabroptila_homolog_ensembl_peptide
## 1689 shabroptila_homolog_chromosome
## 1690 shabroptila_homolog_chrom_start
## 1691 shabroptila_homolog_chrom_end
## 1692 shabroptila_homolog_canonical_transcript_protein
## 1693 shabroptila_homolog_subtype
## 1694 shabroptila_homolog_orthology_type
## 1695 shabroptila_homolog_perc_id
## 1696 shabroptila_homolog_perc_id_r1
## 1697 shabroptila_homolog_goc_score
## 1698 shabroptila_homolog_wga_coverage
## 1699 shabroptila_homolog_orthology_confidence
## 1700 dordii_homolog_ensembl_gene
## 1701 dordii_homolog_associated_gene_name
## 1702 dordii_homolog_ensembl_peptide
## 1703 dordii_homolog_chromosome
## 1704 dordii_homolog_chrom_start
## 1705 dordii_homolog_chrom_end
## 1706 dordii_homolog_canonical_transcript_protein
## 1707 dordii_homolog_subtype
## 1708 dordii_homolog_orthology_type
## 1709 dordii_homolog_perc_id
## 1710 dordii_homolog_perc_id_r1
## 1711 dordii_homolog_goc_score
## 1712 dordii_homolog_wga_coverage
## 1713 dordii_homolog_orthology_confidence
## 1714 pcinereus_homolog_ensembl_gene
## 1715 pcinereus_homolog_associated_gene_name
## 1716 pcinereus_homolog_ensembl_peptide
## 1717 pcinereus_homolog_chromosome
## 1718 pcinereus_homolog_chrom_start
## 1719 pcinereus_homolog_chrom_end
## 1720 pcinereus_homolog_canonical_transcript_protein
## 1721 pcinereus_homolog_subtype
## 1722 pcinereus_homolog_orthology_type
## 1723 pcinereus_homolog_perc_id
## 1724 pcinereus_homolog_perc_id_r1
## 1725 pcinereus_homolog_goc_score
## 1726 pcinereus_homolog_wga_coverage
## 1727 pcinereus_homolog_orthology_confidence
## 1728 pmarinus_homolog_ensembl_gene
## 1729 pmarinus_homolog_associated_gene_name
## 1730 pmarinus_homolog_ensembl_peptide
## 1731 pmarinus_homolog_chromosome
## 1732 pmarinus_homolog_chrom_start
## 1733 pmarinus_homolog_chrom_end
## 1734 pmarinus_homolog_canonical_transcript_protein
## 1735 pmarinus_homolog_subtype
## 1736 pmarinus_homolog_orthology_type
## 1737 pmarinus_homolog_perc_id
## 1738 pmarinus_homolog_perc_id_r1
## 1739 pmarinus_homolog_wga_coverage
## 1740 pmarinus_homolog_orthology_confidence
## 1741 lcrocea_homolog_ensembl_gene
## 1742 lcrocea_homolog_associated_gene_name
## 1743 lcrocea_homolog_ensembl_peptide
## 1744 lcrocea_homolog_chromosome
## 1745 lcrocea_homolog_chrom_start
## 1746 lcrocea_homolog_chrom_end
## 1747 lcrocea_homolog_canonical_transcript_protein
## 1748 lcrocea_homolog_subtype
## 1749 lcrocea_homolog_orthology_type
## 1750 lcrocea_homolog_perc_id
## 1751 lcrocea_homolog_perc_id_r1
## 1752 lcrocea_homolog_goc_score
## 1753 lcrocea_homolog_wga_coverage
## 1754 lcrocea_homolog_orthology_confidence
## 1755 lleishanense_homolog_ensembl_gene
## 1756 lleishanense_homolog_associated_gene_name
## 1757 lleishanense_homolog_ensembl_peptide
## 1758 lleishanense_homolog_chromosome
## 1759 lleishanense_homolog_chrom_start
## 1760 lleishanense_homolog_chrom_end
## 1761 lleishanense_homolog_canonical_transcript_protein
## 1762 lleishanense_homolog_subtype
## 1763 lleishanense_homolog_orthology_type
## 1764 lleishanense_homolog_perc_id
## 1765 lleishanense_homolog_perc_id_r1
## 1766 lleishanense_homolog_goc_score
## 1767 lleishanense_homolog_wga_coverage
## 1768 lleishanense_homolog_orthology_confidence
## 1769 ppardus_homolog_ensembl_gene
## 1770 ppardus_homolog_associated_gene_name
## 1771 ppardus_homolog_ensembl_peptide
## 1772 ppardus_homolog_chromosome
## 1773 ppardus_homolog_chrom_start
## 1774 ppardus_homolog_chrom_end
## 1775 ppardus_homolog_canonical_transcript_protein
## 1776 ppardus_homolog_subtype
## 1777 ppardus_homolog_orthology_type
## 1778 ppardus_homolog_perc_id
## 1779 ppardus_homolog_perc_id_r1
## 1780 ppardus_homolog_goc_score
## 1781 ppardus_homolog_wga_coverage
## 1782 ppardus_homolog_orthology_confidence
## 1783 jjaculus_homolog_ensembl_gene
## 1784 jjaculus_homolog_associated_gene_name
## 1785 jjaculus_homolog_ensembl_peptide
## 1786 jjaculus_homolog_chromosome
## 1787 jjaculus_homolog_chrom_start
## 1788 jjaculus_homolog_chrom_end
## 1789 jjaculus_homolog_canonical_transcript_protein
## 1790 jjaculus_homolog_subtype
## 1791 jjaculus_homolog_orthology_type
## 1792 jjaculus_homolog_perc_id
## 1793 jjaculus_homolog_perc_id_r1
## 1794 jjaculus_homolog_goc_score
## 1795 jjaculus_homolog_wga_coverage
## 1796 jjaculus_homolog_orthology_confidence
## 1797 etelfairi_homolog_ensembl_gene
## 1798 etelfairi_homolog_associated_gene_name
## 1799 etelfairi_homolog_ensembl_peptide
## 1800 etelfairi_homolog_chromosome
## 1801 etelfairi_homolog_chrom_start
## 1802 etelfairi_homolog_chrom_end
## 1803 etelfairi_homolog_canonical_transcript_protein
## 1804 etelfairi_homolog_subtype
## 1805 etelfairi_homolog_orthology_type
## 1806 etelfairi_homolog_perc_id
## 1807 etelfairi_homolog_perc_id_r1
## 1808 etelfairi_homolog_goc_score
## 1809 etelfairi_homolog_wga_coverage
## 1810 etelfairi_homolog_orthology_confidence
## 1811 pleo_homolog_ensembl_gene
## 1812 pleo_homolog_associated_gene_name
## 1813 pleo_homolog_ensembl_peptide
## 1814 pleo_homolog_chromosome
## 1815 pleo_homolog_chrom_start
## 1816 pleo_homolog_chrom_end
## 1817 pleo_homolog_canonical_transcript_protein
## 1818 pleo_homolog_subtype
## 1819 pleo_homolog_orthology_type
## 1820 pleo_homolog_perc_id
## 1821 pleo_homolog_perc_id_r1
## 1822 pleo_homolog_goc_score
## 1823 pleo_homolog_wga_coverage
## 1824 pleo_homolog_orthology_confidence
## 1825 clanigera_homolog_ensembl_gene
## 1826 clanigera_homolog_associated_gene_name
## 1827 clanigera_homolog_ensembl_peptide
## 1828 clanigera_homolog_chromosome
## 1829 clanigera_homolog_chrom_start
## 1830 clanigera_homolog_chrom_end
## 1831 clanigera_homolog_canonical_transcript_protein
## 1832 clanigera_homolog_subtype
## 1833 clanigera_homolog_orthology_type
## 1834 clanigera_homolog_perc_id
## 1835 clanigera_homolog_perc_id_r1
## 1836 clanigera_homolog_goc_score
## 1837 clanigera_homolog_wga_coverage
## 1838 clanigera_homolog_orthology_confidence
## 1839 clumpus_homolog_ensembl_gene
## 1840 clumpus_homolog_associated_gene_name
## 1841 clumpus_homolog_ensembl_peptide
## 1842 clumpus_homolog_chromosome
## 1843 clumpus_homolog_chrom_start
## 1844 clumpus_homolog_chrom_end
## 1845 clumpus_homolog_canonical_transcript_protein
## 1846 clumpus_homolog_subtype
## 1847 clumpus_homolog_orthology_type
## 1848 clumpus_homolog_perc_id
## 1849 clumpus_homolog_perc_id_r1
## 1850 clumpus_homolog_goc_score
## 1851 clumpus_homolog_wga_coverage
## 1852 clumpus_homolog_orthology_confidence
## 1853 nbrichardi_homolog_ensembl_gene
## 1854 nbrichardi_homolog_associated_gene_name
## 1855 nbrichardi_homolog_ensembl_peptide
## 1856 nbrichardi_homolog_chromosome
## 1857 nbrichardi_homolog_chrom_start
## 1858 nbrichardi_homolog_chrom_end
## 1859 nbrichardi_homolog_canonical_transcript_protein
## 1860 nbrichardi_homolog_subtype
## 1861 nbrichardi_homolog_orthology_type
## 1862 nbrichardi_homolog_perc_id
## 1863 nbrichardi_homolog_perc_id_r1
## 1864 nbrichardi_homolog_goc_score
## 1865 nbrichardi_homolog_wga_coverage
## 1866 nbrichardi_homolog_orthology_confidence
## 1867 anancymaae_homolog_ensembl_gene
## 1868 anancymaae_homolog_associated_gene_name
## 1869 anancymaae_homolog_ensembl_peptide
## 1870 anancymaae_homolog_chromosome
## 1871 anancymaae_homolog_chrom_start
## 1872 anancymaae_homolog_chrom_end
## 1873 anancymaae_homolog_canonical_transcript_protein
## 1874 anancymaae_homolog_subtype
## 1875 anancymaae_homolog_orthology_type
## 1876 anancymaae_homolog_perc_id
## 1877 anancymaae_homolog_perc_id_r1
## 1878 anancymaae_homolog_goc_score
## 1879 anancymaae_homolog_wga_coverage
## 1880 anancymaae_homolog_orthology_confidence
## 1881 mmulatta_homolog_ensembl_gene
## 1882 mmulatta_homolog_associated_gene_name
## 1883 mmulatta_homolog_ensembl_peptide
## 1884 mmulatta_homolog_chromosome
## 1885 mmulatta_homolog_chrom_start
## 1886 mmulatta_homolog_chrom_end
## 1887 mmulatta_homolog_canonical_transcript_protein
## 1888 mmulatta_homolog_subtype
## 1889 mmulatta_homolog_orthology_type
## 1890 mmulatta_homolog_perc_id
## 1891 mmulatta_homolog_perc_id_r1
## 1892 mmulatta_homolog_goc_score
## 1893 mmulatta_homolog_wga_coverage
## 1894 mmulatta_homolog_orthology_confidence
## 1895 nscutatus_homolog_ensembl_gene
## 1896 nscutatus_homolog_associated_gene_name
## 1897 nscutatus_homolog_ensembl_peptide
## 1898 nscutatus_homolog_chromosome
## 1899 nscutatus_homolog_chrom_start
## 1900 nscutatus_homolog_chrom_end
## 1901 nscutatus_homolog_canonical_transcript_protein
## 1902 nscutatus_homolog_subtype
## 1903 nscutatus_homolog_orthology_type
## 1904 nscutatus_homolog_perc_id
## 1905 nscutatus_homolog_perc_id_r1
## 1906 nscutatus_homolog_goc_score
## 1907 nscutatus_homolog_wga_coverage
## 1908 nscutatus_homolog_orthology_confidence
## 1909 pnyererei_homolog_ensembl_gene
## 1910 pnyererei_homolog_associated_gene_name
## 1911 pnyererei_homolog_ensembl_peptide
## 1912 pnyererei_homolog_chromosome
## 1913 pnyererei_homolog_chrom_start
## 1914 pnyererei_homolog_chrom_end
## 1915 pnyererei_homolog_canonical_transcript_protein
## 1916 pnyererei_homolog_subtype
## 1917 pnyererei_homolog_orthology_type
## 1918 pnyererei_homolog_perc_id
## 1919 pnyererei_homolog_perc_id_r1
## 1920 pnyererei_homolog_goc_score
## 1921 pnyererei_homolog_wga_coverage
## 1922 pnyererei_homolog_orthology_confidence
## 1923 kmarmoratus_homolog_ensembl_gene
## 1924 kmarmoratus_homolog_associated_gene_name
## 1925 kmarmoratus_homolog_ensembl_peptide
## 1926 kmarmoratus_homolog_chromosome
## 1927 kmarmoratus_homolog_chrom_start
## 1928 kmarmoratus_homolog_chrom_end
## 1929 kmarmoratus_homolog_canonical_transcript_protein
## 1930 kmarmoratus_homolog_subtype
## 1931 kmarmoratus_homolog_orthology_type
## 1932 kmarmoratus_homolog_perc_id
## 1933 kmarmoratus_homolog_perc_id_r1
## 1934 kmarmoratus_homolog_goc_score
## 1935 kmarmoratus_homolog_wga_coverage
## 1936 kmarmoratus_homolog_orthology_confidence
## 1937 gfortis_homolog_ensembl_gene
## 1938 gfortis_homolog_associated_gene_name
## 1939 gfortis_homolog_ensembl_peptide
## 1940 gfortis_homolog_chromosome
## 1941 gfortis_homolog_chrom_start
## 1942 gfortis_homolog_chrom_end
## 1943 gfortis_homolog_canonical_transcript_protein
## 1944 gfortis_homolog_subtype
## 1945 gfortis_homolog_orthology_type
## 1946 gfortis_homolog_perc_id
## 1947 gfortis_homolog_perc_id_r1
## 1948 gfortis_homolog_goc_score
## 1949 gfortis_homolog_wga_coverage
## 1950 gfortis_homolog_orthology_confidence
## 1951 pvampyrus_homolog_ensembl_gene
## 1952 pvampyrus_homolog_associated_gene_name
## 1953 pvampyrus_homolog_ensembl_peptide
## 1954 pvampyrus_homolog_chromosome
## 1955 pvampyrus_homolog_chrom_start
## 1956 pvampyrus_homolog_chrom_end
## 1957 pvampyrus_homolog_canonical_transcript_protein
## 1958 pvampyrus_homolog_subtype
## 1959 pvampyrus_homolog_orthology_type
## 1960 pvampyrus_homolog_perc_id
## 1961 pvampyrus_homolog_perc_id_r1
## 1962 pvampyrus_homolog_goc_score
## 1963 pvampyrus_homolog_wga_coverage
## 1964 pvampyrus_homolog_orthology_confidence
## 1965 amexicanus_homolog_ensembl_gene
## 1966 amexicanus_homolog_associated_gene_name
## 1967 amexicanus_homolog_ensembl_peptide
## 1968 amexicanus_homolog_chromosome
## 1969 amexicanus_homolog_chrom_start
## 1970 amexicanus_homolog_chrom_end
## 1971 amexicanus_homolog_canonical_transcript_protein
## 1972 amexicanus_homolog_subtype
## 1973 amexicanus_homolog_orthology_type
## 1974 amexicanus_homolog_perc_id
## 1975 amexicanus_homolog_perc_id_r1
## 1976 amexicanus_homolog_goc_score
## 1977 amexicanus_homolog_wga_coverage
## 1978 amexicanus_homolog_orthology_confidence
## 1979 mlucifugus_homolog_ensembl_gene
## 1980 mlucifugus_homolog_associated_gene_name
## 1981 mlucifugus_homolog_ensembl_peptide
## 1982 mlucifugus_homolog_chromosome
## 1983 mlucifugus_homolog_chrom_start
## 1984 mlucifugus_homolog_chrom_end
## 1985 mlucifugus_homolog_canonical_transcript_protein
## 1986 mlucifugus_homolog_subtype
## 1987 mlucifugus_homolog_orthology_type
## 1988 mlucifugus_homolog_perc_id
## 1989 mlucifugus_homolog_perc_id_r1
## 1990 mlucifugus_homolog_goc_score
## 1991 mlucifugus_homolog_wga_coverage
## 1992 mlucifugus_homolog_orthology_confidence
## 1993 acitrinellus_homolog_ensembl_gene
## 1994 acitrinellus_homolog_associated_gene_name
## 1995 acitrinellus_homolog_ensembl_peptide
## 1996 acitrinellus_homolog_chromosome
## 1997 acitrinellus_homolog_chrom_start
## 1998 acitrinellus_homolog_chrom_end
## 1999 acitrinellus_homolog_canonical_transcript_protein
## 2000 acitrinellus_homolog_subtype
## 2001 acitrinellus_homolog_orthology_type
## 2002 acitrinellus_homolog_perc_id
## 2003 acitrinellus_homolog_perc_id_r1
## 2004 acitrinellus_homolog_goc_score
## 2005 acitrinellus_homolog_wga_coverage
## 2006 acitrinellus_homolog_orthology_confidence
## 2007 mmusculus_homolog_ensembl_gene
## 2008 mmusculus_homolog_associated_gene_name
## 2009 mmusculus_homolog_ensembl_peptide
## 2010 mmusculus_homolog_chromosome
## 2011 mmusculus_homolog_chrom_start
## 2012 mmusculus_homolog_chrom_end
## 2013 mmusculus_homolog_canonical_transcript_protein
## 2014 mmusculus_homolog_subtype
## 2015 mmusculus_homolog_orthology_type
## 2016 mmusculus_homolog_perc_id
## 2017 mmusculus_homolog_perc_id_r1
## 2018 mmusculus_homolog_goc_score
## 2019 mmusculus_homolog_wga_coverage
## 2020 mmusculus_homolog_orthology_confidence
## 2021 mmurinus_homolog_ensembl_gene
## 2022 mmurinus_homolog_associated_gene_name
## 2023 mmurinus_homolog_ensembl_peptide
## 2024 mmurinus_homolog_chromosome
## 2025 mmurinus_homolog_chrom_start
## 2026 mmurinus_homolog_chrom_end
## 2027 mmurinus_homolog_canonical_transcript_protein
## 2028 mmurinus_homolog_subtype
## 2029 mmurinus_homolog_orthology_type
## 2030 mmurinus_homolog_perc_id
## 2031 mmurinus_homolog_perc_id_r1
## 2032 mmurinus_homolog_goc_score
## 2033 mmurinus_homolog_wga_coverage
## 2034 mmurinus_homolog_orthology_confidence
## 2035 fheteroclitus_homolog_ensembl_gene
## 2036 fheteroclitus_homolog_associated_gene_name
## 2037 fheteroclitus_homolog_ensembl_peptide
## 2038 fheteroclitus_homolog_chromosome
## 2039 fheteroclitus_homolog_chrom_start
## 2040 fheteroclitus_homolog_chrom_end
## 2041 fheteroclitus_homolog_canonical_transcript_protein
## 2042 fheteroclitus_homolog_subtype
## 2043 fheteroclitus_homolog_orthology_type
## 2044 fheteroclitus_homolog_perc_id
## 2045 fheteroclitus_homolog_perc_id_r1
## 2046 fheteroclitus_homolog_goc_score
## 2047 fheteroclitus_homolog_wga_coverage
## 2048 fheteroclitus_homolog_orthology_confidence
## 2049 hgfemale_homolog_ensembl_gene
## 2050 hgfemale_homolog_associated_gene_name
## 2051 hgfemale_homolog_ensembl_peptide
## 2052 hgfemale_homolog_chromosome
## 2053 hgfemale_homolog_chrom_start
## 2054 hgfemale_homolog_chrom_end
## 2055 hgfemale_homolog_canonical_transcript_protein
## 2056 hgfemale_homolog_subtype
## 2057 hgfemale_homolog_orthology_type
## 2058 hgfemale_homolog_perc_id
## 2059 hgfemale_homolog_perc_id_r1
## 2060 hgfemale_homolog_goc_score
## 2061 hgfemale_homolog_wga_coverage
## 2062 hgfemale_homolog_orthology_confidence
## 2063 mmonoceros_homolog_ensembl_gene
## 2064 mmonoceros_homolog_associated_gene_name
## 2065 mmonoceros_homolog_ensembl_peptide
## 2066 mmonoceros_homolog_chromosome
## 2067 mmonoceros_homolog_chrom_start
## 2068 mmonoceros_homolog_chrom_end
## 2069 mmonoceros_homolog_canonical_transcript_protein
## 2070 mmonoceros_homolog_subtype
## 2071 mmonoceros_homolog_orthology_type
## 2072 mmonoceros_homolog_perc_id
## 2073 mmonoceros_homolog_perc_id_r1
## 2074 mmonoceros_homolog_goc_score
## 2075 mmonoceros_homolog_wga_coverage
## 2076 mmonoceros_homolog_orthology_confidence
## 2077 oniloticus_homolog_ensembl_gene
## 2078 oniloticus_homolog_associated_gene_name
## 2079 oniloticus_homolog_ensembl_peptide
## 2080 oniloticus_homolog_chromosome
## 2081 oniloticus_homolog_chrom_start
## 2082 oniloticus_homolog_chrom_end
## 2083 oniloticus_homolog_canonical_transcript_protein
## 2084 oniloticus_homolog_subtype
## 2085 oniloticus_homolog_orthology_type
## 2086 oniloticus_homolog_perc_id
## 2087 oniloticus_homolog_perc_id_r1
## 2088 oniloticus_homolog_goc_score
## 2089 oniloticus_homolog_wga_coverage
## 2090 oniloticus_homolog_orthology_confidence
## 2091 pmbairdii_homolog_ensembl_gene
## 2092 pmbairdii_homolog_associated_gene_name
## 2093 pmbairdii_homolog_ensembl_peptide
## 2094 pmbairdii_homolog_chromosome
## 2095 pmbairdii_homolog_chrom_start
## 2096 pmbairdii_homolog_chrom_end
## 2097 pmbairdii_homolog_canonical_transcript_protein
## 2098 pmbairdii_homolog_subtype
## 2099 pmbairdii_homolog_orthology_type
## 2100 pmbairdii_homolog_perc_id
## 2101 pmbairdii_homolog_perc_id_r1
## 2102 pmbairdii_homolog_goc_score
## 2103 pmbairdii_homolog_wga_coverage
## 2104 pmbairdii_homolog_orthology_confidence
## 2105 elucius_homolog_ensembl_gene
## 2106 elucius_homolog_associated_gene_name
## 2107 elucius_homolog_ensembl_peptide
## 2108 elucius_homolog_chromosome
## 2109 elucius_homolog_chrom_start
## 2110 elucius_homolog_chrom_end
## 2111 elucius_homolog_canonical_transcript_protein
## 2112 elucius_homolog_subtype
## 2113 elucius_homolog_orthology_type
## 2114 elucius_homolog_perc_id
## 2115 elucius_homolog_perc_id_r1
## 2116 elucius_homolog_goc_score
## 2117 elucius_homolog_wga_coverage
## 2118 elucius_homolog_orthology_confidence
## 2119 panubis_homolog_ensembl_gene
## 2120 panubis_homolog_associated_gene_name
## 2121 panubis_homolog_ensembl_peptide
## 2122 panubis_homolog_chromosome
## 2123 panubis_homolog_chrom_start
## 2124 panubis_homolog_chrom_end
## 2125 panubis_homolog_canonical_transcript_protein
## 2126 panubis_homolog_subtype
## 2127 panubis_homolog_orthology_type
## 2128 panubis_homolog_perc_id
## 2129 panubis_homolog_perc_id_r1
## 2130 panubis_homolog_goc_score
## 2131 panubis_homolog_wga_coverage
## 2132 panubis_homolog_orthology_confidence
## 2133 mdomestica_homolog_ensembl_gene
## 2134 mdomestica_homolog_associated_gene_name
## 2135 mdomestica_homolog_ensembl_peptide
## 2136 mdomestica_homolog_chromosome
## 2137 mdomestica_homolog_chrom_start
## 2138 mdomestica_homolog_chrom_end
## 2139 mdomestica_homolog_canonical_transcript_protein
## 2140 mdomestica_homolog_subtype
## 2141 mdomestica_homolog_orthology_type
## 2142 mdomestica_homolog_perc_id
## 2143 mdomestica_homolog_perc_id_r1
## 2144 mdomestica_homolog_goc_score
## 2145 mdomestica_homolog_wga_coverage
## 2146 mdomestica_homolog_orthology_confidence
## 2147 apercula_homolog_ensembl_gene
## 2148 apercula_homolog_associated_gene_name
## 2149 apercula_homolog_ensembl_peptide
## 2150 apercula_homolog_chromosome
## 2151 apercula_homolog_chrom_start
## 2152 apercula_homolog_chrom_end
## 2153 apercula_homolog_canonical_transcript_protein
## 2154 apercula_homolog_subtype
## 2155 apercula_homolog_orthology_type
## 2156 apercula_homolog_perc_id
## 2157 apercula_homolog_perc_id_r1
## 2158 apercula_homolog_goc_score
## 2159 apercula_homolog_wga_coverage
## 2160 apercula_homolog_orthology_confidence
## 2161 cpbellii_homolog_ensembl_gene
## 2162 cpbellii_homolog_associated_gene_name
## 2163 cpbellii_homolog_ensembl_peptide
## 2164 cpbellii_homolog_chromosome
## 2165 cpbellii_homolog_chrom_start
## 2166 cpbellii_homolog_chrom_end
## 2167 cpbellii_homolog_canonical_transcript_protein
## 2168 cpbellii_homolog_subtype
## 2169 cpbellii_homolog_orthology_type
## 2170 cpbellii_homolog_perc_id
## 2171 cpbellii_homolog_perc_id_r1
## 2172 cpbellii_homolog_goc_score
## 2173 cpbellii_homolog_wga_coverage
## 2174 cpbellii_homolog_orthology_confidence
## 2175 pkingsleyae_homolog_ensembl_gene
## 2176 pkingsleyae_homolog_associated_gene_name
## 2177 pkingsleyae_homolog_ensembl_peptide
## 2178 pkingsleyae_homolog_chromosome
## 2179 pkingsleyae_homolog_chrom_start
## 2180 pkingsleyae_homolog_chrom_end
## 2181 pkingsleyae_homolog_canonical_transcript_protein
## 2182 pkingsleyae_homolog_subtype
## 2183 pkingsleyae_homolog_orthology_type
## 2184 pkingsleyae_homolog_perc_id
## 2185 pkingsleyae_homolog_perc_id_r1
## 2186 pkingsleyae_homolog_goc_score
## 2187 pkingsleyae_homolog_wga_coverage
## 2188 pkingsleyae_homolog_orthology_confidence
## 2189 sscrofa_homolog_ensembl_gene
## 2190 sscrofa_homolog_associated_gene_name
## 2191 sscrofa_homolog_ensembl_peptide
## 2192 sscrofa_homolog_chromosome
## 2193 sscrofa_homolog_chrom_start
## 2194 sscrofa_homolog_chrom_end
## 2195 sscrofa_homolog_canonical_transcript_protein
## 2196 sscrofa_homolog_subtype
## 2197 sscrofa_homolog_orthology_type
## 2198 sscrofa_homolog_perc_id
## 2199 sscrofa_homolog_perc_id_r1
## 2200 sscrofa_homolog_goc_score
## 2201 sscrofa_homolog_wga_coverage
## 2202 sscrofa_homolog_orthology_confidence
## 2203 mnemestrina_homolog_ensembl_gene
## 2204 mnemestrina_homolog_associated_gene_name
## 2205 mnemestrina_homolog_ensembl_peptide
## 2206 mnemestrina_homolog_chromosome
## 2207 mnemestrina_homolog_chrom_start
## 2208 mnemestrina_homolog_chrom_end
## 2209 mnemestrina_homolog_canonical_transcript_protein
## 2210 mnemestrina_homolog_subtype
## 2211 mnemestrina_homolog_orthology_type
## 2212 mnemestrina_homolog_perc_id
## 2213 mnemestrina_homolog_perc_id_r1
## 2214 mnemestrina_homolog_goc_score
## 2215 mnemestrina_homolog_wga_coverage
## 2216 mnemestrina_homolog_orthology_confidence
## 2217 oprinceps_homolog_ensembl_gene
## 2218 oprinceps_homolog_associated_gene_name
## 2219 oprinceps_homolog_ensembl_peptide
## 2220 oprinceps_homolog_chromosome
## 2221 oprinceps_homolog_chrom_start
## 2222 oprinceps_homolog_chrom_end
## 2223 oprinceps_homolog_canonical_transcript_protein
## 2224 oprinceps_homolog_subtype
## 2225 oprinceps_homolog_orthology_type
## 2226 oprinceps_homolog_perc_id
## 2227 oprinceps_homolog_perc_id_r1
## 2228 oprinceps_homolog_goc_score
## 2229 oprinceps_homolog_wga_coverage
## 2230 oprinceps_homolog_orthology_confidence
## 2231 slucioperca_homolog_ensembl_gene
## 2232 slucioperca_homolog_associated_gene_name
## 2233 slucioperca_homolog_ensembl_peptide
## 2234 slucioperca_homolog_chromosome
## 2235 slucioperca_homolog_chrom_start
## 2236 slucioperca_homolog_chrom_end
## 2237 slucioperca_homolog_canonical_transcript_protein
## 2238 slucioperca_homolog_subtype
## 2239 slucioperca_homolog_orthology_type
## 2240 slucioperca_homolog_perc_id
## 2241 slucioperca_homolog_perc_id_r1
## 2242 slucioperca_homolog_goc_score
## 2243 slucioperca_homolog_wga_coverage
## 2244 slucioperca_homolog_orthology_confidence
## 2245 mmurdjan_homolog_ensembl_gene
## 2246 mmurdjan_homolog_associated_gene_name
## 2247 mmurdjan_homolog_ensembl_peptide
## 2248 mmurdjan_homolog_chromosome
## 2249 mmurdjan_homolog_chrom_start
## 2250 mmurdjan_homolog_chrom_end
## 2251 mmurdjan_homolog_canonical_transcript_protein
## 2252 mmurdjan_homolog_subtype
## 2253 mmurdjan_homolog_orthology_type
## 2254 mmurdjan_homolog_perc_id
## 2255 mmurdjan_homolog_perc_id_r1
## 2256 mmurdjan_homolog_goc_score
## 2257 mmurdjan_homolog_wga_coverage
## 2258 mmurdjan_homolog_orthology_confidence
## 2259 abrachyrhynchus_homolog_ensembl_gene
## 2260 abrachyrhynchus_homolog_associated_gene_name
## 2261 abrachyrhynchus_homolog_ensembl_peptide
## 2262 abrachyrhynchus_homolog_chromosome
## 2263 abrachyrhynchus_homolog_chrom_start
## 2264 abrachyrhynchus_homolog_chrom_end
## 2265 abrachyrhynchus_homolog_canonical_transcript_protein
## 2266 abrachyrhynchus_homolog_subtype
## 2267 abrachyrhynchus_homolog_orthology_type
## 2268 abrachyrhynchus_homolog_perc_id
## 2269 abrachyrhynchus_homolog_perc_id_r1
## 2270 abrachyrhynchus_homolog_goc_score
## 2271 abrachyrhynchus_homolog_wga_coverage
## 2272 abrachyrhynchus_homolog_orthology_confidence
## 2273 xmaculatus_homolog_ensembl_gene
## 2274 xmaculatus_homolog_associated_gene_name
## 2275 xmaculatus_homolog_ensembl_peptide
## 2276 xmaculatus_homolog_chromosome
## 2277 xmaculatus_homolog_chrom_start
## 2278 xmaculatus_homolog_chrom_end
## 2279 xmaculatus_homolog_canonical_transcript_protein
## 2280 xmaculatus_homolog_subtype
## 2281 xmaculatus_homolog_orthology_type
## 2282 xmaculatus_homolog_perc_id
## 2283 xmaculatus_homolog_perc_id_r1
## 2284 xmaculatus_homolog_goc_score
## 2285 xmaculatus_homolog_wga_coverage
## 2286 xmaculatus_homolog_orthology_confidence
## 2287 oanatinus_homolog_ensembl_gene
## 2288 oanatinus_homolog_associated_gene_name
## 2289 oanatinus_homolog_ensembl_peptide
## 2290 oanatinus_homolog_chromosome
## 2291 oanatinus_homolog_chrom_start
## 2292 oanatinus_homolog_chrom_end
## 2293 oanatinus_homolog_canonical_transcript_protein
## 2294 oanatinus_homolog_subtype
## 2295 oanatinus_homolog_orthology_type
## 2296 oanatinus_homolog_perc_id
## 2297 oanatinus_homolog_perc_id_r1
## 2298 oanatinus_homolog_goc_score
## 2299 oanatinus_homolog_wga_coverage
## 2300 oanatinus_homolog_orthology_confidence
## 2301 umaritimus_homolog_ensembl_gene
## 2302 umaritimus_homolog_associated_gene_name
## 2303 umaritimus_homolog_ensembl_peptide
## 2304 umaritimus_homolog_chromosome
## 2305 umaritimus_homolog_chrom_start
## 2306 umaritimus_homolog_chrom_end
## 2307 umaritimus_homolog_canonical_transcript_protein
## 2308 umaritimus_homolog_subtype
## 2309 umaritimus_homolog_orthology_type
## 2310 umaritimus_homolog_perc_id
## 2311 umaritimus_homolog_perc_id_r1
## 2312 umaritimus_homolog_goc_score
## 2313 umaritimus_homolog_wga_coverage
## 2314 umaritimus_homolog_orthology_confidence
## 2315 mochrogaster_homolog_ensembl_gene
## 2316 mochrogaster_homolog_associated_gene_name
## 2317 mochrogaster_homolog_ensembl_peptide
## 2318 mochrogaster_homolog_chromosome
## 2319 mochrogaster_homolog_chrom_start
## 2320 mochrogaster_homolog_chrom_end
## 2321 mochrogaster_homolog_canonical_transcript_protein
## 2322 mochrogaster_homolog_subtype
## 2323 mochrogaster_homolog_orthology_type
## 2324 mochrogaster_homolog_perc_id
## 2325 mochrogaster_homolog_perc_id_r1
## 2326 mochrogaster_homolog_goc_score
## 2327 mochrogaster_homolog_wga_coverage
## 2328 mochrogaster_homolog_orthology_confidence
## 2329 ocuniculus_homolog_ensembl_gene
## 2330 ocuniculus_homolog_associated_gene_name
## 2331 ocuniculus_homolog_ensembl_peptide
## 2332 ocuniculus_homolog_chromosome
## 2333 ocuniculus_homolog_chrom_start
## 2334 ocuniculus_homolog_chrom_end
## 2335 ocuniculus_homolog_canonical_transcript_protein
## 2336 ocuniculus_homolog_subtype
## 2337 ocuniculus_homolog_orthology_type
## 2338 ocuniculus_homolog_perc_id
## 2339 ocuniculus_homolog_perc_id_r1
## 2340 ocuniculus_homolog_goc_score
## 2341 ocuniculus_homolog_wga_coverage
## 2342 ocuniculus_homolog_orthology_confidence
## 2343 omykiss_homolog_ensembl_gene
## 2344 omykiss_homolog_associated_gene_name
## 2345 omykiss_homolog_ensembl_peptide
## 2346 omykiss_homolog_chromosome
## 2347 omykiss_homolog_chrom_start
## 2348 omykiss_homolog_chrom_end
## 2349 omykiss_homolog_canonical_transcript_protein
## 2350 omykiss_homolog_subtype
## 2351 omykiss_homolog_orthology_type
## 2352 omykiss_homolog_perc_id
## 2353 omykiss_homolog_perc_id_r1
## 2354 omykiss_homolog_goc_score
## 2355 omykiss_homolog_orthology_confidence
## 2356 rnorvegicus_homolog_ensembl_gene
## 2357 rnorvegicus_homolog_associated_gene_name
## 2358 rnorvegicus_homolog_ensembl_peptide
## 2359 rnorvegicus_homolog_chromosome
## 2360 rnorvegicus_homolog_chrom_start
## 2361 rnorvegicus_homolog_chrom_end
## 2362 rnorvegicus_homolog_canonical_transcript_protein
## 2363 rnorvegicus_homolog_subtype
## 2364 rnorvegicus_homolog_orthology_type
## 2365 rnorvegicus_homolog_perc_id
## 2366 rnorvegicus_homolog_perc_id_r1
## 2367 rnorvegicus_homolog_goc_score
## 2368 rnorvegicus_homolog_wga_coverage
## 2369 rnorvegicus_homolog_orthology_confidence
## 2370 vvulpes_homolog_ensembl_gene
## 2371 vvulpes_homolog_associated_gene_name
## 2372 vvulpes_homolog_ensembl_peptide
## 2373 vvulpes_homolog_chromosome
## 2374 vvulpes_homolog_chrom_start
## 2375 vvulpes_homolog_chrom_end
## 2376 vvulpes_homolog_canonical_transcript_protein
## 2377 vvulpes_homolog_subtype
## 2378 vvulpes_homolog_orthology_type
## 2379 vvulpes_homolog_perc_id
## 2380 vvulpes_homolog_perc_id_r1
## 2381 vvulpes_homolog_goc_score
## 2382 vvulpes_homolog_wga_coverage
## 2383 vvulpes_homolog_orthology_confidence
## 2384 pnattereri_homolog_ensembl_gene
## 2385 pnattereri_homolog_associated_gene_name
## 2386 pnattereri_homolog_ensembl_peptide
## 2387 pnattereri_homolog_chromosome
## 2388 pnattereri_homolog_chrom_start
## 2389 pnattereri_homolog_chrom_end
## 2390 pnattereri_homolog_canonical_transcript_protein
## 2391 pnattereri_homolog_subtype
## 2392 pnattereri_homolog_orthology_type
## 2393 pnattereri_homolog_perc_id
## 2394 pnattereri_homolog_perc_id_r1
## 2395 pnattereri_homolog_goc_score
## 2396 pnattereri_homolog_wga_coverage
## 2397 pnattereri_homolog_orthology_confidence
## 2398 ecalabaricus_homolog_ensembl_gene
## 2399 ecalabaricus_homolog_associated_gene_name
## 2400 ecalabaricus_homolog_ensembl_peptide
## 2401 ecalabaricus_homolog_chromosome
## 2402 ecalabaricus_homolog_chrom_start
## 2403 ecalabaricus_homolog_chrom_end
## 2404 ecalabaricus_homolog_canonical_transcript_protein
## 2405 ecalabaricus_homolog_subtype
## 2406 ecalabaricus_homolog_orthology_type
## 2407 ecalabaricus_homolog_perc_id
## 2408 ecalabaricus_homolog_perc_id_r1
## 2409 ecalabaricus_homolog_goc_score
## 2410 ecalabaricus_homolog_wga_coverage
## 2411 ecalabaricus_homolog_orthology_confidence
## 2412 mcaroli_homolog_ensembl_gene
## 2413 mcaroli_homolog_associated_gene_name
## 2414 mcaroli_homolog_ensembl_peptide
## 2415 mcaroli_homolog_chromosome
## 2416 mcaroli_homolog_chrom_start
## 2417 mcaroli_homolog_chrom_end
## 2418 mcaroli_homolog_canonical_transcript_protein
## 2419 mcaroli_homolog_subtype
## 2420 mcaroli_homolog_orthology_type
## 2421 mcaroli_homolog_perc_id
## 2422 mcaroli_homolog_perc_id_r1
## 2423 mcaroli_homolog_goc_score
## 2424 mcaroli_homolog_wga_coverage
## 2425 mcaroli_homolog_orthology_confidence
## 2426 scerevisiae_homolog_ensembl_gene
## 2427 scerevisiae_homolog_associated_gene_name
## 2428 scerevisiae_homolog_ensembl_peptide
## 2429 scerevisiae_homolog_chromosome
## 2430 scerevisiae_homolog_chrom_start
## 2431 scerevisiae_homolog_chrom_end
## 2432 scerevisiae_homolog_canonical_transcript_protein
## 2433 scerevisiae_homolog_subtype
## 2434 scerevisiae_homolog_orthology_type
## 2435 scerevisiae_homolog_perc_id
## 2436 scerevisiae_homolog_perc_id_r1
## 2437 scerevisiae_homolog_orthology_confidence
## 2438 platipinna_homolog_ensembl_gene
## 2439 platipinna_homolog_associated_gene_name
## 2440 platipinna_homolog_ensembl_peptide
## 2441 platipinna_homolog_chromosome
## 2442 platipinna_homolog_chrom_start
## 2443 platipinna_homolog_chrom_end
## 2444 platipinna_homolog_canonical_transcript_protein
## 2445 platipinna_homolog_subtype
## 2446 platipinna_homolog_orthology_type
## 2447 platipinna_homolog_perc_id
## 2448 platipinna_homolog_perc_id_r1
## 2449 platipinna_homolog_goc_score
## 2450 platipinna_homolog_wga_coverage
## 2451 platipinna_homolog_orthology_confidence
## 2452 oarambouillet_homolog_ensembl_gene
## 2453 oarambouillet_homolog_associated_gene_name
## 2454 oarambouillet_homolog_ensembl_peptide
## 2455 oarambouillet_homolog_chromosome
## 2456 oarambouillet_homolog_chrom_start
## 2457 oarambouillet_homolog_chrom_end
## 2458 oarambouillet_homolog_canonical_transcript_protein
## 2459 oarambouillet_homolog_subtype
## 2460 oarambouillet_homolog_orthology_type
## 2461 oarambouillet_homolog_perc_id
## 2462 oarambouillet_homolog_perc_id_r1
## 2463 oarambouillet_homolog_goc_score
## 2464 oarambouillet_homolog_wga_coverage
## 2465 oarambouillet_homolog_orthology_confidence
## 2466 cvariegatus_homolog_ensembl_gene
## 2467 cvariegatus_homolog_associated_gene_name
## 2468 cvariegatus_homolog_ensembl_peptide
## 2469 cvariegatus_homolog_chromosome
## 2470 cvariegatus_homolog_chrom_start
## 2471 cvariegatus_homolog_chrom_end
## 2472 cvariegatus_homolog_canonical_transcript_protein
## 2473 cvariegatus_homolog_subtype
## 2474 cvariegatus_homolog_orthology_type
## 2475 cvariegatus_homolog_perc_id
## 2476 cvariegatus_homolog_perc_id_r1
## 2477 cvariegatus_homolog_goc_score
## 2478 cvariegatus_homolog_wga_coverage
## 2479 cvariegatus_homolog_orthology_confidence
## 2480 saraneus_homolog_ensembl_gene
## 2481 saraneus_homolog_associated_gene_name
## 2482 saraneus_homolog_ensembl_peptide
## 2483 saraneus_homolog_chromosome
## 2484 saraneus_homolog_chrom_start
## 2485 saraneus_homolog_chrom_end
## 2486 saraneus_homolog_canonical_transcript_protein
## 2487 saraneus_homolog_subtype
## 2488 saraneus_homolog_orthology_type
## 2489 saraneus_homolog_perc_id
## 2490 saraneus_homolog_perc_id_r1
## 2491 saraneus_homolog_goc_score
## 2492 saraneus_homolog_wga_coverage
## 2493 saraneus_homolog_orthology_confidence
## 2494 mpahari_homolog_ensembl_gene
## 2495 mpahari_homolog_associated_gene_name
## 2496 mpahari_homolog_ensembl_peptide
## 2497 mpahari_homolog_chromosome
## 2498 mpahari_homolog_chrom_start
## 2499 mpahari_homolog_chrom_end
## 2500 mpahari_homolog_canonical_transcript_protein
## 2501 mpahari_homolog_subtype
## 2502 mpahari_homolog_orthology_type
## 2503 mpahari_homolog_perc_id
## 2504 mpahari_homolog_perc_id_r1
## 2505 mpahari_homolog_goc_score
## 2506 mpahari_homolog_wga_coverage
## 2507 mpahari_homolog_orthology_confidence
## 2508 bsplendens_homolog_ensembl_gene
## 2509 bsplendens_homolog_associated_gene_name
## 2510 bsplendens_homolog_ensembl_peptide
## 2511 bsplendens_homolog_chromosome
## 2512 bsplendens_homolog_chrom_start
## 2513 bsplendens_homolog_chrom_end
## 2514 bsplendens_homolog_canonical_transcript_protein
## 2515 bsplendens_homolog_subtype
## 2516 bsplendens_homolog_orthology_type
## 2517 bsplendens_homolog_perc_id
## 2518 bsplendens_homolog_perc_id_r1
## 2519 bsplendens_homolog_goc_score
## 2520 bsplendens_homolog_wga_coverage
## 2521 bsplendens_homolog_orthology_confidence
## 2522 mmoschiferus_homolog_ensembl_gene
## 2523 mmoschiferus_homolog_associated_gene_name
## 2524 mmoschiferus_homolog_ensembl_peptide
## 2525 mmoschiferus_homolog_chromosome
## 2526 mmoschiferus_homolog_chrom_start
## 2527 mmoschiferus_homolog_chrom_end
## 2528 mmoschiferus_homolog_canonical_transcript_protein
## 2529 mmoschiferus_homolog_subtype
## 2530 mmoschiferus_homolog_orthology_type
## 2531 mmoschiferus_homolog_perc_id
## 2532 mmoschiferus_homolog_perc_id_r1
## 2533 mmoschiferus_homolog_goc_score
## 2534 mmoschiferus_homolog_wga_coverage
## 2535 mmoschiferus_homolog_orthology_confidence
## 2536 choffmanni_homolog_ensembl_gene
## 2537 choffmanni_homolog_associated_gene_name
## 2538 choffmanni_homolog_ensembl_peptide
## 2539 choffmanni_homolog_chromosome
## 2540 choffmanni_homolog_chrom_start
## 2541 choffmanni_homolog_chrom_end
## 2542 choffmanni_homolog_canonical_transcript_protein
## 2543 choffmanni_homolog_subtype
## 2544 choffmanni_homolog_orthology_type
## 2545 choffmanni_homolog_perc_id
## 2546 choffmanni_homolog_perc_id_r1
## 2547 choffmanni_homolog_goc_score
## 2548 choffmanni_homolog_wga_coverage
## 2549 choffmanni_homolog_orthology_confidence
## 2550 catys_homolog_ensembl_gene
## 2551 catys_homolog_associated_gene_name
## 2552 catys_homolog_ensembl_peptide
## 2553 catys_homolog_chromosome
## 2554 catys_homolog_chrom_start
## 2555 catys_homolog_chrom_end
## 2556 catys_homolog_canonical_transcript_protein
## 2557 catys_homolog_subtype
## 2558 catys_homolog_orthology_type
## 2559 catys_homolog_perc_id
## 2560 catys_homolog_perc_id_r1
## 2561 catys_homolog_goc_score
## 2562 catys_homolog_wga_coverage
## 2563 catys_homolog_orthology_confidence
## 2564 pcatodon_homolog_ensembl_gene
## 2565 pcatodon_homolog_associated_gene_name
## 2566 pcatodon_homolog_ensembl_peptide
## 2567 pcatodon_homolog_chromosome
## 2568 pcatodon_homolog_chrom_start
## 2569 pcatodon_homolog_chrom_end
## 2570 pcatodon_homolog_canonical_transcript_protein
## 2571 pcatodon_homolog_subtype
## 2572 pcatodon_homolog_orthology_type
## 2573 pcatodon_homolog_perc_id
## 2574 pcatodon_homolog_perc_id_r1
## 2575 pcatodon_homolog_goc_score
## 2576 pcatodon_homolog_wga_coverage
## 2577 pcatodon_homolog_orthology_confidence
## 2578 apolyacanthus_homolog_ensembl_gene
## 2579 apolyacanthus_homolog_associated_gene_name
## 2580 apolyacanthus_homolog_ensembl_peptide
## 2581 apolyacanthus_homolog_chromosome
## 2582 apolyacanthus_homolog_chrom_start
## 2583 apolyacanthus_homolog_chrom_end
## 2584 apolyacanthus_homolog_canonical_transcript_protein
## 2585 apolyacanthus_homolog_subtype
## 2586 apolyacanthus_homolog_orthology_type
## 2587 apolyacanthus_homolog_perc_id
## 2588 apolyacanthus_homolog_perc_id_r1
## 2589 apolyacanthus_homolog_goc_score
## 2590 apolyacanthus_homolog_wga_coverage
## 2591 apolyacanthus_homolog_orthology_confidence
## 2592 loculatus_homolog_ensembl_gene
## 2593 loculatus_homolog_associated_gene_name
## 2594 loculatus_homolog_ensembl_peptide
## 2595 loculatus_homolog_chromosome
## 2596 loculatus_homolog_chrom_start
## 2597 loculatus_homolog_chrom_end
## 2598 loculatus_homolog_canonical_transcript_protein
## 2599 loculatus_homolog_subtype
## 2600 loculatus_homolog_orthology_type
## 2601 loculatus_homolog_perc_id
## 2602 loculatus_homolog_perc_id_r1
## 2603 loculatus_homolog_goc_score
## 2604 loculatus_homolog_wga_coverage
## 2605 loculatus_homolog_orthology_confidence
## 2606 itridecemlineatus_homolog_ensembl_gene
## 2607 itridecemlineatus_homolog_associated_gene_name
## 2608 itridecemlineatus_homolog_ensembl_peptide
## 2609 itridecemlineatus_homolog_chromosome
## 2610 itridecemlineatus_homolog_chrom_start
## 2611 itridecemlineatus_homolog_chrom_end
## 2612 itridecemlineatus_homolog_canonical_transcript_protein
## 2613 itridecemlineatus_homolog_subtype
## 2614 itridecemlineatus_homolog_orthology_type
## 2615 itridecemlineatus_homolog_perc_id
## 2616 itridecemlineatus_homolog_perc_id_r1
## 2617 itridecemlineatus_homolog_goc_score
## 2618 itridecemlineatus_homolog_wga_coverage
## 2619 itridecemlineatus_homolog_orthology_confidence
## 2620 mspicilegus_homolog_ensembl_gene
## 2621 mspicilegus_homolog_associated_gene_name
## 2622 mspicilegus_homolog_ensembl_peptide
## 2623 mspicilegus_homolog_chromosome
## 2624 mspicilegus_homolog_chrom_start
## 2625 mspicilegus_homolog_chrom_end
## 2626 mspicilegus_homolog_canonical_transcript_protein
## 2627 mspicilegus_homolog_subtype
## 2628 mspicilegus_homolog_orthology_type
## 2629 mspicilegus_homolog_perc_id
## 2630 mspicilegus_homolog_perc_id_r1
## 2631 mspicilegus_homolog_goc_score
## 2632 mspicilegus_homolog_wga_coverage
## 2633 mspicilegus_homolog_orthology_confidence
## 2634 gaculeatus_homolog_ensembl_gene
## 2635 gaculeatus_homolog_associated_gene_name
## 2636 gaculeatus_homolog_ensembl_peptide
## 2637 gaculeatus_homolog_chromosome
## 2638 gaculeatus_homolog_chrom_start
## 2639 gaculeatus_homolog_chrom_end
## 2640 gaculeatus_homolog_canonical_transcript_protein
## 2641 gaculeatus_homolog_subtype
## 2642 gaculeatus_homolog_orthology_type
## 2643 gaculeatus_homolog_perc_id
## 2644 gaculeatus_homolog_perc_id_r1
## 2645 gaculeatus_homolog_goc_score
## 2646 gaculeatus_homolog_wga_coverage
## 2647 gaculeatus_homolog_orthology_confidence
## 2648 pabelii_homolog_ensembl_gene
## 2649 pabelii_homolog_associated_gene_name
## 2650 pabelii_homolog_ensembl_peptide
## 2651 pabelii_homolog_chromosome
## 2652 pabelii_homolog_chrom_start
## 2653 pabelii_homolog_chrom_end
## 2654 pabelii_homolog_canonical_transcript_protein
## 2655 pabelii_homolog_subtype
## 2656 pabelii_homolog_orthology_type
## 2657 pabelii_homolog_perc_id
## 2658 pabelii_homolog_perc_id_r1
## 2659 pabelii_homolog_goc_score
## 2660 pabelii_homolog_wga_coverage
## 2661 pabelii_homolog_orthology_confidence
## 2662 csyrichta_homolog_ensembl_gene
## 2663 csyrichta_homolog_associated_gene_name
## 2664 csyrichta_homolog_ensembl_peptide
## 2665 csyrichta_homolog_chromosome
## 2666 csyrichta_homolog_chrom_start
## 2667 csyrichta_homolog_chrom_end
## 2668 csyrichta_homolog_canonical_transcript_protein
## 2669 csyrichta_homolog_subtype
## 2670 csyrichta_homolog_orthology_type
## 2671 csyrichta_homolog_perc_id
## 2672 csyrichta_homolog_perc_id_r1
## 2673 csyrichta_homolog_goc_score
## 2674 csyrichta_homolog_wga_coverage
## 2675 csyrichta_homolog_orthology_confidence
## 2676 sharrisii_homolog_ensembl_gene
## 2677 sharrisii_homolog_associated_gene_name
## 2678 sharrisii_homolog_ensembl_peptide
## 2679 sharrisii_homolog_chromosome
## 2680 sharrisii_homolog_chrom_start
## 2681 sharrisii_homolog_chrom_end
## 2682 sharrisii_homolog_canonical_transcript_protein
## 2683 sharrisii_homolog_subtype
## 2684 sharrisii_homolog_orthology_type
## 2685 sharrisii_homolog_perc_id
## 2686 sharrisii_homolog_perc_id_r1
## 2687 sharrisii_homolog_goc_score
## 2688 sharrisii_homolog_orthology_confidence
## 2689 tnigroviridis_homolog_ensembl_gene
## 2690 tnigroviridis_homolog_associated_gene_name
## 2691 tnigroviridis_homolog_ensembl_peptide
## 2692 tnigroviridis_homolog_chromosome
## 2693 tnigroviridis_homolog_chrom_start
## 2694 tnigroviridis_homolog_chrom_end
## 2695 tnigroviridis_homolog_canonical_transcript_protein
## 2696 tnigroviridis_homolog_subtype
## 2697 tnigroviridis_homolog_orthology_type
## 2698 tnigroviridis_homolog_perc_id
## 2699 tnigroviridis_homolog_perc_id_r1
## 2700 tnigroviridis_homolog_goc_score
## 2701 tnigroviridis_homolog_wga_coverage
## 2702 tnigroviridis_homolog_orthology_confidence
## 2703 tctriunguis_homolog_ensembl_gene
## 2704 tctriunguis_homolog_associated_gene_name
## 2705 tctriunguis_homolog_ensembl_peptide
## 2706 tctriunguis_homolog_chromosome
## 2707 tctriunguis_homolog_chrom_start
## 2708 tctriunguis_homolog_chrom_end
## 2709 tctriunguis_homolog_canonical_transcript_protein
## 2710 tctriunguis_homolog_subtype
## 2711 tctriunguis_homolog_orthology_type
## 2712 tctriunguis_homolog_perc_id
## 2713 tctriunguis_homolog_perc_id_r1
## 2714 tctriunguis_homolog_goc_score
## 2715 tctriunguis_homolog_wga_coverage
## 2716 tctriunguis_homolog_orthology_confidence
## 2717 ptaltaica_homolog_ensembl_gene
## 2718 ptaltaica_homolog_associated_gene_name
## 2719 ptaltaica_homolog_ensembl_peptide
## 2720 ptaltaica_homolog_chromosome
## 2721 ptaltaica_homolog_chrom_start
## 2722 ptaltaica_homolog_chrom_end
## 2723 ptaltaica_homolog_canonical_transcript_protein
## 2724 ptaltaica_homolog_subtype
## 2725 ptaltaica_homolog_orthology_type
## 2726 ptaltaica_homolog_perc_id
## 2727 ptaltaica_homolog_perc_id_r1
## 2728 ptaltaica_homolog_goc_score
## 2729 ptaltaica_homolog_wga_coverage
## 2730 ptaltaica_homolog_orthology_confidence
## 2731 hcomes_homolog_ensembl_gene
## 2732 hcomes_homolog_associated_gene_name
## 2733 hcomes_homolog_ensembl_peptide
## 2734 hcomes_homolog_chromosome
## 2735 hcomes_homolog_chrom_start
## 2736 hcomes_homolog_chrom_end
## 2737 hcomes_homolog_canonical_transcript_protein
## 2738 hcomes_homolog_subtype
## 2739 hcomes_homolog_orthology_type
## 2740 hcomes_homolog_perc_id
## 2741 hcomes_homolog_perc_id_r1
## 2742 hcomes_homolog_goc_score
## 2743 hcomes_homolog_wga_coverage
## 2744 hcomes_homolog_orthology_confidence
## 2745 csemilaevis_homolog_ensembl_gene
## 2746 csemilaevis_homolog_associated_gene_name
## 2747 csemilaevis_homolog_ensembl_peptide
## 2748 csemilaevis_homolog_chromosome
## 2749 csemilaevis_homolog_chrom_start
## 2750 csemilaevis_homolog_chrom_end
## 2751 csemilaevis_homolog_canonical_transcript_protein
## 2752 csemilaevis_homolog_subtype
## 2753 csemilaevis_homolog_orthology_type
## 2754 csemilaevis_homolog_perc_id
## 2755 csemilaevis_homolog_perc_id_r1
## 2756 csemilaevis_homolog_goc_score
## 2757 csemilaevis_homolog_wga_coverage
## 2758 csemilaevis_homolog_orthology_confidence
## 2759 tbelangeri_homolog_ensembl_gene
## 2760 tbelangeri_homolog_associated_gene_name
## 2761 tbelangeri_homolog_ensembl_peptide
## 2762 tbelangeri_homolog_chromosome
## 2763 tbelangeri_homolog_chrom_start
## 2764 tbelangeri_homolog_chrom_end
## 2765 tbelangeri_homolog_canonical_transcript_protein
## 2766 tbelangeri_homolog_subtype
## 2767 tbelangeri_homolog_orthology_type
## 2768 tbelangeri_homolog_perc_id
## 2769 tbelangeri_homolog_perc_id_r1
## 2770 tbelangeri_homolog_goc_score
## 2771 tbelangeri_homolog_wga_coverage
## 2772 tbelangeri_homolog_orthology_confidence
## 2773 xtropicalis_homolog_ensembl_gene
## 2774 xtropicalis_homolog_associated_gene_name
## 2775 xtropicalis_homolog_ensembl_peptide
## 2776 xtropicalis_homolog_chromosome
## 2777 xtropicalis_homolog_chrom_start
## 2778 xtropicalis_homolog_chrom_end
## 2779 xtropicalis_homolog_canonical_transcript_protein
## 2780 xtropicalis_homolog_subtype
## 2781 xtropicalis_homolog_orthology_type
## 2782 xtropicalis_homolog_perc_id
## 2783 xtropicalis_homolog_perc_id_r1
## 2784 xtropicalis_homolog_goc_score
## 2785 xtropicalis_homolog_orthology_confidence
## 2786 spunctatus_homolog_ensembl_gene
## 2787 spunctatus_homolog_associated_gene_name
## 2788 spunctatus_homolog_ensembl_peptide
## 2789 spunctatus_homolog_chromosome
## 2790 spunctatus_homolog_chrom_start
## 2791 spunctatus_homolog_chrom_end
## 2792 spunctatus_homolog_canonical_transcript_protein
## 2793 spunctatus_homolog_subtype
## 2794 spunctatus_homolog_orthology_type
## 2795 spunctatus_homolog_perc_id
## 2796 spunctatus_homolog_perc_id_r1
## 2797 spunctatus_homolog_goc_score
## 2798 spunctatus_homolog_wga_coverage
## 2799 spunctatus_homolog_orthology_confidence
## 2800 smaximus_homolog_ensembl_gene
## 2801 smaximus_homolog_associated_gene_name
## 2802 smaximus_homolog_ensembl_peptide
## 2803 smaximus_homolog_chromosome
## 2804 smaximus_homolog_chrom_start
## 2805 smaximus_homolog_chrom_end
## 2806 smaximus_homolog_canonical_transcript_protein
## 2807 smaximus_homolog_subtype
## 2808 smaximus_homolog_orthology_type
## 2809 smaximus_homolog_perc_id
## 2810 smaximus_homolog_perc_id_r1
## 2811 smaximus_homolog_goc_score
## 2812 smaximus_homolog_orthology_confidence
## 2813 mgallopavo_homolog_ensembl_gene
## 2814 mgallopavo_homolog_associated_gene_name
## 2815 mgallopavo_homolog_ensembl_peptide
## 2816 mgallopavo_homolog_chromosome
## 2817 mgallopavo_homolog_chrom_start
## 2818 mgallopavo_homolog_chrom_end
## 2819 mgallopavo_homolog_canonical_transcript_protein
## 2820 mgallopavo_homolog_subtype
## 2821 mgallopavo_homolog_orthology_type
## 2822 mgallopavo_homolog_perc_id
## 2823 mgallopavo_homolog_perc_id_r1
## 2824 mgallopavo_homolog_goc_score
## 2825 mgallopavo_homolog_orthology_confidence
## 2826 nfurzeri_homolog_ensembl_gene
## 2827 nfurzeri_homolog_associated_gene_name
## 2828 nfurzeri_homolog_ensembl_peptide
## 2829 nfurzeri_homolog_chromosome
## 2830 nfurzeri_homolog_chrom_start
## 2831 nfurzeri_homolog_chrom_end
## 2832 nfurzeri_homolog_canonical_transcript_protein
## 2833 nfurzeri_homolog_subtype
## 2834 nfurzeri_homolog_orthology_type
## 2835 nfurzeri_homolog_perc_id
## 2836 nfurzeri_homolog_perc_id_r1
## 2837 nfurzeri_homolog_goc_score
## 2838 nfurzeri_homolog_wga_coverage
## 2839 nfurzeri_homolog_orthology_confidence
## 2840 ngalili_homolog_ensembl_gene
## 2841 ngalili_homolog_associated_gene_name
## 2842 ngalili_homolog_ensembl_peptide
## 2843 ngalili_homolog_chromosome
## 2844 ngalili_homolog_chrom_start
## 2845 ngalili_homolog_chrom_end
## 2846 ngalili_homolog_canonical_transcript_protein
## 2847 ngalili_homolog_subtype
## 2848 ngalili_homolog_orthology_type
## 2849 ngalili_homolog_perc_id
## 2850 ngalili_homolog_perc_id_r1
## 2851 ngalili_homolog_goc_score
## 2852 ngalili_homolog_wga_coverage
## 2853 ngalili_homolog_orthology_confidence
## 2854 psinus_homolog_ensembl_gene
## 2855 psinus_homolog_associated_gene_name
## 2856 psinus_homolog_ensembl_peptide
## 2857 psinus_homolog_chromosome
## 2858 psinus_homolog_chrom_start
## 2859 psinus_homolog_chrom_end
## 2860 psinus_homolog_canonical_transcript_protein
## 2861 psinus_homolog_subtype
## 2862 psinus_homolog_orthology_type
## 2863 psinus_homolog_perc_id
## 2864 psinus_homolog_perc_id_r1
## 2865 psinus_homolog_goc_score
## 2866 psinus_homolog_wga_coverage
## 2867 psinus_homolog_orthology_confidence
## 2868 csabaeus_homolog_ensembl_gene
## 2869 csabaeus_homolog_associated_gene_name
## 2870 csabaeus_homolog_ensembl_peptide
## 2871 csabaeus_homolog_chromosome
## 2872 csabaeus_homolog_chrom_start
## 2873 csabaeus_homolog_chrom_end
## 2874 csabaeus_homolog_canonical_transcript_protein
## 2875 csabaeus_homolog_subtype
## 2876 csabaeus_homolog_orthology_type
## 2877 csabaeus_homolog_perc_id
## 2878 csabaeus_homolog_perc_id_r1
## 2879 csabaeus_homolog_goc_score
## 2880 csabaeus_homolog_wga_coverage
## 2881 csabaeus_homolog_orthology_confidence
## 2882 neugenii_homolog_ensembl_gene
## 2883 neugenii_homolog_associated_gene_name
## 2884 neugenii_homolog_ensembl_peptide
## 2885 neugenii_homolog_chromosome
## 2886 neugenii_homolog_chrom_start
## 2887 neugenii_homolog_chrom_end
## 2888 neugenii_homolog_canonical_transcript_protein
## 2889 neugenii_homolog_subtype
## 2890 neugenii_homolog_orthology_type
## 2891 neugenii_homolog_perc_id
## 2892 neugenii_homolog_perc_id_r1
## 2893 neugenii_homolog_goc_score
## 2894 neugenii_homolog_wga_coverage
## 2895 neugenii_homolog_orthology_confidence
## 2896 cjacchus_homolog_ensembl_gene
## 2897 cjacchus_homolog_associated_gene_name
## 2898 cjacchus_homolog_ensembl_peptide
## 2899 cjacchus_homolog_chromosome
## 2900 cjacchus_homolog_chrom_start
## 2901 cjacchus_homolog_chrom_end
## 2902 cjacchus_homolog_canonical_transcript_protein
## 2903 cjacchus_homolog_subtype
## 2904 cjacchus_homolog_orthology_type
## 2905 cjacchus_homolog_perc_id
## 2906 cjacchus_homolog_perc_id_r1
## 2907 cjacchus_homolog_goc_score
## 2908 cjacchus_homolog_wga_coverage
## 2909 cjacchus_homolog_orthology_confidence
## 2910 bmutus_homolog_ensembl_gene
## 2911 bmutus_homolog_associated_gene_name
## 2912 bmutus_homolog_ensembl_peptide
## 2913 bmutus_homolog_chromosome
## 2914 bmutus_homolog_chrom_start
## 2915 bmutus_homolog_chrom_end
## 2916 bmutus_homolog_canonical_transcript_protein
## 2917 bmutus_homolog_subtype
## 2918 bmutus_homolog_orthology_type
## 2919 bmutus_homolog_perc_id
## 2920 bmutus_homolog_perc_id_r1
## 2921 bmutus_homolog_goc_score
## 2922 bmutus_homolog_wga_coverage
## 2923 bmutus_homolog_orthology_confidence
## 2924 chyarkandensis_homolog_ensembl_gene
## 2925 chyarkandensis_homolog_associated_gene_name
## 2926 chyarkandensis_homolog_ensembl_peptide
## 2927 chyarkandensis_homolog_chromosome
## 2928 chyarkandensis_homolog_chrom_start
## 2929 chyarkandensis_homolog_chrom_end
## 2930 chyarkandensis_homolog_canonical_transcript_protein
## 2931 chyarkandensis_homolog_subtype
## 2932 chyarkandensis_homolog_orthology_type
## 2933 chyarkandensis_homolog_perc_id
## 2934 chyarkandensis_homolog_perc_id_r1
## 2935 chyarkandensis_homolog_goc_score
## 2936 chyarkandensis_homolog_wga_coverage
## 2937 chyarkandensis_homolog_orthology_confidence
## 2938 sldorsalis_homolog_ensembl_gene
## 2939 sldorsalis_homolog_associated_gene_name
## 2940 sldorsalis_homolog_ensembl_peptide
## 2941 sldorsalis_homolog_chromosome
## 2942 sldorsalis_homolog_chrom_start
## 2943 sldorsalis_homolog_chrom_end
## 2944 sldorsalis_homolog_canonical_transcript_protein
## 2945 sldorsalis_homolog_subtype
## 2946 sldorsalis_homolog_orthology_type
## 2947 sldorsalis_homolog_perc_id
## 2948 sldorsalis_homolog_perc_id_r1
## 2949 sldorsalis_homolog_goc_score
## 2950 sldorsalis_homolog_wga_coverage
## 2951 sldorsalis_homolog_orthology_confidence
## 2952 tguttata_homolog_ensembl_gene
## 2953 tguttata_homolog_associated_gene_name
## 2954 tguttata_homolog_ensembl_peptide
## 2955 tguttata_homolog_chromosome
## 2956 tguttata_homolog_chrom_start
## 2957 tguttata_homolog_chrom_end
## 2958 tguttata_homolog_canonical_transcript_protein
## 2959 tguttata_homolog_subtype
## 2960 tguttata_homolog_orthology_type
## 2961 tguttata_homolog_perc_id
## 2962 tguttata_homolog_perc_id_r1
## 2963 tguttata_homolog_goc_score
## 2964 tguttata_homolog_wga_coverage
## 2965 tguttata_homolog_orthology_confidence
## 2966 mzebra_homolog_ensembl_gene
## 2967 mzebra_homolog_associated_gene_name
## 2968 mzebra_homolog_ensembl_peptide
## 2969 mzebra_homolog_chromosome
## 2970 mzebra_homolog_chrom_start
## 2971 mzebra_homolog_chrom_end
## 2972 mzebra_homolog_canonical_transcript_protein
## 2973 mzebra_homolog_subtype
## 2974 mzebra_homolog_orthology_type
## 2975 mzebra_homolog_perc_id
## 2976 mzebra_homolog_perc_id_r1
## 2977 mzebra_homolog_goc_score
## 2978 mzebra_homolog_wga_coverage
## 2979 mzebra_homolog_orthology_confidence
## 2980 drerio_homolog_ensembl_gene
## 2981 drerio_homolog_associated_gene_name
## 2982 drerio_homolog_ensembl_peptide
## 2983 drerio_homolog_chromosome
## 2984 drerio_homolog_chrom_start
## 2985 drerio_homolog_chrom_end
## 2986 drerio_homolog_canonical_transcript_protein
## 2987 drerio_homolog_subtype
## 2988 drerio_homolog_orthology_type
## 2989 drerio_homolog_perc_id
## 2990 drerio_homolog_perc_id_r1
## 2991 drerio_homolog_goc_score
## 2992 drerio_homolog_wga_coverage
## 2993 drerio_homolog_orthology_confidence
## 2994 marmatus_homolog_ensembl_gene
## 2995 marmatus_homolog_associated_gene_name
## 2996 marmatus_homolog_ensembl_peptide
## 2997 marmatus_homolog_chromosome
## 2998 marmatus_homolog_chrom_start
## 2999 marmatus_homolog_chrom_end
## 3000 marmatus_homolog_canonical_transcript_protein
## 3001 marmatus_homolog_subtype
## 3002 marmatus_homolog_orthology_type
## 3003 marmatus_homolog_perc_id
## 3004 marmatus_homolog_perc_id_r1
## 3005 marmatus_homolog_goc_score
## 3006 marmatus_homolog_orthology_confidence
## 3007 hsapiens_paralog_ensembl_gene
## 3008 hsapiens_paralog_associated_gene_name
## 3009 hsapiens_paralog_ensembl_peptide
## 3010 hsapiens_paralog_chromosome
## 3011 hsapiens_paralog_chrom_start
## 3012 hsapiens_paralog_chrom_end
## 3013 hsapiens_paralog_canonical_transcript_protein
## 3014 hsapiens_paralog_subtype
## 3015 hsapiens_paralog_orthology_type
## 3016 hsapiens_paralog_perc_id
## 3017 hsapiens_paralog_perc_id_r1
## 3018 ensembl_gene_id
## 3019 ensembl_gene_id_version
## 3020 version
## 3021 ensembl_transcript_id
## 3022 ensembl_transcript_id_version
## 3023 transcript_version
## 3024 ensembl_peptide_id
## 3025 ensembl_peptide_id_version
## 3026 peptide_version
## 3027 chromosome_name
## 3028 start_position
## 3029 end_position
## 3030 strand
## 3031 band
## 3032 external_gene_name
## 3033 external_gene_source
## 3034 transcript_count
## 3035 percentage_gene_gc_content
## 3036 description
## 3037 variation_name
## 3038 germ_line_variation_source
## 3039 source_description
## 3040 allele
## 3041 validated
## 3042 mapweight
## 3043 minor_allele
## 3044 minor_allele_freq
## 3045 minor_allele_count
## 3046 clinical_significance
## 3047 transcript_location
## 3048 snp_chromosome_strand
## 3049 peptide_location
## 3050 chromosome_start
## 3051 chromosome_end
## 3052 polyphen_prediction_2076
## 3053 polyphen_score_2076
## 3054 sift_prediction_2076
## 3055 sift_score_2076
## 3056 distance_to_transcript_2076
## 3057 cds_start_2076
## 3058 cds_end_2076
## 3059 peptide_shift
## 3060 synonymous_status
## 3061 allele_string_2076
## 3062 ensembl_gene_id
## 3063 ensembl_gene_id_version
## 3064 version
## 3065 ensembl_transcript_id
## 3066 ensembl_transcript_id_version
## 3067 transcript_version
## 3068 ensembl_peptide_id
## 3069 ensembl_peptide_id_version
## 3070 peptide_version
## 3071 chromosome_name
## 3072 start_position
## 3073 end_position
## 3074 strand
## 3075 band
## 3076 external_gene_name
## 3077 external_gene_source
## 3078 transcript_count
## 3079 percentage_gene_gc_content
## 3080 description
## 3081 somatic_variation_name
## 3082 somatic_source_name
## 3083 somatic_source_description
## 3084 somatic_allele
## 3085 somatic_validated
## 3086 somatic_mapweight
## 3087 somatic_transcript_location
## 3088 somatic_snp_chromosome_strand
## 3089 somatic_peptide_location
## 3090 somatic_chromosome_start
## 3091 somatic_chromosome_end
## 3092 mart_transcript_variation_som__dm_distance_to_transcript_2076
## 3093 somatic_cds_start_2076
## 3094 somatic_cds_end_2076
## 3095 somatic_synonymous_status
## 3096 mart_transcript_variation_som__dm_allele_string_2076
## 3097 transcript_exon_intron
## 3098 gene_exon_intron
## 3099 transcript_flank
## 3100 gene_flank
## 3101 coding_transcript_flank
## 3102 coding_gene_flank
## 3103 5utr
## 3104 3utr
## 3105 gene_exon
## 3106 cdna
## 3107 coding
## 3108 peptide
## 3109 upstream_flank
## 3110 downstream_flank
## 3111 ensembl_gene_id
## 3112 ensembl_gene_id_version
## 3113 description
## 3114 external_gene_name
## 3115 external_gene_source
## 3116 chromosome_name
## 3117 start_position
## 3118 end_position
## 3119 gene_biotype
## 3120 version
## 3121 uniparc
## 3122 uniprotswissprot
## 3123 uniprotsptrembl
## 3124 cdna_coding_start
## 3125 cdna_coding_end
## 3126 5_utr_start
## 3127 5_utr_end
## 3128 3_utr_start
## 3129 3_utr_end
## 3130 ensembl_transcript_id
## 3131 ensembl_transcript_id_version
## 3132 ensembl_peptide_id
## 3133 ensembl_peptide_id_version
## 3134 transcript_biotype
## 3135 transcript_version
## 3136 peptide_version
## 3137 strand
## 3138 transcript_start
## 3139 transcript_end
## 3140 transcription_start_site
## 3141 transcript_length
## 3142 cds_length
## 3143 cds_start
## 3144 cds_end
## 3145 ensembl_exon_id
## 3146 exon_chrom_start
## 3147 exon_chrom_end
## 3148 strand
## 3149 rank
## 3150 phase
## 3151 end_phase
## 3152 cdna_coding_start
## 3153 cdna_coding_end
## 3154 genomic_coding_start
## 3155 genomic_coding_end
## 3156 is_constitutive
## description
## 1 Gene stable ID
## 2 Gene stable ID version
## 3 Transcript stable ID
## 4 Transcript stable ID version
## 5 Protein stable ID
## 6 Protein stable ID version
## 7 Exon stable ID
## 8 Gene description
## 9 Chromosome/scaffold name
## 10 Gene start (bp)
## 11 Gene end (bp)
## 12 Strand
## 13 Karyotype band
## 14 Transcript start (bp)
## 15 Transcript end (bp)
## 16 Transcription start site (TSS)
## 17 Transcript length (including UTRs and CDS)
## 18 Transcript support level (TSL)
## 19 GENCODE basic annotation
## 20 APPRIS annotation
## 21 Ensembl Canonical
## 22 RefSeq match transcript (MANE Select)
## 23 RefSeq match transcript (MANE Plus Clinical)
## 24 Gene name
## 25 Source of gene name
## 26 Transcript name
## 27 Source of transcript name
## 28 Transcript count
## 29 Gene % GC content
## 30 Gene type
## 31 Transcript type
## 32 Source (gene)
## 33 Source (transcript)
## 34 Version (gene)
## 35 Version (transcript)
## 36 Version (protein)
## 37 Gene Synonym
## 38 Phenotype description
## 39 Source name
## 40 Study external reference
## 41 Strain name
## 42 Strain gender
## 43 P value
## 44 GO term accession
## 45 GO term name
## 46 GO term definition
## 47 GO term evidence code
## 48 GO domain
## 49 GOSlim GOA Accession(s)
## 50 GOSlim GOA Description
## 51 BioGRID Interaction data, The General Repository for Interaction Datasets ID
## 52 CCDS ID
## 53 ChEMBL ID
## 54 DataBase of Aberrant 3' Splice Sites name
## 55 DataBase of Aberrant 3' Splice Sites ID
## 56 DataBase of Aberrant 5' Splice Sites name
## 57 DataBase of Aberrant 5' Splice Sites ID
## 58 EntrezGene transcript name ID
## 59 European Nucleotide Archive ID
## 60 Expression Atlas ID
## 61 GeneCards ID
## 62 HGNC ID
## 63 HGNC symbol
## 64 Human Protein Atlas accession
## 65 Human Protein Atlas ID
## 66 INSDC protein ID
## 67 LRG display in Ensembl gene ID
## 68 LRG display in Ensembl transcript ID
## 69 MEROPS - the Peptidase Database ID
## 70 MIM gene description
## 71 MIM gene accession
## 72 MIM morbid description
## 73 MIM morbid accession
## 74 miRBase accession
## 75 miRBase ID
## 76 miRBase transcript name ID
## 77 NCBI gene (formerly Entrezgene) description
## 78 NCBI gene (formerly Entrezgene) accession
## 79 NCBI gene (formerly Entrezgene) ID
## 80 PDB ID
## 81 Reactome ID
## 82 Reactome gene ID
## 83 Reactome transcript ID
## 84 RefSeq mRNA ID
## 85 RefSeq mRNA predicted ID
## 86 RefSeq ncRNA ID
## 87 RefSeq ncRNA predicted ID
## 88 RefSeq peptide ID
## 89 RefSeq peptide predicted ID
## 90 RFAM ID
## 91 RFAM transcript name ID
## 92 RNAcentral ID
## 93 Transcript name ID
## 94 UCSC Stable ID
## 95 UniParc ID
## 96 UniProtKB Gene Name symbol
## 97 UniProtKB Gene Name ID
## 98 UniProtKB isoform ID
## 99 UniProtKB/Swiss-Prot ID
## 100 UniProtKB/TrEMBL ID
## 101 WikiGene description
## 102 WikiGene name
## 103 WikiGene ID
## 104 AFFY HC G110 probe
## 105 AFFY HG Focus probe
## 106 AFFY HG U133A 2 probe
## 107 AFFY HG U133B probe
## 108 AFFY HG U133 Plus 2 probe
## 109 AFFY HG U95A probe
## 110 AFFY HG U95Av2 probe
## 111 AFFY HG U95B probe
## 112 AFFY HG U95C probe
## 113 AFFY HG U95D probe
## 114 AFFY HG U95E probe
## 115 AFFY HTA 2 0 probe
## 116 AFFY HT HG U133 Plus PM probe
## 117 AFFY HuEx 1 0 st v2 probe
## 118 AFFY HuGeneFL probe
## 119 AFFY HuGene 1 0 st v1 probe
## 120 AFFY HuGene 2 0 st v1 probe
## 121 AFFY HuGene 2 1 st v1 probe
## 122 AFFY PrimeView probe
## 123 AFFY U133 X3P probe
## 124 AGILENT CGH 44b probe
## 125 AGILENT GPL19072 probe
## 126 AGILENT GPL26966 probe
## 127 AGILENT GPL6848 probe
## 128 AGILENT SurePrint G3 GE 8x60k probe
## 129 AGILENT SurePrint G3 GE 8x60k v2 probe
## 130 AGILENT WholeGenome probe
## 131 AGILENT WholeGenome 4x44k v1 probe
## 132 AGILENT WholeGenome 4x44k v2 probe
## 133 CODELINK CODELINK probe
## 134 ILLUMINA HumanRef 8 V3 probe
## 135 ILLUMINA HumanWG 6 V3 probe
## 136 PHALANX OneArray probe
## 137 CDD ID
## 138 CDD start
## 139 CDD end
## 140 Gene3D ID
## 141 Gene3D start
## 142 Gene3D end
## 143 HAMAP ID
## 144 HAMAP start
## 145 HAMAP end
## 146 PANTHER ID
## 147 PANTHER start
## 148 PANTHER end
## 149 Pfam ID
## 150 Pfam start
## 151 Pfam end
## 152 PIRSF ID
## 153 PIRSF start
## 154 PIRSF end
## 155 Prints ID
## 156 Prints start
## 157 Prints end
## 158 PROSITE patterns ID
## 159 PROSITE patterns start
## 160 PROSITE patterns end
## 161 PROSITE profiles ID
## 162 PROSITE profiles start
## 163 PROSITE profiles end
## 164 SFLD ID
## 165 SFLD start
## 166 SFLD end
## 167 SMART ID
## 168 SMART start
## 169 SMART end
## 170 Superfamily ID
## 171 Superfamily start
## 172 Superfamily end
## 173 TIGRFAM ID
## 174 TIGRFAM start
## 175 TIGRFAM end
## 176 Interpro ID
## 177 Interpro Short Description
## 178 Interpro Description
## 179 Interpro start
## 180 Interpro end
## 181 AFDB-ENSP mappings
## 182 AFDB-ENSP mappings start
## 183 AFDB-ENSP mappings end
## 184 MobiDB lite
## 185 MobiDB lite start
## 186 MobiDB lite end
## 187 Coiled-coils (Ncoils)
## 188 Coiled-coils (Ncoils) start
## 189 Coiled-coils (Ncoils) end
## 190 Low complexity (Seg)
## 191 Low complexity (Seg) start
## 192 Low complexity (Seg) end
## 193 PDB-ENSP mappings
## 194 PDB-ENSP mappings start
## 195 PDB-ENSP mappings end
## 196 Cleavage site (Signalp)
## 197 Cleavage site (Signalp) start
## 198 Cleavage site (Signalp) end
## 199 Transmembrane helices
## 200 Transmembrane helices start
## 201 Transmembrane helices end
## 202 Gene stable ID
## 203 Gene stable ID version
## 204 Version (gene)
## 205 Transcript stable ID
## 206 Transcript stable ID version
## 207 Version (transcript)
## 208 Protein stable ID
## 209 Protein stable ID version
## 210 Version (protein)
## 211 Chromosome/scaffold name
## 212 Gene start (bp)
## 213 Gene end (bp)
## 214 Transcript start (bp)
## 215 Transcript end (bp)
## 216 Transcription start site (TSS)
## 217 Transcript length (including UTRs and CDS)
## 218 Strand
## 219 Gene name
## 220 Source of gene name
## 221 5' UTR start
## 222 5' UTR end
## 223 3' UTR start
## 224 3' UTR end
## 225 CDS Length
## 226 Transcript count
## 227 Gene description
## 228 Gene type
## 229 Exon region start (bp)
## 230 Exon region end (bp)
## 231 Constitutive exon
## 232 Exon rank in transcript
## 233 Start phase
## 234 End phase
## 235 cDNA coding start
## 236 cDNA coding end
## 237 Genomic coding start
## 238 Genomic coding end
## 239 Exon stable ID
## 240 CDS start
## 241 CDS end
## 242 Gene stable ID
## 243 Gene stable ID version
## 244 Version (gene)
## 245 Transcript stable ID
## 246 Transcript stable ID version
## 247 Version (transcript)
## 248 Protein stable ID
## 249 Protein stable ID version
## 250 Version (protein)
## 251 Chromosome/scaffold name
## 252 Gene start (bp)
## 253 Gene end (bp)
## 254 Strand
## 255 Karyotype band
## 256 Gene name
## 257 Source of gene name
## 258 Transcript count
## 259 Gene % GC content
## 260 Gene description
## 261 Abingdon island giant tortoise gene stable ID
## 262 Abingdon island giant tortoise gene name
## 263 Abingdon island giant tortoise protein or transcript stable ID
## 264 Abingdon island giant tortoise chromosome/scaffold name
## 265 Abingdon island giant tortoise chromosome/scaffold start (bp)
## 266 Abingdon island giant tortoise chromosome/scaffold end (bp)
## 267 Query protein or transcript ID
## 268 Last common ancestor with Abingdon island giant tortoise
## 269 Abingdon island giant tortoise homology type
## 270 %id. target Abingdon island giant tortoise gene identical to query gene
## 271 %id. query gene identical to target Abingdon island giant tortoise gene
## 272 Abingdon island giant tortoise Gene-order conservation score
## 273 Abingdon island giant tortoise Whole-genome alignment coverage
## 274 Abingdon island giant tortoise orthology confidence [0 low, 1 high]
## 275 African ostrich gene stable ID
## 276 African ostrich gene name
## 277 African ostrich protein or transcript stable ID
## 278 African ostrich chromosome/scaffold name
## 279 African ostrich chromosome/scaffold start (bp)
## 280 African ostrich chromosome/scaffold end (bp)
## 281 Query protein or transcript ID
## 282 Last common ancestor with African ostrich
## 283 African ostrich homology type
## 284 %id. target African ostrich gene identical to query gene
## 285 %id. query gene identical to target African ostrich gene
## 286 African ostrich Gene-order conservation score
## 287 African ostrich Whole-genome alignment coverage
## 288 African ostrich orthology confidence [0 low, 1 high]
## 289 Algerian mouse gene stable ID
## 290 Algerian mouse gene name
## 291 Algerian mouse protein or transcript stable ID
## 292 Algerian mouse chromosome/scaffold name
## 293 Algerian mouse chromosome/scaffold start (bp)
## 294 Algerian mouse chromosome/scaffold end (bp)
## 295 Query protein or transcript ID
## 296 Last common ancestor with Algerian mouse
## 297 Algerian mouse homology type
## 298 %id. target Algerian mouse gene identical to query gene
## 299 %id. query gene identical to target Algerian mouse gene
## 300 Algerian mouse Gene-order conservation score
## 301 Algerian mouse Whole-genome alignment coverage
## 302 Algerian mouse orthology confidence [0 low, 1 high]
## 303 Alpaca gene stable ID
## 304 Alpaca gene name
## 305 Alpaca protein or transcript stable ID
## 306 Alpaca chromosome/scaffold name
## 307 Alpaca chromosome/scaffold start (bp)
## 308 Alpaca chromosome/scaffold end (bp)
## 309 Query protein or transcript ID
## 310 Last common ancestor with Alpaca
## 311 Alpaca homology type
## 312 %id. target Alpaca gene identical to query gene
## 313 %id. query gene identical to target Alpaca gene
## 314 Alpaca Gene-order conservation score
## 315 Alpaca Whole-genome alignment coverage
## 316 Alpaca orthology confidence [0 low, 1 high]
## 317 Alpine marmot gene stable ID
## 318 Alpine marmot gene name
## 319 Alpine marmot protein or transcript stable ID
## 320 Alpine marmot chromosome/scaffold name
## 321 Alpine marmot chromosome/scaffold start (bp)
## 322 Alpine marmot chromosome/scaffold end (bp)
## 323 Query protein or transcript ID
## 324 Last common ancestor with Alpine marmot
## 325 Alpine marmot homology type
## 326 %id. target Alpine marmot gene identical to query gene
## 327 %id. query gene identical to target Alpine marmot gene
## 328 Alpine marmot Gene-order conservation score
## 329 Alpine marmot Whole-genome alignment coverage
## 330 Alpine marmot orthology confidence [0 low, 1 high]
## 331 Amazon molly gene stable ID
## 332 Amazon molly gene name
## 333 Amazon molly protein or transcript stable ID
## 334 Amazon molly chromosome/scaffold name
## 335 Amazon molly chromosome/scaffold start (bp)
## 336 Amazon molly chromosome/scaffold end (bp)
## 337 Query protein or transcript ID
## 338 Last common ancestor with Amazon molly
## 339 Amazon molly homology type
## 340 %id. target Amazon molly gene identical to query gene
## 341 %id. query gene identical to target Amazon molly gene
## 342 Amazon molly Gene-order conservation score
## 343 Amazon molly Whole-genome alignment coverage
## 344 Amazon molly orthology confidence [0 low, 1 high]
## 345 American bison gene stable ID
## 346 American bison gene name
## 347 American bison protein or transcript stable ID
## 348 American bison chromosome/scaffold name
## 349 American bison chromosome/scaffold start (bp)
## 350 American bison chromosome/scaffold end (bp)
## 351 Query protein or transcript ID
## 352 Last common ancestor with American bison
## 353 American bison homology type
## 354 %id. target American bison gene identical to query gene
## 355 %id. query gene identical to target American bison gene
## 356 American bison Gene-order conservation score
## 357 American bison Whole-genome alignment coverage
## 358 American bison orthology confidence [0 low, 1 high]
## 359 American black bear gene stable ID
## 360 American black bear gene name
## 361 American black bear protein or transcript stable ID
## 362 American black bear chromosome/scaffold name
## 363 American black bear chromosome/scaffold start (bp)
## 364 American black bear chromosome/scaffold end (bp)
## 365 Query protein or transcript ID
## 366 Last common ancestor with American black bear
## 367 American black bear homology type
## 368 %id. target American black bear gene identical to query gene
## 369 %id. query gene identical to target American black bear gene
## 370 American black bear Gene-order conservation score
## 371 American black bear Whole-genome alignment coverage
## 372 American black bear orthology confidence [0 low, 1 high]
## 373 American mink gene stable ID
## 374 American mink gene name
## 375 American mink protein or transcript stable ID
## 376 American mink chromosome/scaffold name
## 377 American mink chromosome/scaffold start (bp)
## 378 American mink chromosome/scaffold end (bp)
## 379 Query protein or transcript ID
## 380 Last common ancestor with American mink
## 381 American mink homology type
## 382 %id. target American mink gene identical to query gene
## 383 %id. query gene identical to target American mink gene
## 384 American mink Gene-order conservation score
## 385 American mink Whole-genome alignment coverage
## 386 American mink orthology confidence [0 low, 1 high]
## 387 Arabian camel gene stable ID
## 388 Arabian camel gene name
## 389 Arabian camel protein or transcript stable ID
## 390 Arabian camel chromosome/scaffold name
## 391 Arabian camel chromosome/scaffold start (bp)
## 392 Arabian camel chromosome/scaffold end (bp)
## 393 Query protein or transcript ID
## 394 Last common ancestor with Arabian camel
## 395 Arabian camel homology type
## 396 %id. target Arabian camel gene identical to query gene
## 397 %id. query gene identical to target Arabian camel gene
## 398 Arabian camel Gene-order conservation score
## 399 Arabian camel Whole-genome alignment coverage
## 400 Arabian camel orthology confidence [0 low, 1 high]
## 401 Arctic ground squirrel gene stable ID
## 402 Arctic ground squirrel gene name
## 403 Arctic ground squirrel protein or transcript stable ID
## 404 Arctic ground squirrel chromosome/scaffold name
## 405 Arctic ground squirrel chromosome/scaffold start (bp)
## 406 Arctic ground squirrel chromosome/scaffold end (bp)
## 407 Query protein or transcript ID
## 408 Last common ancestor with Arctic ground squirrel
## 409 Arctic ground squirrel homology type
## 410 %id. target Arctic ground squirrel gene identical to query gene
## 411 %id. query gene identical to target Arctic ground squirrel gene
## 412 Arctic ground squirrel Gene-order conservation score
## 413 Arctic ground squirrel Whole-genome alignment coverage
## 414 Arctic ground squirrel orthology confidence [0 low, 1 high]
## 415 Argentine black and white tegu gene stable ID
## 416 Argentine black and white tegu gene name
## 417 Argentine black and white tegu protein or transcript stable ID
## 418 Argentine black and white tegu chromosome/scaffold name
## 419 Argentine black and white tegu chromosome/scaffold start (bp)
## 420 Argentine black and white tegu chromosome/scaffold end (bp)
## 421 Query protein or transcript ID
## 422 Last common ancestor with Argentine black and white tegu
## 423 Argentine black and white tegu homology type
## 424 %id. target Argentine black and white tegu gene identical to query gene
## 425 %id. query gene identical to target Argentine black and white tegu gene
## 426 Argentine black and white tegu Gene-order conservation score
## 427 Argentine black and white tegu Whole-genome alignment coverage
## 428 Argentine black and white tegu orthology confidence [0 low, 1 high]
## 429 Armadillo gene stable ID
## 430 Armadillo gene name
## 431 Armadillo protein or transcript stable ID
## 432 Armadillo chromosome/scaffold name
## 433 Armadillo chromosome/scaffold start (bp)
## 434 Armadillo chromosome/scaffold end (bp)
## 435 Query protein or transcript ID
## 436 Last common ancestor with Armadillo
## 437 Armadillo homology type
## 438 %id. target Armadillo gene identical to query gene
## 439 %id. query gene identical to target Armadillo gene
## 440 Armadillo Gene-order conservation score
## 441 Armadillo Whole-genome alignment coverage
## 442 Armadillo orthology confidence [0 low, 1 high]
## 443 Asian bonytongue gene stable ID
## 444 Asian bonytongue gene name
## 445 Asian bonytongue protein or transcript stable ID
## 446 Asian bonytongue chromosome/scaffold name
## 447 Asian bonytongue chromosome/scaffold start (bp)
## 448 Asian bonytongue chromosome/scaffold end (bp)
## 449 Query protein or transcript ID
## 450 Last common ancestor with Asian bonytongue
## 451 Asian bonytongue homology type
## 452 %id. target Asian bonytongue gene identical to query gene
## 453 %id. query gene identical to target Asian bonytongue gene
## 454 Asian bonytongue Gene-order conservation score
## 455 Asian bonytongue Whole-genome alignment coverage
## 456 Asian bonytongue orthology confidence [0 low, 1 high]
## 457 Atlantic cod gene stable ID
## 458 Atlantic cod gene name
## 459 Atlantic cod protein or transcript stable ID
## 460 Atlantic cod chromosome/scaffold name
## 461 Atlantic cod chromosome/scaffold start (bp)
## 462 Atlantic cod chromosome/scaffold end (bp)
## 463 Query protein or transcript ID
## 464 Last common ancestor with Atlantic cod
## 465 Atlantic cod homology type
## 466 %id. target Atlantic cod gene identical to query gene
## 467 %id. query gene identical to target Atlantic cod gene
## 468 Atlantic cod Gene-order conservation score
## 469 Atlantic cod orthology confidence [0 low, 1 high]
## 470 Atlantic herring gene stable ID
## 471 Atlantic herring gene name
## 472 Atlantic herring protein or transcript stable ID
## 473 Atlantic herring chromosome/scaffold name
## 474 Atlantic herring chromosome/scaffold start (bp)
## 475 Atlantic herring chromosome/scaffold end (bp)
## 476 Query protein or transcript ID
## 477 Last common ancestor with Atlantic herring
## 478 Atlantic herring homology type
## 479 %id. target Atlantic herring gene identical to query gene
## 480 %id. query gene identical to target Atlantic herring gene
## 481 Atlantic herring Gene-order conservation score
## 482 Atlantic herring Whole-genome alignment coverage
## 483 Atlantic herring orthology confidence [0 low, 1 high]
## 484 Atlantic salmon gene stable ID
## 485 Atlantic salmon gene name
## 486 Atlantic salmon protein or transcript stable ID
## 487 Atlantic salmon chromosome/scaffold name
## 488 Atlantic salmon chromosome/scaffold start (bp)
## 489 Atlantic salmon chromosome/scaffold end (bp)
## 490 Query protein or transcript ID
## 491 Last common ancestor with Atlantic salmon
## 492 Atlantic salmon homology type
## 493 %id. target Atlantic salmon gene identical to query gene
## 494 %id. query gene identical to target Atlantic salmon gene
## 495 Atlantic salmon Gene-order conservation score
## 496 Atlantic salmon orthology confidence [0 low, 1 high]
## 497 Australian saltwater crocodile gene stable ID
## 498 Australian saltwater crocodile gene name
## 499 Australian saltwater crocodile protein or transcript stable ID
## 500 Australian saltwater crocodile chromosome/scaffold name
## 501 Australian saltwater crocodile chromosome/scaffold start (bp)
## 502 Australian saltwater crocodile chromosome/scaffold end (bp)
## 503 Query protein or transcript ID
## 504 Last common ancestor with Australian saltwater crocodile
## 505 Australian saltwater crocodile homology type
## 506 %id. target Australian saltwater crocodile gene identical to query gene
## 507 %id. query gene identical to target Australian saltwater crocodile gene
## 508 Australian saltwater crocodile Gene-order conservation score
## 509 Australian saltwater crocodile Whole-genome alignment coverage
## 510 Australian saltwater crocodile orthology confidence [0 low, 1 high]
## 511 Ballan wrasse gene stable ID
## 512 Ballan wrasse gene name
## 513 Ballan wrasse protein or transcript stable ID
## 514 Ballan wrasse chromosome/scaffold name
## 515 Ballan wrasse chromosome/scaffold start (bp)
## 516 Ballan wrasse chromosome/scaffold end (bp)
## 517 Query protein or transcript ID
## 518 Last common ancestor with Ballan wrasse
## 519 Ballan wrasse homology type
## 520 %id. target Ballan wrasse gene identical to query gene
## 521 %id. query gene identical to target Ballan wrasse gene
## 522 Ballan wrasse Gene-order conservation score
## 523 Ballan wrasse Whole-genome alignment coverage
## 524 Ballan wrasse orthology confidence [0 low, 1 high]
## 525 Barramundi perch gene stable ID
## 526 Barramundi perch gene name
## 527 Barramundi perch protein or transcript stable ID
## 528 Barramundi perch chromosome/scaffold name
## 529 Barramundi perch chromosome/scaffold start (bp)
## 530 Barramundi perch chromosome/scaffold end (bp)
## 531 Query protein or transcript ID
## 532 Last common ancestor with Barramundi perch
## 533 Barramundi perch homology type
## 534 %id. target Barramundi perch gene identical to query gene
## 535 %id. query gene identical to target Barramundi perch gene
## 536 Barramundi perch Gene-order conservation score
## 537 Barramundi perch Whole-genome alignment coverage
## 538 Barramundi perch orthology confidence [0 low, 1 high]
## 539 Beluga whale gene stable ID
## 540 Beluga whale gene name
## 541 Beluga whale protein or transcript stable ID
## 542 Beluga whale chromosome/scaffold name
## 543 Beluga whale chromosome/scaffold start (bp)
## 544 Beluga whale chromosome/scaffold end (bp)
## 545 Query protein or transcript ID
## 546 Last common ancestor with Beluga whale
## 547 Beluga whale homology type
## 548 %id. target Beluga whale gene identical to query gene
## 549 %id. query gene identical to target Beluga whale gene
## 550 Beluga whale Gene-order conservation score
## 551 Beluga whale Whole-genome alignment coverage
## 552 Beluga whale orthology confidence [0 low, 1 high]
## 553 Bicolor damselfish gene stable ID
## 554 Bicolor damselfish gene name
## 555 Bicolor damselfish protein or transcript stable ID
## 556 Bicolor damselfish chromosome/scaffold name
## 557 Bicolor damselfish chromosome/scaffold start (bp)
## 558 Bicolor damselfish chromosome/scaffold end (bp)
## 559 Query protein or transcript ID
## 560 Last common ancestor with Bicolor damselfish
## 561 Bicolor damselfish homology type
## 562 %id. target Bicolor damselfish gene identical to query gene
## 563 %id. query gene identical to target Bicolor damselfish gene
## 564 Bicolor damselfish Gene-order conservation score
## 565 Bicolor damselfish Whole-genome alignment coverage
## 566 Bicolor damselfish orthology confidence [0 low, 1 high]
## 567 Black snub-nosed monkey gene stable ID
## 568 Black snub-nosed monkey gene name
## 569 Black snub-nosed monkey protein or transcript stable ID
## 570 Black snub-nosed monkey chromosome/scaffold name
## 571 Black snub-nosed monkey chromosome/scaffold start (bp)
## 572 Black snub-nosed monkey chromosome/scaffold end (bp)
## 573 Query protein or transcript ID
## 574 Last common ancestor with Black snub-nosed monkey
## 575 Black snub-nosed monkey homology type
## 576 %id. target Black snub-nosed monkey gene identical to query gene
## 577 %id. query gene identical to target Black snub-nosed monkey gene
## 578 Black snub-nosed monkey Gene-order conservation score
## 579 Black snub-nosed monkey Whole-genome alignment coverage
## 580 Black snub-nosed monkey orthology confidence [0 low, 1 high]
## 581 Blue whale gene stable ID
## 582 Blue whale gene name
## 583 Blue whale protein or transcript stable ID
## 584 Blue whale chromosome/scaffold name
## 585 Blue whale chromosome/scaffold start (bp)
## 586 Blue whale chromosome/scaffold end (bp)
## 587 Query protein or transcript ID
## 588 Last common ancestor with Blue whale
## 589 Blue whale homology type
## 590 %id. target Blue whale gene identical to query gene
## 591 %id. query gene identical to target Blue whale gene
## 592 Blue whale Gene-order conservation score
## 593 Blue whale Whole-genome alignment coverage
## 594 Blue whale orthology confidence [0 low, 1 high]
## 595 Blue-ringed sea krait gene stable ID
## 596 Blue-ringed sea krait gene name
## 597 Blue-ringed sea krait protein or transcript stable ID
## 598 Blue-ringed sea krait chromosome/scaffold name
## 599 Blue-ringed sea krait chromosome/scaffold start (bp)
## 600 Blue-ringed sea krait chromosome/scaffold end (bp)
## 601 Query protein or transcript ID
## 602 Last common ancestor with Blue-ringed sea krait
## 603 Blue-ringed sea krait homology type
## 604 %id. target Blue-ringed sea krait gene identical to query gene
## 605 %id. query gene identical to target Blue-ringed sea krait gene
## 606 Blue-ringed sea krait Gene-order conservation score
## 607 Blue-ringed sea krait Whole-genome alignment coverage
## 608 Blue-ringed sea krait orthology confidence [0 low, 1 high]
## 609 Bolivian squirrel monkey gene stable ID
## 610 Bolivian squirrel monkey gene name
## 611 Bolivian squirrel monkey protein or transcript stable ID
## 612 Bolivian squirrel monkey chromosome/scaffold name
## 613 Bolivian squirrel monkey chromosome/scaffold start (bp)
## 614 Bolivian squirrel monkey chromosome/scaffold end (bp)
## 615 Query protein or transcript ID
## 616 Last common ancestor with Bolivian squirrel monkey
## 617 Bolivian squirrel monkey homology type
## 618 %id. target Bolivian squirrel monkey gene identical to query gene
## 619 %id. query gene identical to target Bolivian squirrel monkey gene
## 620 Bolivian squirrel monkey Gene-order conservation score
## 621 Bolivian squirrel monkey Whole-genome alignment coverage
## 622 Bolivian squirrel monkey orthology confidence [0 low, 1 high]
## 623 Bonobo gene stable ID
## 624 Bonobo gene name
## 625 Bonobo protein or transcript stable ID
## 626 Bonobo chromosome/scaffold name
## 627 Bonobo chromosome/scaffold start (bp)
## 628 Bonobo chromosome/scaffold end (bp)
## 629 Query protein or transcript ID
## 630 Last common ancestor with Bonobo
## 631 Bonobo homology type
## 632 %id. target Bonobo gene identical to query gene
## 633 %id. query gene identical to target Bonobo gene
## 634 Bonobo Gene-order conservation score
## 635 Bonobo Whole-genome alignment coverage
## 636 Bonobo orthology confidence [0 low, 1 high]
## 637 Brown trout gene stable ID
## 638 Brown trout gene name
## 639 Brown trout protein or transcript stable ID
## 640 Brown trout chromosome/scaffold name
## 641 Brown trout chromosome/scaffold start (bp)
## 642 Brown trout chromosome/scaffold end (bp)
## 643 Query protein or transcript ID
## 644 Last common ancestor with Brown trout
## 645 Brown trout homology type
## 646 %id. target Brown trout gene identical to query gene
## 647 %id. query gene identical to target Brown trout gene
## 648 Brown trout Gene-order conservation score
## 649 Brown trout Whole-genome alignment coverage
## 650 Brown trout orthology confidence [0 low, 1 high]
## 651 Burton's mouthbrooder gene stable ID
## 652 Burton's mouthbrooder gene name
## 653 Burton's mouthbrooder protein or transcript stable ID
## 654 Burton's mouthbrooder chromosome/scaffold name
## 655 Burton's mouthbrooder chromosome/scaffold start (bp)
## 656 Burton's mouthbrooder chromosome/scaffold end (bp)
## 657 Query protein or transcript ID
## 658 Last common ancestor with Burton's mouthbrooder
## 659 Burton's mouthbrooder homology type
## 660 %id. target Burton's mouthbrooder gene identical to query gene
## 661 %id. query gene identical to target Burton's mouthbrooder gene
## 662 Burton's mouthbrooder Gene-order conservation score
## 663 Burton's mouthbrooder Whole-genome alignment coverage
## 664 Burton's mouthbrooder orthology confidence [0 low, 1 high]
## 665 Bushbaby gene stable ID
## 666 Bushbaby gene name
## 667 Bushbaby protein or transcript stable ID
## 668 Bushbaby chromosome/scaffold name
## 669 Bushbaby chromosome/scaffold start (bp)
## 670 Bushbaby chromosome/scaffold end (bp)
## 671 Query protein or transcript ID
## 672 Last common ancestor with Bushbaby
## 673 Bushbaby homology type
## 674 %id. target Bushbaby gene identical to query gene
## 675 %id. query gene identical to target Bushbaby gene
## 676 Bushbaby Gene-order conservation score
## 677 Bushbaby Whole-genome alignment coverage
## 678 Bushbaby orthology confidence [0 low, 1 high]
## 679 C.intestinalis gene stable ID
## 680 C.intestinalis gene name
## 681 C.intestinalis protein or transcript stable ID
## 682 C.intestinalis chromosome/scaffold name
## 683 C.intestinalis chromosome/scaffold start (bp)
## 684 C.intestinalis chromosome/scaffold end (bp)
## 685 Query protein or transcript ID
## 686 Last common ancestor with C.intestinalis
## 687 C.intestinalis homology type
## 688 %id. target C.intestinalis gene identical to query gene
## 689 %id. query gene identical to target C.intestinalis gene
## 690 C.intestinalis Whole-genome alignment coverage
## 691 C.intestinalis orthology confidence [0 low, 1 high]
## 692 C.savignyi gene stable ID
## 693 C.savignyi gene name
## 694 C.savignyi protein or transcript stable ID
## 695 C.savignyi chromosome/scaffold name
## 696 C.savignyi chromosome/scaffold start (bp)
## 697 C.savignyi chromosome/scaffold end (bp)
## 698 Query protein or transcript ID
## 699 Last common ancestor with C.savignyi
## 700 C.savignyi homology type
## 701 %id. target C.savignyi gene identical to query gene
## 702 %id. query gene identical to target C.savignyi gene
## 703 C.savignyi Whole-genome alignment coverage
## 704 C.savignyi orthology confidence [0 low, 1 high]
## 705 Caenorhabditis elegans (PRJNA13758) gene stable ID
## 706 Caenorhabditis elegans (PRJNA13758) gene name
## 707 Caenorhabditis elegans (PRJNA13758) protein or transcript stable ID
## 708 Caenorhabditis elegans (PRJNA13758) chromosome/scaffold name
## 709 Caenorhabditis elegans (PRJNA13758) chromosome/scaffold start (bp)
## 710 Caenorhabditis elegans (PRJNA13758) chromosome/scaffold end (bp)
## 711 Query protein or transcript ID
## 712 Last common ancestor with Caenorhabditis elegans (PRJNA13758)
## 713 Caenorhabditis elegans (PRJNA13758) homology type
## 714 %id. target Caenorhabditis elegans (PRJNA13758) gene identical to query gene
## 715 %id. query gene identical to target Caenorhabditis elegans (PRJNA13758) gene
## 716 Caenorhabditis elegans (PRJNA13758) orthology confidence [0 low, 1 high]
## 717 Cat gene stable ID
## 718 Cat gene name
## 719 Cat protein or transcript stable ID
## 720 Cat chromosome/scaffold name
## 721 Cat chromosome/scaffold start (bp)
## 722 Cat chromosome/scaffold end (bp)
## 723 Query protein or transcript ID
## 724 Last common ancestor with Cat
## 725 Cat homology type
## 726 %id. target Cat gene identical to query gene
## 727 %id. query gene identical to target Cat gene
## 728 Cat Gene-order conservation score
## 729 Cat Whole-genome alignment coverage
## 730 Cat orthology confidence [0 low, 1 high]
## 731 Chacoan peccary gene stable ID
## 732 Chacoan peccary gene name
## 733 Chacoan peccary protein or transcript stable ID
## 734 Chacoan peccary chromosome/scaffold name
## 735 Chacoan peccary chromosome/scaffold start (bp)
## 736 Chacoan peccary chromosome/scaffold end (bp)
## 737 Query protein or transcript ID
## 738 Last common ancestor with Chacoan peccary
## 739 Chacoan peccary homology type
## 740 %id. target Chacoan peccary gene identical to query gene
## 741 %id. query gene identical to target Chacoan peccary gene
## 742 Chacoan peccary Gene-order conservation score
## 743 Chacoan peccary Whole-genome alignment coverage
## 744 Chacoan peccary orthology confidence [0 low, 1 high]
## 745 Channel bull blenny gene stable ID
## 746 Channel bull blenny gene name
## 747 Channel bull blenny protein or transcript stable ID
## 748 Channel bull blenny chromosome/scaffold name
## 749 Channel bull blenny chromosome/scaffold start (bp)
## 750 Channel bull blenny chromosome/scaffold end (bp)
## 751 Query protein or transcript ID
## 752 Last common ancestor with Channel bull blenny
## 753 Channel bull blenny homology type
## 754 %id. target Channel bull blenny gene identical to query gene
## 755 %id. query gene identical to target Channel bull blenny gene
## 756 Channel bull blenny Gene-order conservation score
## 757 Channel bull blenny Whole-genome alignment coverage
## 758 Channel bull blenny orthology confidence [0 low, 1 high]
## 759 Channel catfish gene stable ID
## 760 Channel catfish gene name
## 761 Channel catfish protein or transcript stable ID
## 762 Channel catfish chromosome/scaffold name
## 763 Channel catfish chromosome/scaffold start (bp)
## 764 Channel catfish chromosome/scaffold end (bp)
## 765 Query protein or transcript ID
## 766 Last common ancestor with Channel catfish
## 767 Channel catfish homology type
## 768 %id. target Channel catfish gene identical to query gene
## 769 %id. query gene identical to target Channel catfish gene
## 770 Channel catfish Gene-order conservation score
## 771 Channel catfish Whole-genome alignment coverage
## 772 Channel catfish orthology confidence [0 low, 1 high]
## 773 Chicken gene stable ID
## 774 Chicken gene name
## 775 Chicken protein or transcript stable ID
## 776 Chicken chromosome/scaffold name
## 777 Chicken chromosome/scaffold start (bp)
## 778 Chicken chromosome/scaffold end (bp)
## 779 Query protein or transcript ID
## 780 Last common ancestor with Chicken
## 781 Chicken homology type
## 782 %id. target Chicken gene identical to query gene
## 783 %id. query gene identical to target Chicken gene
## 784 Chicken Gene-order conservation score
## 785 Chicken Whole-genome alignment coverage
## 786 Chicken orthology confidence [0 low, 1 high]
## 787 Chimpanzee gene stable ID
## 788 Chimpanzee gene name
## 789 Chimpanzee protein or transcript stable ID
## 790 Chimpanzee chromosome/scaffold name
## 791 Chimpanzee chromosome/scaffold start (bp)
## 792 Chimpanzee chromosome/scaffold end (bp)
## 793 Query protein or transcript ID
## 794 Last common ancestor with Chimpanzee
## 795 Chimpanzee homology type
## 796 %id. target Chimpanzee gene identical to query gene
## 797 %id. query gene identical to target Chimpanzee gene
## 798 Chimpanzee Gene-order conservation score
## 799 Chimpanzee Whole-genome alignment coverage
## 800 Chimpanzee orthology confidence [0 low, 1 high]
## 801 Chinese hamster CHOK1GS gene stable ID
## 802 Chinese hamster CHOK1GS gene name
## 803 Chinese hamster CHOK1GS protein or transcript stable ID
## 804 Chinese hamster CHOK1GS chromosome/scaffold name
## 805 Chinese hamster CHOK1GS chromosome/scaffold start (bp)
## 806 Chinese hamster CHOK1GS chromosome/scaffold end (bp)
## 807 Query protein or transcript ID
## 808 Last common ancestor with Chinese hamster CHOK1GS
## 809 Chinese hamster CHOK1GS homology type
## 810 %id. target Chinese hamster CHOK1GS gene identical to query gene
## 811 %id. query gene identical to target Chinese hamster CHOK1GS gene
## 812 Chinese hamster CHOK1GS Gene-order conservation score
## 813 Chinese hamster CHOK1GS Whole-genome alignment coverage
## 814 Chinese hamster CHOK1GS orthology confidence [0 low, 1 high]
## 815 Chinese medaka gene stable ID
## 816 Chinese medaka gene name
## 817 Chinese medaka protein or transcript stable ID
## 818 Chinese medaka chromosome/scaffold name
## 819 Chinese medaka chromosome/scaffold start (bp)
## 820 Chinese medaka chromosome/scaffold end (bp)
## 821 Query protein or transcript ID
## 822 Last common ancestor with Chinese medaka
## 823 Chinese medaka homology type
## 824 %id. target Chinese medaka gene identical to query gene
## 825 %id. query gene identical to target Chinese medaka gene
## 826 Chinese medaka Gene-order conservation score
## 827 Chinese medaka Whole-genome alignment coverage
## 828 Chinese medaka orthology confidence [0 low, 1 high]
## 829 Chinese softshell turtle gene stable ID
## 830 Chinese softshell turtle gene name
## 831 Chinese softshell turtle protein or transcript stable ID
## 832 Chinese softshell turtle chromosome/scaffold name
## 833 Chinese softshell turtle chromosome/scaffold start (bp)
## 834 Chinese softshell turtle chromosome/scaffold end (bp)
## 835 Query protein or transcript ID
## 836 Last common ancestor with Chinese softshell turtle
## 837 Chinese softshell turtle homology type
## 838 %id. target Chinese softshell turtle gene identical to query gene
## 839 %id. query gene identical to target Chinese softshell turtle gene
## 840 Chinese softshell turtle Gene-order conservation score
## 841 Chinese softshell turtle Whole-genome alignment coverage
## 842 Chinese softshell turtle orthology confidence [0 low, 1 high]
## 843 Chinook salmon gene stable ID
## 844 Chinook salmon gene name
## 845 Chinook salmon protein or transcript stable ID
## 846 Chinook salmon chromosome/scaffold name
## 847 Chinook salmon chromosome/scaffold start (bp)
## 848 Chinook salmon chromosome/scaffold end (bp)
## 849 Query protein or transcript ID
## 850 Last common ancestor with Chinook salmon
## 851 Chinook salmon homology type
## 852 %id. target Chinook salmon gene identical to query gene
## 853 %id. query gene identical to target Chinook salmon gene
## 854 Chinook salmon Gene-order conservation score
## 855 Chinook salmon Whole-genome alignment coverage
## 856 Chinook salmon orthology confidence [0 low, 1 high]
## 857 Climbing perch gene stable ID
## 858 Climbing perch gene name
## 859 Climbing perch protein or transcript stable ID
## 860 Climbing perch chromosome/scaffold name
## 861 Climbing perch chromosome/scaffold start (bp)
## 862 Climbing perch chromosome/scaffold end (bp)
## 863 Query protein or transcript ID
## 864 Last common ancestor with Climbing perch
## 865 Climbing perch homology type
## 866 %id. target Climbing perch gene identical to query gene
## 867 %id. query gene identical to target Climbing perch gene
## 868 Climbing perch Gene-order conservation score
## 869 Climbing perch orthology confidence [0 low, 1 high]
## 870 Clown anemonefish gene stable ID
## 871 Clown anemonefish gene name
## 872 Clown anemonefish protein or transcript stable ID
## 873 Clown anemonefish chromosome/scaffold name
## 874 Clown anemonefish chromosome/scaffold start (bp)
## 875 Clown anemonefish chromosome/scaffold end (bp)
## 876 Query protein or transcript ID
## 877 Last common ancestor with Clown anemonefish
## 878 Clown anemonefish homology type
## 879 %id. target Clown anemonefish gene identical to query gene
## 880 %id. query gene identical to target Clown anemonefish gene
## 881 Clown anemonefish Gene-order conservation score
## 882 Clown anemonefish Whole-genome alignment coverage
## 883 Clown anemonefish orthology confidence [0 low, 1 high]
## 884 Coelacanth gene stable ID
## 885 Coelacanth gene name
## 886 Coelacanth protein or transcript stable ID
## 887 Coelacanth chromosome/scaffold name
## 888 Coelacanth chromosome/scaffold start (bp)
## 889 Coelacanth chromosome/scaffold end (bp)
## 890 Query protein or transcript ID
## 891 Last common ancestor with Coelacanth
## 892 Coelacanth homology type
## 893 %id. target Coelacanth gene identical to query gene
## 894 %id. query gene identical to target Coelacanth gene
## 895 Coelacanth Gene-order conservation score
## 896 Coelacanth Whole-genome alignment coverage
## 897 Coelacanth orthology confidence [0 low, 1 high]
## 898 Coho salmon gene stable ID
## 899 Coho salmon gene name
## 900 Coho salmon protein or transcript stable ID
## 901 Coho salmon chromosome/scaffold name
## 902 Coho salmon chromosome/scaffold start (bp)
## 903 Coho salmon chromosome/scaffold end (bp)
## 904 Query protein or transcript ID
## 905 Last common ancestor with Coho salmon
## 906 Coho salmon homology type
## 907 %id. target Coho salmon gene identical to query gene
## 908 %id. query gene identical to target Coho salmon gene
## 909 Coho salmon Gene-order conservation score
## 910 Coho salmon Whole-genome alignment coverage
## 911 Coho salmon orthology confidence [0 low, 1 high]
## 912 Collared flycatcher gene stable ID
## 913 Collared flycatcher gene name
## 914 Collared flycatcher protein or transcript stable ID
## 915 Collared flycatcher chromosome/scaffold name
## 916 Collared flycatcher chromosome/scaffold start (bp)
## 917 Collared flycatcher chromosome/scaffold end (bp)
## 918 Query protein or transcript ID
## 919 Last common ancestor with Collared flycatcher
## 920 Collared flycatcher homology type
## 921 %id. target Collared flycatcher gene identical to query gene
## 922 %id. query gene identical to target Collared flycatcher gene
## 923 Collared flycatcher Gene-order conservation score
## 924 Collared flycatcher orthology confidence [0 low, 1 high]
## 925 Common canary gene stable ID
## 926 Common canary gene name
## 927 Common canary protein or transcript stable ID
## 928 Common canary chromosome/scaffold name
## 929 Common canary chromosome/scaffold start (bp)
## 930 Common canary chromosome/scaffold end (bp)
## 931 Query protein or transcript ID
## 932 Last common ancestor with Common canary
## 933 Common canary homology type
## 934 %id. target Common canary gene identical to query gene
## 935 %id. query gene identical to target Common canary gene
## 936 Common canary Gene-order conservation score
## 937 Common canary Whole-genome alignment coverage
## 938 Common canary orthology confidence [0 low, 1 high]
## 939 Common carp gene stable ID
## 940 Common carp gene name
## 941 Common carp protein or transcript stable ID
## 942 Common carp chromosome/scaffold name
## 943 Common carp chromosome/scaffold start (bp)
## 944 Common carp chromosome/scaffold end (bp)
## 945 Query protein or transcript ID
## 946 Last common ancestor with Common carp
## 947 Common carp homology type
## 948 %id. target Common carp gene identical to query gene
## 949 %id. query gene identical to target Common carp gene
## 950 Common carp Gene-order conservation score
## 951 Common carp orthology confidence [0 low, 1 high]
## 952 Common wall lizard gene stable ID
## 953 Common wall lizard gene name
## 954 Common wall lizard protein or transcript stable ID
## 955 Common wall lizard chromosome/scaffold name
## 956 Common wall lizard chromosome/scaffold start (bp)
## 957 Common wall lizard chromosome/scaffold end (bp)
## 958 Query protein or transcript ID
## 959 Last common ancestor with Common wall lizard
## 960 Common wall lizard homology type
## 961 %id. target Common wall lizard gene identical to query gene
## 962 %id. query gene identical to target Common wall lizard gene
## 963 Common wall lizard Gene-order conservation score
## 964 Common wall lizard Whole-genome alignment coverage
## 965 Common wall lizard orthology confidence [0 low, 1 high]
## 966 Common wombat gene stable ID
## 967 Common wombat gene name
## 968 Common wombat protein or transcript stable ID
## 969 Common wombat chromosome/scaffold name
## 970 Common wombat chromosome/scaffold start (bp)
## 971 Common wombat chromosome/scaffold end (bp)
## 972 Query protein or transcript ID
## 973 Last common ancestor with Common wombat
## 974 Common wombat homology type
## 975 %id. target Common wombat gene identical to query gene
## 976 %id. query gene identical to target Common wombat gene
## 977 Common wombat Gene-order conservation score
## 978 Common wombat Whole-genome alignment coverage
## 979 Common wombat orthology confidence [0 low, 1 high]
## 980 Coquerel's sifaka gene stable ID
## 981 Coquerel's sifaka gene name
## 982 Coquerel's sifaka protein or transcript stable ID
## 983 Coquerel's sifaka chromosome/scaffold name
## 984 Coquerel's sifaka chromosome/scaffold start (bp)
## 985 Coquerel's sifaka chromosome/scaffold end (bp)
## 986 Query protein or transcript ID
## 987 Last common ancestor with Coquerel's sifaka
## 988 Coquerel's sifaka homology type
## 989 %id. target Coquerel's sifaka gene identical to query gene
## 990 %id. query gene identical to target Coquerel's sifaka gene
## 991 Coquerel's sifaka Gene-order conservation score
## 992 Coquerel's sifaka Whole-genome alignment coverage
## 993 Coquerel's sifaka orthology confidence [0 low, 1 high]
## 994 Cow gene stable ID
## 995 Cow gene name
## 996 Cow protein or transcript stable ID
## 997 Cow chromosome/scaffold name
## 998 Cow chromosome/scaffold start (bp)
## 999 Cow chromosome/scaffold end (bp)
## 1000 Query protein or transcript ID
## 1001 Last common ancestor with Cow
## 1002 Cow homology type
## 1003 %id. target Cow gene identical to query gene
## 1004 %id. query gene identical to target Cow gene
## 1005 Cow Gene-order conservation score
## 1006 Cow Whole-genome alignment coverage
## 1007 Cow orthology confidence [0 low, 1 high]
## 1008 Crab-eating macaque gene stable ID
## 1009 Crab-eating macaque gene name
## 1010 Crab-eating macaque protein or transcript stable ID
## 1011 Crab-eating macaque chromosome/scaffold name
## 1012 Crab-eating macaque chromosome/scaffold start (bp)
## 1013 Crab-eating macaque chromosome/scaffold end (bp)
## 1014 Query protein or transcript ID
## 1015 Last common ancestor with Crab-eating macaque
## 1016 Crab-eating macaque homology type
## 1017 %id. target Crab-eating macaque gene identical to query gene
## 1018 %id. query gene identical to target Crab-eating macaque gene
## 1019 Crab-eating macaque Gene-order conservation score
## 1020 Crab-eating macaque Whole-genome alignment coverage
## 1021 Crab-eating macaque orthology confidence [0 low, 1 high]
## 1022 Degu gene stable ID
## 1023 Degu gene name
## 1024 Degu protein or transcript stable ID
## 1025 Degu chromosome/scaffold name
## 1026 Degu chromosome/scaffold start (bp)
## 1027 Degu chromosome/scaffold end (bp)
## 1028 Query protein or transcript ID
## 1029 Last common ancestor with Degu
## 1030 Degu homology type
## 1031 %id. target Degu gene identical to query gene
## 1032 %id. query gene identical to target Degu gene
## 1033 Degu Gene-order conservation score
## 1034 Degu Whole-genome alignment coverage
## 1035 Degu orthology confidence [0 low, 1 high]
## 1036 Denticle herring gene stable ID
## 1037 Denticle herring gene name
## 1038 Denticle herring protein or transcript stable ID
## 1039 Denticle herring chromosome/scaffold name
## 1040 Denticle herring chromosome/scaffold start (bp)
## 1041 Denticle herring chromosome/scaffold end (bp)
## 1042 Query protein or transcript ID
## 1043 Last common ancestor with Denticle herring
## 1044 Denticle herring homology type
## 1045 %id. target Denticle herring gene identical to query gene
## 1046 %id. query gene identical to target Denticle herring gene
## 1047 Denticle herring Gene-order conservation score
## 1048 Denticle herring Whole-genome alignment coverage
## 1049 Denticle herring orthology confidence [0 low, 1 high]
## 1050 Dingo gene stable ID
## 1051 Dingo gene name
## 1052 Dingo protein or transcript stable ID
## 1053 Dingo chromosome/scaffold name
## 1054 Dingo chromosome/scaffold start (bp)
## 1055 Dingo chromosome/scaffold end (bp)
## 1056 Query protein or transcript ID
## 1057 Last common ancestor with Dingo
## 1058 Dingo homology type
## 1059 %id. target Dingo gene identical to query gene
## 1060 %id. query gene identical to target Dingo gene
## 1061 Dingo Gene-order conservation score
## 1062 Dingo Whole-genome alignment coverage
## 1063 Dingo orthology confidence [0 low, 1 high]
## 1064 Dog gene stable ID
## 1065 Dog gene name
## 1066 Dog protein or transcript stable ID
## 1067 Dog chromosome/scaffold name
## 1068 Dog chromosome/scaffold start (bp)
## 1069 Dog chromosome/scaffold end (bp)
## 1070 Query protein or transcript ID
## 1071 Last common ancestor with Dog
## 1072 Dog homology type
## 1073 %id. target Dog gene identical to query gene
## 1074 %id. query gene identical to target Dog gene
## 1075 Dog Gene-order conservation score
## 1076 Dog Whole-genome alignment coverage
## 1077 Dog orthology confidence [0 low, 1 high]
## 1078 Dolphin gene stable ID
## 1079 Dolphin gene name
## 1080 Dolphin protein or transcript stable ID
## 1081 Dolphin chromosome/scaffold name
## 1082 Dolphin chromosome/scaffold start (bp)
## 1083 Dolphin chromosome/scaffold end (bp)
## 1084 Query protein or transcript ID
## 1085 Last common ancestor with Dolphin
## 1086 Dolphin homology type
## 1087 %id. target Dolphin gene identical to query gene
## 1088 %id. query gene identical to target Dolphin gene
## 1089 Dolphin Gene-order conservation score
## 1090 Dolphin Whole-genome alignment coverage
## 1091 Dolphin orthology confidence [0 low, 1 high]
## 1092 Domestic yak gene stable ID
## 1093 Domestic yak gene name
## 1094 Domestic yak protein or transcript stable ID
## 1095 Domestic yak chromosome/scaffold name
## 1096 Domestic yak chromosome/scaffold start (bp)
## 1097 Domestic yak chromosome/scaffold end (bp)
## 1098 Query protein or transcript ID
## 1099 Last common ancestor with Domestic yak
## 1100 Domestic yak homology type
## 1101 %id. target Domestic yak gene identical to query gene
## 1102 %id. query gene identical to target Domestic yak gene
## 1103 Domestic yak Gene-order conservation score
## 1104 Domestic yak Whole-genome alignment coverage
## 1105 Domestic yak orthology confidence [0 low, 1 high]
## 1106 Donkey gene stable ID
## 1107 Donkey gene name
## 1108 Donkey protein or transcript stable ID
## 1109 Donkey chromosome/scaffold name
## 1110 Donkey chromosome/scaffold start (bp)
## 1111 Donkey chromosome/scaffold end (bp)
## 1112 Query protein or transcript ID
## 1113 Last common ancestor with Donkey
## 1114 Donkey homology type
## 1115 %id. target Donkey gene identical to query gene
## 1116 %id. query gene identical to target Donkey gene
## 1117 Donkey Gene-order conservation score
## 1118 Donkey orthology confidence [0 low, 1 high]
## 1119 Drill gene stable ID
## 1120 Drill gene name
## 1121 Drill protein or transcript stable ID
## 1122 Drill chromosome/scaffold name
## 1123 Drill chromosome/scaffold start (bp)
## 1124 Drill chromosome/scaffold end (bp)
## 1125 Query protein or transcript ID
## 1126 Last common ancestor with Drill
## 1127 Drill homology type
## 1128 %id. target Drill gene identical to query gene
## 1129 %id. query gene identical to target Drill gene
## 1130 Drill Gene-order conservation score
## 1131 Drill Whole-genome alignment coverage
## 1132 Drill orthology confidence [0 low, 1 high]
## 1133 Drosophila melanogaster gene stable ID
## 1134 Drosophila melanogaster gene name
## 1135 Drosophila melanogaster protein or transcript stable ID
## 1136 Drosophila melanogaster chromosome/scaffold name
## 1137 Drosophila melanogaster chromosome/scaffold start (bp)
## 1138 Drosophila melanogaster chromosome/scaffold end (bp)
## 1139 Query protein or transcript ID
## 1140 Last common ancestor with Drosophila melanogaster
## 1141 Drosophila melanogaster homology type
## 1142 %id. target Drosophila melanogaster gene identical to query gene
## 1143 %id. query gene identical to target Drosophila melanogaster gene
## 1144 Drosophila melanogaster orthology confidence [0 low, 1 high]
## 1145 Duck gene stable ID
## 1146 Duck gene name
## 1147 Duck protein or transcript stable ID
## 1148 Duck chromosome/scaffold name
## 1149 Duck chromosome/scaffold start (bp)
## 1150 Duck chromosome/scaffold end (bp)
## 1151 Query protein or transcript ID
## 1152 Last common ancestor with Duck
## 1153 Duck homology type
## 1154 %id. target Duck gene identical to query gene
## 1155 %id. query gene identical to target Duck gene
## 1156 Duck Gene-order conservation score
## 1157 Duck Whole-genome alignment coverage
## 1158 Duck orthology confidence [0 low, 1 high]
## 1159 Eastern brown snake gene stable ID
## 1160 Eastern brown snake gene name
## 1161 Eastern brown snake protein or transcript stable ID
## 1162 Eastern brown snake chromosome/scaffold name
## 1163 Eastern brown snake chromosome/scaffold start (bp)
## 1164 Eastern brown snake chromosome/scaffold end (bp)
## 1165 Query protein or transcript ID
## 1166 Last common ancestor with Eastern brown snake
## 1167 Eastern brown snake homology type
## 1168 %id. target Eastern brown snake gene identical to query gene
## 1169 %id. query gene identical to target Eastern brown snake gene
## 1170 Eastern brown snake Gene-order conservation score
## 1171 Eastern brown snake Whole-genome alignment coverage
## 1172 Eastern brown snake orthology confidence [0 low, 1 high]
## 1173 Eastern happy gene stable ID
## 1174 Eastern happy gene name
## 1175 Eastern happy protein or transcript stable ID
## 1176 Eastern happy chromosome/scaffold name
## 1177 Eastern happy chromosome/scaffold start (bp)
## 1178 Eastern happy chromosome/scaffold end (bp)
## 1179 Query protein or transcript ID
## 1180 Last common ancestor with Eastern happy
## 1181 Eastern happy homology type
## 1182 %id. target Eastern happy gene identical to query gene
## 1183 %id. query gene identical to target Eastern happy gene
## 1184 Eastern happy Gene-order conservation score
## 1185 Eastern happy Whole-genome alignment coverage
## 1186 Eastern happy orthology confidence [0 low, 1 high]
## 1187 Electric eel gene stable ID
## 1188 Electric eel gene name
## 1189 Electric eel protein or transcript stable ID
## 1190 Electric eel chromosome/scaffold name
## 1191 Electric eel chromosome/scaffold start (bp)
## 1192 Electric eel chromosome/scaffold end (bp)
## 1193 Query protein or transcript ID
## 1194 Last common ancestor with Electric eel
## 1195 Electric eel homology type
## 1196 %id. target Electric eel gene identical to query gene
## 1197 %id. query gene identical to target Electric eel gene
## 1198 Electric eel Gene-order conservation score
## 1199 Electric eel Whole-genome alignment coverage
## 1200 Electric eel orthology confidence [0 low, 1 high]
## 1201 Elephant gene stable ID
## 1202 Elephant gene name
## 1203 Elephant protein or transcript stable ID
## 1204 Elephant chromosome/scaffold name
## 1205 Elephant chromosome/scaffold start (bp)
## 1206 Elephant chromosome/scaffold end (bp)
## 1207 Query protein or transcript ID
## 1208 Last common ancestor with Elephant
## 1209 Elephant homology type
## 1210 %id. target Elephant gene identical to query gene
## 1211 %id. query gene identical to target Elephant gene
## 1212 Elephant Gene-order conservation score
## 1213 Elephant Whole-genome alignment coverage
## 1214 Elephant orthology confidence [0 low, 1 high]
## 1215 Elephant shark gene stable ID
## 1216 Elephant shark gene name
## 1217 Elephant shark protein or transcript stable ID
## 1218 Elephant shark chromosome/scaffold name
## 1219 Elephant shark chromosome/scaffold start (bp)
## 1220 Elephant shark chromosome/scaffold end (bp)
## 1221 Query protein or transcript ID
## 1222 Last common ancestor with Elephant shark
## 1223 Elephant shark homology type
## 1224 %id. target Elephant shark gene identical to query gene
## 1225 %id. query gene identical to target Elephant shark gene
## 1226 Elephant shark Whole-genome alignment coverage
## 1227 Elephant shark orthology confidence [0 low, 1 high]
## 1228 Eurasian red squirrel gene stable ID
## 1229 Eurasian red squirrel gene name
## 1230 Eurasian red squirrel protein or transcript stable ID
## 1231 Eurasian red squirrel chromosome/scaffold name
## 1232 Eurasian red squirrel chromosome/scaffold start (bp)
## 1233 Eurasian red squirrel chromosome/scaffold end (bp)
## 1234 Query protein or transcript ID
## 1235 Last common ancestor with Eurasian red squirrel
## 1236 Eurasian red squirrel homology type
## 1237 %id. target Eurasian red squirrel gene identical to query gene
## 1238 %id. query gene identical to target Eurasian red squirrel gene
## 1239 Eurasian red squirrel Gene-order conservation score
## 1240 Eurasian red squirrel Whole-genome alignment coverage
## 1241 Eurasian red squirrel orthology confidence [0 low, 1 high]
## 1242 European seabass gene stable ID
## 1243 European seabass gene name
## 1244 European seabass protein or transcript stable ID
## 1245 European seabass chromosome/scaffold name
## 1246 European seabass chromosome/scaffold start (bp)
## 1247 European seabass chromosome/scaffold end (bp)
## 1248 Query protein or transcript ID
## 1249 Last common ancestor with European seabass
## 1250 European seabass homology type
## 1251 %id. target European seabass gene identical to query gene
## 1252 %id. query gene identical to target European seabass gene
## 1253 European seabass Gene-order conservation score
## 1254 European seabass orthology confidence [0 low, 1 high]
## 1255 Ferret gene stable ID
## 1256 Ferret gene name
## 1257 Ferret protein or transcript stable ID
## 1258 Ferret chromosome/scaffold name
## 1259 Ferret chromosome/scaffold start (bp)
## 1260 Ferret chromosome/scaffold end (bp)
## 1261 Query protein or transcript ID
## 1262 Last common ancestor with Ferret
## 1263 Ferret homology type
## 1264 %id. target Ferret gene identical to query gene
## 1265 %id. query gene identical to target Ferret gene
## 1266 Ferret Gene-order conservation score
## 1267 Ferret Whole-genome alignment coverage
## 1268 Ferret orthology confidence [0 low, 1 high]
## 1269 Fugu gene stable ID
## 1270 Fugu gene name
## 1271 Fugu protein or transcript stable ID
## 1272 Fugu chromosome/scaffold name
## 1273 Fugu chromosome/scaffold start (bp)
## 1274 Fugu chromosome/scaffold end (bp)
## 1275 Query protein or transcript ID
## 1276 Last common ancestor with Fugu
## 1277 Fugu homology type
## 1278 %id. target Fugu gene identical to query gene
## 1279 %id. query gene identical to target Fugu gene
## 1280 Fugu Gene-order conservation score
## 1281 Fugu Whole-genome alignment coverage
## 1282 Fugu orthology confidence [0 low, 1 high]
## 1283 Giant panda gene stable ID
## 1284 Giant panda gene name
## 1285 Giant panda protein or transcript stable ID
## 1286 Giant panda chromosome/scaffold name
## 1287 Giant panda chromosome/scaffold start (bp)
## 1288 Giant panda chromosome/scaffold end (bp)
## 1289 Query protein or transcript ID
## 1290 Last common ancestor with Giant panda
## 1291 Giant panda homology type
## 1292 %id. target Giant panda gene identical to query gene
## 1293 %id. query gene identical to target Giant panda gene
## 1294 Giant panda Gene-order conservation score
## 1295 Giant panda orthology confidence [0 low, 1 high]
## 1296 Gibbon gene stable ID
## 1297 Gibbon gene name
## 1298 Gibbon protein or transcript stable ID
## 1299 Gibbon chromosome/scaffold name
## 1300 Gibbon chromosome/scaffold start (bp)
## 1301 Gibbon chromosome/scaffold end (bp)
## 1302 Query protein or transcript ID
## 1303 Last common ancestor with Gibbon
## 1304 Gibbon homology type
## 1305 %id. target Gibbon gene identical to query gene
## 1306 %id. query gene identical to target Gibbon gene
## 1307 Gibbon Gene-order conservation score
## 1308 Gibbon Whole-genome alignment coverage
## 1309 Gibbon orthology confidence [0 low, 1 high]
## 1310 Gilthead seabream gene stable ID
## 1311 Gilthead seabream gene name
## 1312 Gilthead seabream protein or transcript stable ID
## 1313 Gilthead seabream chromosome/scaffold name
## 1314 Gilthead seabream chromosome/scaffold start (bp)
## 1315 Gilthead seabream chromosome/scaffold end (bp)
## 1316 Query protein or transcript ID
## 1317 Last common ancestor with Gilthead seabream
## 1318 Gilthead seabream homology type
## 1319 %id. target Gilthead seabream gene identical to query gene
## 1320 %id. query gene identical to target Gilthead seabream gene
## 1321 Gilthead seabream Gene-order conservation score
## 1322 Gilthead seabream Whole-genome alignment coverage
## 1323 Gilthead seabream orthology confidence [0 low, 1 high]
## 1324 Goat gene stable ID
## 1325 Goat gene name
## 1326 Goat protein or transcript stable ID
## 1327 Goat chromosome/scaffold name
## 1328 Goat chromosome/scaffold start (bp)
## 1329 Goat chromosome/scaffold end (bp)
## 1330 Query protein or transcript ID
## 1331 Last common ancestor with Goat
## 1332 Goat homology type
## 1333 %id. target Goat gene identical to query gene
## 1334 %id. query gene identical to target Goat gene
## 1335 Goat Gene-order conservation score
## 1336 Goat Whole-genome alignment coverage
## 1337 Goat orthology confidence [0 low, 1 high]
## 1338 Golden Hamster gene stable ID
## 1339 Golden Hamster gene name
## 1340 Golden Hamster protein or transcript stable ID
## 1341 Golden Hamster chromosome/scaffold name
## 1342 Golden Hamster chromosome/scaffold start (bp)
## 1343 Golden Hamster chromosome/scaffold end (bp)
## 1344 Query protein or transcript ID
## 1345 Last common ancestor with Golden Hamster
## 1346 Golden Hamster homology type
## 1347 %id. target Golden Hamster gene identical to query gene
## 1348 %id. query gene identical to target Golden Hamster gene
## 1349 Golden Hamster Gene-order conservation score
## 1350 Golden Hamster Whole-genome alignment coverage
## 1351 Golden Hamster orthology confidence [0 low, 1 high]
## 1352 Golden eagle gene stable ID
## 1353 Golden eagle gene name
## 1354 Golden eagle protein or transcript stable ID
## 1355 Golden eagle chromosome/scaffold name
## 1356 Golden eagle chromosome/scaffold start (bp)
## 1357 Golden eagle chromosome/scaffold end (bp)
## 1358 Query protein or transcript ID
## 1359 Last common ancestor with Golden eagle
## 1360 Golden eagle homology type
## 1361 %id. target Golden eagle gene identical to query gene
## 1362 %id. query gene identical to target Golden eagle gene
## 1363 Golden eagle Gene-order conservation score
## 1364 Golden eagle Whole-genome alignment coverage
## 1365 Golden eagle orthology confidence [0 low, 1 high]
## 1366 Golden snub-nosed monkey gene stable ID
## 1367 Golden snub-nosed monkey gene name
## 1368 Golden snub-nosed monkey protein or transcript stable ID
## 1369 Golden snub-nosed monkey chromosome/scaffold name
## 1370 Golden snub-nosed monkey chromosome/scaffold start (bp)
## 1371 Golden snub-nosed monkey chromosome/scaffold end (bp)
## 1372 Query protein or transcript ID
## 1373 Last common ancestor with Golden snub-nosed monkey
## 1374 Golden snub-nosed monkey homology type
## 1375 %id. target Golden snub-nosed monkey gene identical to query gene
## 1376 %id. query gene identical to target Golden snub-nosed monkey gene
## 1377 Golden snub-nosed monkey Gene-order conservation score
## 1378 Golden snub-nosed monkey Whole-genome alignment coverage
## 1379 Golden snub-nosed monkey orthology confidence [0 low, 1 high]
## 1380 Golden-line barbel gene stable ID
## 1381 Golden-line barbel gene name
## 1382 Golden-line barbel protein or transcript stable ID
## 1383 Golden-line barbel chromosome/scaffold name
## 1384 Golden-line barbel chromosome/scaffold start (bp)
## 1385 Golden-line barbel chromosome/scaffold end (bp)
## 1386 Query protein or transcript ID
## 1387 Last common ancestor with Golden-line barbel
## 1388 Golden-line barbel homology type
## 1389 %id. target Golden-line barbel gene identical to query gene
## 1390 %id. query gene identical to target Golden-line barbel gene
## 1391 Golden-line barbel Gene-order conservation score
## 1392 Golden-line barbel Whole-genome alignment coverage
## 1393 Golden-line barbel orthology confidence [0 low, 1 high]
## 1394 Goldfish gene stable ID
## 1395 Goldfish gene name
## 1396 Goldfish protein or transcript stable ID
## 1397 Goldfish chromosome/scaffold name
## 1398 Goldfish chromosome/scaffold start (bp)
## 1399 Goldfish chromosome/scaffold end (bp)
## 1400 Query protein or transcript ID
## 1401 Last common ancestor with Goldfish
## 1402 Goldfish homology type
## 1403 %id. target Goldfish gene identical to query gene
## 1404 %id. query gene identical to target Goldfish gene
## 1405 Goldfish Gene-order conservation score
## 1406 Goldfish Whole-genome alignment coverage
## 1407 Goldfish orthology confidence [0 low, 1 high]
## 1408 Goodes thornscrub tortoise gene stable ID
## 1409 Goodes thornscrub tortoise gene name
## 1410 Goodes thornscrub tortoise protein or transcript stable ID
## 1411 Goodes thornscrub tortoise chromosome/scaffold name
## 1412 Goodes thornscrub tortoise chromosome/scaffold start (bp)
## 1413 Goodes thornscrub tortoise chromosome/scaffold end (bp)
## 1414 Query protein or transcript ID
## 1415 Last common ancestor with Goodes thornscrub tortoise
## 1416 Goodes thornscrub tortoise homology type
## 1417 %id. target Goodes thornscrub tortoise gene identical to query gene
## 1418 %id. query gene identical to target Goodes thornscrub tortoise gene
## 1419 Goodes thornscrub tortoise Gene-order conservation score
## 1420 Goodes thornscrub tortoise Whole-genome alignment coverage
## 1421 Goodes thornscrub tortoise orthology confidence [0 low, 1 high]
## 1422 Gorilla gene stable ID
## 1423 Gorilla gene name
## 1424 Gorilla protein or transcript stable ID
## 1425 Gorilla chromosome/scaffold name
## 1426 Gorilla chromosome/scaffold start (bp)
## 1427 Gorilla chromosome/scaffold end (bp)
## 1428 Query protein or transcript ID
## 1429 Last common ancestor with Gorilla
## 1430 Gorilla homology type
## 1431 %id. target Gorilla gene identical to query gene
## 1432 %id. query gene identical to target Gorilla gene
## 1433 Gorilla Gene-order conservation score
## 1434 Gorilla Whole-genome alignment coverage
## 1435 Gorilla orthology confidence [0 low, 1 high]
## 1436 Great Tit gene stable ID
## 1437 Great Tit gene name
## 1438 Great Tit protein or transcript stable ID
## 1439 Great Tit chromosome/scaffold name
## 1440 Great Tit chromosome/scaffold start (bp)
## 1441 Great Tit chromosome/scaffold end (bp)
## 1442 Query protein or transcript ID
## 1443 Last common ancestor with Great Tit
## 1444 Great Tit homology type
## 1445 %id. target Great Tit gene identical to query gene
## 1446 %id. query gene identical to target Great Tit gene
## 1447 Great Tit Gene-order conservation score
## 1448 Great Tit Whole-genome alignment coverage
## 1449 Great Tit orthology confidence [0 low, 1 high]
## 1450 Greater amberjack gene stable ID
## 1451 Greater amberjack gene name
## 1452 Greater amberjack protein or transcript stable ID
## 1453 Greater amberjack chromosome/scaffold name
## 1454 Greater amberjack chromosome/scaffold start (bp)
## 1455 Greater amberjack chromosome/scaffold end (bp)
## 1456 Query protein or transcript ID
## 1457 Last common ancestor with Greater amberjack
## 1458 Greater amberjack homology type
## 1459 %id. target Greater amberjack gene identical to query gene
## 1460 %id. query gene identical to target Greater amberjack gene
## 1461 Greater amberjack Gene-order conservation score
## 1462 Greater amberjack Whole-genome alignment coverage
## 1463 Greater amberjack orthology confidence [0 low, 1 high]
## 1464 Greater bamboo lemur gene stable ID
## 1465 Greater bamboo lemur gene name
## 1466 Greater bamboo lemur protein or transcript stable ID
## 1467 Greater bamboo lemur chromosome/scaffold name
## 1468 Greater bamboo lemur chromosome/scaffold start (bp)
## 1469 Greater bamboo lemur chromosome/scaffold end (bp)
## 1470 Query protein or transcript ID
## 1471 Last common ancestor with Greater bamboo lemur
## 1472 Greater bamboo lemur homology type
## 1473 %id. target Greater bamboo lemur gene identical to query gene
## 1474 %id. query gene identical to target Greater bamboo lemur gene
## 1475 Greater bamboo lemur Gene-order conservation score
## 1476 Greater bamboo lemur Whole-genome alignment coverage
## 1477 Greater bamboo lemur orthology confidence [0 low, 1 high]
## 1478 Greater horseshoe bat gene stable ID
## 1479 Greater horseshoe bat gene name
## 1480 Greater horseshoe bat protein or transcript stable ID
## 1481 Greater horseshoe bat chromosome/scaffold name
## 1482 Greater horseshoe bat chromosome/scaffold start (bp)
## 1483 Greater horseshoe bat chromosome/scaffold end (bp)
## 1484 Query protein or transcript ID
## 1485 Last common ancestor with Greater horseshoe bat
## 1486 Greater horseshoe bat homology type
## 1487 %id. target Greater horseshoe bat gene identical to query gene
## 1488 %id. query gene identical to target Greater horseshoe bat gene
## 1489 Greater horseshoe bat Gene-order conservation score
## 1490 Greater horseshoe bat Whole-genome alignment coverage
## 1491 Greater horseshoe bat orthology confidence [0 low, 1 high]
## 1492 Green anole gene stable ID
## 1493 Green anole gene name
## 1494 Green anole protein or transcript stable ID
## 1495 Green anole chromosome/scaffold name
## 1496 Green anole chromosome/scaffold start (bp)
## 1497 Green anole chromosome/scaffold end (bp)
## 1498 Query protein or transcript ID
## 1499 Last common ancestor with Green anole
## 1500 Green anole homology type
## 1501 %id. target Green anole gene identical to query gene
## 1502 %id. query gene identical to target Green anole gene
## 1503 Green anole Gene-order conservation score
## 1504 Green anole orthology confidence [0 low, 1 high]
## 1505 Guinea Pig gene stable ID
## 1506 Guinea Pig gene name
## 1507 Guinea Pig protein or transcript stable ID
## 1508 Guinea Pig chromosome/scaffold name
## 1509 Guinea Pig chromosome/scaffold start (bp)
## 1510 Guinea Pig chromosome/scaffold end (bp)
## 1511 Query protein or transcript ID
## 1512 Last common ancestor with Guinea Pig
## 1513 Guinea Pig homology type
## 1514 %id. target Guinea Pig gene identical to query gene
## 1515 %id. query gene identical to target Guinea Pig gene
## 1516 Guinea Pig Gene-order conservation score
## 1517 Guinea Pig Whole-genome alignment coverage
## 1518 Guinea Pig orthology confidence [0 low, 1 high]
## 1519 Guppy gene stable ID
## 1520 Guppy gene name
## 1521 Guppy protein or transcript stable ID
## 1522 Guppy chromosome/scaffold name
## 1523 Guppy chromosome/scaffold start (bp)
## 1524 Guppy chromosome/scaffold end (bp)
## 1525 Query protein or transcript ID
## 1526 Last common ancestor with Guppy
## 1527 Guppy homology type
## 1528 %id. target Guppy gene identical to query gene
## 1529 %id. query gene identical to target Guppy gene
## 1530 Guppy Gene-order conservation score
## 1531 Guppy Whole-genome alignment coverage
## 1532 Guppy orthology confidence [0 low, 1 high]
## 1533 Hagfish gene stable ID
## 1534 Hagfish gene name
## 1535 Hagfish protein or transcript stable ID
## 1536 Hagfish chromosome/scaffold name
## 1537 Hagfish chromosome/scaffold start (bp)
## 1538 Hagfish chromosome/scaffold end (bp)
## 1539 Query protein or transcript ID
## 1540 Last common ancestor with Hagfish
## 1541 Hagfish homology type
## 1542 %id. target Hagfish gene identical to query gene
## 1543 %id. query gene identical to target Hagfish gene
## 1544 Hagfish Whole-genome alignment coverage
## 1545 Hagfish orthology confidence [0 low, 1 high]
## 1546 Hedgehog gene stable ID
## 1547 Hedgehog gene name
## 1548 Hedgehog protein or transcript stable ID
## 1549 Hedgehog chromosome/scaffold name
## 1550 Hedgehog chromosome/scaffold start (bp)
## 1551 Hedgehog chromosome/scaffold end (bp)
## 1552 Query protein or transcript ID
## 1553 Last common ancestor with Hedgehog
## 1554 Hedgehog homology type
## 1555 %id. target Hedgehog gene identical to query gene
## 1556 %id. query gene identical to target Hedgehog gene
## 1557 Hedgehog Gene-order conservation score
## 1558 Hedgehog Whole-genome alignment coverage
## 1559 Hedgehog orthology confidence [0 low, 1 high]
## 1560 Horse gene stable ID
## 1561 Horse gene name
## 1562 Horse protein or transcript stable ID
## 1563 Horse chromosome/scaffold name
## 1564 Horse chromosome/scaffold start (bp)
## 1565 Horse chromosome/scaffold end (bp)
## 1566 Query protein or transcript ID
## 1567 Last common ancestor with Horse
## 1568 Horse homology type
## 1569 %id. target Horse gene identical to query gene
## 1570 %id. query gene identical to target Horse gene
## 1571 Horse Gene-order conservation score
## 1572 Horse Whole-genome alignment coverage
## 1573 Horse orthology confidence [0 low, 1 high]
## 1574 Huchen gene stable ID
## 1575 Huchen gene name
## 1576 Huchen protein or transcript stable ID
## 1577 Huchen chromosome/scaffold name
## 1578 Huchen chromosome/scaffold start (bp)
## 1579 Huchen chromosome/scaffold end (bp)
## 1580 Query protein or transcript ID
## 1581 Last common ancestor with Huchen
## 1582 Huchen homology type
## 1583 %id. target Huchen gene identical to query gene
## 1584 %id. query gene identical to target Huchen gene
## 1585 Huchen Gene-order conservation score
## 1586 Huchen Whole-genome alignment coverage
## 1587 Huchen orthology confidence [0 low, 1 high]
## 1588 Hybrid - Bos Indicus gene stable ID
## 1589 Hybrid - Bos Indicus gene name
## 1590 Hybrid - Bos Indicus protein or transcript stable ID
## 1591 Hybrid - Bos Indicus chromosome/scaffold name
## 1592 Hybrid - Bos Indicus chromosome/scaffold start (bp)
## 1593 Hybrid - Bos Indicus chromosome/scaffold end (bp)
## 1594 Query protein or transcript ID
## 1595 Last common ancestor with Hybrid - Bos Indicus
## 1596 Hybrid - Bos Indicus homology type
## 1597 %id. target Hybrid - Bos Indicus gene identical to query gene
## 1598 %id. query gene identical to target Hybrid - Bos Indicus gene
## 1599 Hybrid - Bos Indicus Gene-order conservation score
## 1600 Hybrid - Bos Indicus Whole-genome alignment coverage
## 1601 Hybrid - Bos Indicus orthology confidence [0 low, 1 high]
## 1602 Hyrax gene stable ID
## 1603 Hyrax gene name
## 1604 Hyrax protein or transcript stable ID
## 1605 Hyrax chromosome/scaffold name
## 1606 Hyrax chromosome/scaffold start (bp)
## 1607 Hyrax chromosome/scaffold end (bp)
## 1608 Query protein or transcript ID
## 1609 Last common ancestor with Hyrax
## 1610 Hyrax homology type
## 1611 %id. target Hyrax gene identical to query gene
## 1612 %id. query gene identical to target Hyrax gene
## 1613 Hyrax Gene-order conservation score
## 1614 Hyrax Whole-genome alignment coverage
## 1615 Hyrax orthology confidence [0 low, 1 high]
## 1616 Indian cobra gene stable ID
## 1617 Indian cobra gene name
## 1618 Indian cobra protein or transcript stable ID
## 1619 Indian cobra chromosome/scaffold name
## 1620 Indian cobra chromosome/scaffold start (bp)
## 1621 Indian cobra chromosome/scaffold end (bp)
## 1622 Query protein or transcript ID
## 1623 Last common ancestor with Indian cobra
## 1624 Indian cobra homology type
## 1625 %id. target Indian cobra gene identical to query gene
## 1626 %id. query gene identical to target Indian cobra gene
## 1627 Indian cobra Gene-order conservation score
## 1628 Indian cobra Whole-genome alignment coverage
## 1629 Indian cobra orthology confidence [0 low, 1 high]
## 1630 Indian medaka gene stable ID
## 1631 Indian medaka gene name
## 1632 Indian medaka protein or transcript stable ID
## 1633 Indian medaka chromosome/scaffold name
## 1634 Indian medaka chromosome/scaffold start (bp)
## 1635 Indian medaka chromosome/scaffold end (bp)
## 1636 Query protein or transcript ID
## 1637 Last common ancestor with Indian medaka
## 1638 Indian medaka homology type
## 1639 %id. target Indian medaka gene identical to query gene
## 1640 %id. query gene identical to target Indian medaka gene
## 1641 Indian medaka Gene-order conservation score
## 1642 Indian medaka Whole-genome alignment coverage
## 1643 Indian medaka orthology confidence [0 low, 1 high]
## 1644 Japanese medaka HdrR gene stable ID
## 1645 Japanese medaka HdrR gene name
## 1646 Japanese medaka HdrR protein or transcript stable ID
## 1647 Japanese medaka HdrR chromosome/scaffold name
## 1648 Japanese medaka HdrR chromosome/scaffold start (bp)
## 1649 Japanese medaka HdrR chromosome/scaffold end (bp)
## 1650 Query protein or transcript ID
## 1651 Last common ancestor with Japanese medaka HdrR
## 1652 Japanese medaka HdrR homology type
## 1653 %id. target Japanese medaka HdrR gene identical to query gene
## 1654 %id. query gene identical to target Japanese medaka HdrR gene
## 1655 Japanese medaka HdrR Gene-order conservation score
## 1656 Japanese medaka HdrR Whole-genome alignment coverage
## 1657 Japanese medaka HdrR orthology confidence [0 low, 1 high]
## 1658 Japanese quail gene stable ID
## 1659 Japanese quail gene name
## 1660 Japanese quail protein or transcript stable ID
## 1661 Japanese quail chromosome/scaffold name
## 1662 Japanese quail chromosome/scaffold start (bp)
## 1663 Japanese quail chromosome/scaffold end (bp)
## 1664 Query protein or transcript ID
## 1665 Last common ancestor with Japanese quail
## 1666 Japanese quail homology type
## 1667 %id. target Japanese quail gene identical to query gene
## 1668 %id. query gene identical to target Japanese quail gene
## 1669 Japanese quail Gene-order conservation score
## 1670 Japanese quail Whole-genome alignment coverage
## 1671 Japanese quail orthology confidence [0 low, 1 high]
## 1672 Javanese ricefish gene stable ID
## 1673 Javanese ricefish gene name
## 1674 Javanese ricefish protein or transcript stable ID
## 1675 Javanese ricefish chromosome/scaffold name
## 1676 Javanese ricefish chromosome/scaffold start (bp)
## 1677 Javanese ricefish chromosome/scaffold end (bp)
## 1678 Query protein or transcript ID
## 1679 Last common ancestor with Javanese ricefish
## 1680 Javanese ricefish homology type
## 1681 %id. target Javanese ricefish gene identical to query gene
## 1682 %id. query gene identical to target Javanese ricefish gene
## 1683 Javanese ricefish Gene-order conservation score
## 1684 Javanese ricefish Whole-genome alignment coverage
## 1685 Javanese ricefish orthology confidence [0 low, 1 high]
## 1686 Kakapo gene stable ID
## 1687 Kakapo gene name
## 1688 Kakapo protein or transcript stable ID
## 1689 Kakapo chromosome/scaffold name
## 1690 Kakapo chromosome/scaffold start (bp)
## 1691 Kakapo chromosome/scaffold end (bp)
## 1692 Query protein or transcript ID
## 1693 Last common ancestor with Kakapo
## 1694 Kakapo homology type
## 1695 %id. target Kakapo gene identical to query gene
## 1696 %id. query gene identical to target Kakapo gene
## 1697 Kakapo Gene-order conservation score
## 1698 Kakapo Whole-genome alignment coverage
## 1699 Kakapo orthology confidence [0 low, 1 high]
## 1700 Kangaroo rat gene stable ID
## 1701 Kangaroo rat gene name
## 1702 Kangaroo rat protein or transcript stable ID
## 1703 Kangaroo rat chromosome/scaffold name
## 1704 Kangaroo rat chromosome/scaffold start (bp)
## 1705 Kangaroo rat chromosome/scaffold end (bp)
## 1706 Query protein or transcript ID
## 1707 Last common ancestor with Kangaroo rat
## 1708 Kangaroo rat homology type
## 1709 %id. target Kangaroo rat gene identical to query gene
## 1710 %id. query gene identical to target Kangaroo rat gene
## 1711 Kangaroo rat Gene-order conservation score
## 1712 Kangaroo rat Whole-genome alignment coverage
## 1713 Kangaroo rat orthology confidence [0 low, 1 high]
## 1714 Koala gene stable ID
## 1715 Koala gene name
## 1716 Koala protein or transcript stable ID
## 1717 Koala chromosome/scaffold name
## 1718 Koala chromosome/scaffold start (bp)
## 1719 Koala chromosome/scaffold end (bp)
## 1720 Query protein or transcript ID
## 1721 Last common ancestor with Koala
## 1722 Koala homology type
## 1723 %id. target Koala gene identical to query gene
## 1724 %id. query gene identical to target Koala gene
## 1725 Koala Gene-order conservation score
## 1726 Koala Whole-genome alignment coverage
## 1727 Koala orthology confidence [0 low, 1 high]
## 1728 Lamprey gene stable ID
## 1729 Lamprey gene name
## 1730 Lamprey protein or transcript stable ID
## 1731 Lamprey chromosome/scaffold name
## 1732 Lamprey chromosome/scaffold start (bp)
## 1733 Lamprey chromosome/scaffold end (bp)
## 1734 Query protein or transcript ID
## 1735 Last common ancestor with Lamprey
## 1736 Lamprey homology type
## 1737 %id. target Lamprey gene identical to query gene
## 1738 %id. query gene identical to target Lamprey gene
## 1739 Lamprey Whole-genome alignment coverage
## 1740 Lamprey orthology confidence [0 low, 1 high]
## 1741 Large yellow croaker gene stable ID
## 1742 Large yellow croaker gene name
## 1743 Large yellow croaker protein or transcript stable ID
## 1744 Large yellow croaker chromosome/scaffold name
## 1745 Large yellow croaker chromosome/scaffold start (bp)
## 1746 Large yellow croaker chromosome/scaffold end (bp)
## 1747 Query protein or transcript ID
## 1748 Last common ancestor with Large yellow croaker
## 1749 Large yellow croaker homology type
## 1750 %id. target Large yellow croaker gene identical to query gene
## 1751 %id. query gene identical to target Large yellow croaker gene
## 1752 Large yellow croaker Gene-order conservation score
## 1753 Large yellow croaker Whole-genome alignment coverage
## 1754 Large yellow croaker orthology confidence [0 low, 1 high]
## 1755 Leishan spiny toad gene stable ID
## 1756 Leishan spiny toad gene name
## 1757 Leishan spiny toad protein or transcript stable ID
## 1758 Leishan spiny toad chromosome/scaffold name
## 1759 Leishan spiny toad chromosome/scaffold start (bp)
## 1760 Leishan spiny toad chromosome/scaffold end (bp)
## 1761 Query protein or transcript ID
## 1762 Last common ancestor with Leishan spiny toad
## 1763 Leishan spiny toad homology type
## 1764 %id. target Leishan spiny toad gene identical to query gene
## 1765 %id. query gene identical to target Leishan spiny toad gene
## 1766 Leishan spiny toad Gene-order conservation score
## 1767 Leishan spiny toad Whole-genome alignment coverage
## 1768 Leishan spiny toad orthology confidence [0 low, 1 high]
## 1769 Leopard gene stable ID
## 1770 Leopard gene name
## 1771 Leopard protein or transcript stable ID
## 1772 Leopard chromosome/scaffold name
## 1773 Leopard chromosome/scaffold start (bp)
## 1774 Leopard chromosome/scaffold end (bp)
## 1775 Query protein or transcript ID
## 1776 Last common ancestor with Leopard
## 1777 Leopard homology type
## 1778 %id. target Leopard gene identical to query gene
## 1779 %id. query gene identical to target Leopard gene
## 1780 Leopard Gene-order conservation score
## 1781 Leopard Whole-genome alignment coverage
## 1782 Leopard orthology confidence [0 low, 1 high]
## 1783 Lesser Egyptian jerboa gene stable ID
## 1784 Lesser Egyptian jerboa gene name
## 1785 Lesser Egyptian jerboa protein or transcript stable ID
## 1786 Lesser Egyptian jerboa chromosome/scaffold name
## 1787 Lesser Egyptian jerboa chromosome/scaffold start (bp)
## 1788 Lesser Egyptian jerboa chromosome/scaffold end (bp)
## 1789 Query protein or transcript ID
## 1790 Last common ancestor with Lesser Egyptian jerboa
## 1791 Lesser Egyptian jerboa homology type
## 1792 %id. target Lesser Egyptian jerboa gene identical to query gene
## 1793 %id. query gene identical to target Lesser Egyptian jerboa gene
## 1794 Lesser Egyptian jerboa Gene-order conservation score
## 1795 Lesser Egyptian jerboa Whole-genome alignment coverage
## 1796 Lesser Egyptian jerboa orthology confidence [0 low, 1 high]
## 1797 Lesser hedgehog tenrec gene stable ID
## 1798 Lesser hedgehog tenrec gene name
## 1799 Lesser hedgehog tenrec protein or transcript stable ID
## 1800 Lesser hedgehog tenrec chromosome/scaffold name
## 1801 Lesser hedgehog tenrec chromosome/scaffold start (bp)
## 1802 Lesser hedgehog tenrec chromosome/scaffold end (bp)
## 1803 Query protein or transcript ID
## 1804 Last common ancestor with Lesser hedgehog tenrec
## 1805 Lesser hedgehog tenrec homology type
## 1806 %id. target Lesser hedgehog tenrec gene identical to query gene
## 1807 %id. query gene identical to target Lesser hedgehog tenrec gene
## 1808 Lesser hedgehog tenrec Gene-order conservation score
## 1809 Lesser hedgehog tenrec Whole-genome alignment coverage
## 1810 Lesser hedgehog tenrec orthology confidence [0 low, 1 high]
## 1811 Lion gene stable ID
## 1812 Lion gene name
## 1813 Lion protein or transcript stable ID
## 1814 Lion chromosome/scaffold name
## 1815 Lion chromosome/scaffold start (bp)
## 1816 Lion chromosome/scaffold end (bp)
## 1817 Query protein or transcript ID
## 1818 Last common ancestor with Lion
## 1819 Lion homology type
## 1820 %id. target Lion gene identical to query gene
## 1821 %id. query gene identical to target Lion gene
## 1822 Lion Gene-order conservation score
## 1823 Lion Whole-genome alignment coverage
## 1824 Lion orthology confidence [0 low, 1 high]
## 1825 Long-tailed chinchilla gene stable ID
## 1826 Long-tailed chinchilla gene name
## 1827 Long-tailed chinchilla protein or transcript stable ID
## 1828 Long-tailed chinchilla chromosome/scaffold name
## 1829 Long-tailed chinchilla chromosome/scaffold start (bp)
## 1830 Long-tailed chinchilla chromosome/scaffold end (bp)
## 1831 Query protein or transcript ID
## 1832 Last common ancestor with Long-tailed chinchilla
## 1833 Long-tailed chinchilla homology type
## 1834 %id. target Long-tailed chinchilla gene identical to query gene
## 1835 %id. query gene identical to target Long-tailed chinchilla gene
## 1836 Long-tailed chinchilla Gene-order conservation score
## 1837 Long-tailed chinchilla Whole-genome alignment coverage
## 1838 Long-tailed chinchilla orthology confidence [0 low, 1 high]
## 1839 Lumpfish gene stable ID
## 1840 Lumpfish gene name
## 1841 Lumpfish protein or transcript stable ID
## 1842 Lumpfish chromosome/scaffold name
## 1843 Lumpfish chromosome/scaffold start (bp)
## 1844 Lumpfish chromosome/scaffold end (bp)
## 1845 Query protein or transcript ID
## 1846 Last common ancestor with Lumpfish
## 1847 Lumpfish homology type
## 1848 %id. target Lumpfish gene identical to query gene
## 1849 %id. query gene identical to target Lumpfish gene
## 1850 Lumpfish Gene-order conservation score
## 1851 Lumpfish Whole-genome alignment coverage
## 1852 Lumpfish orthology confidence [0 low, 1 high]
## 1853 Lyretail cichlid gene stable ID
## 1854 Lyretail cichlid gene name
## 1855 Lyretail cichlid protein or transcript stable ID
## 1856 Lyretail cichlid chromosome/scaffold name
## 1857 Lyretail cichlid chromosome/scaffold start (bp)
## 1858 Lyretail cichlid chromosome/scaffold end (bp)
## 1859 Query protein or transcript ID
## 1860 Last common ancestor with Lyretail cichlid
## 1861 Lyretail cichlid homology type
## 1862 %id. target Lyretail cichlid gene identical to query gene
## 1863 %id. query gene identical to target Lyretail cichlid gene
## 1864 Lyretail cichlid Gene-order conservation score
## 1865 Lyretail cichlid Whole-genome alignment coverage
## 1866 Lyretail cichlid orthology confidence [0 low, 1 high]
## 1867 Ma's night monkey gene stable ID
## 1868 Ma's night monkey gene name
## 1869 Ma's night monkey protein or transcript stable ID
## 1870 Ma's night monkey chromosome/scaffold name
## 1871 Ma's night monkey chromosome/scaffold start (bp)
## 1872 Ma's night monkey chromosome/scaffold end (bp)
## 1873 Query protein or transcript ID
## 1874 Last common ancestor with Ma's night monkey
## 1875 Ma's night monkey homology type
## 1876 %id. target Ma's night monkey gene identical to query gene
## 1877 %id. query gene identical to target Ma's night monkey gene
## 1878 Ma's night monkey Gene-order conservation score
## 1879 Ma's night monkey Whole-genome alignment coverage
## 1880 Ma's night monkey orthology confidence [0 low, 1 high]
## 1881 Macaque gene stable ID
## 1882 Macaque gene name
## 1883 Macaque protein or transcript stable ID
## 1884 Macaque chromosome/scaffold name
## 1885 Macaque chromosome/scaffold start (bp)
## 1886 Macaque chromosome/scaffold end (bp)
## 1887 Query protein or transcript ID
## 1888 Last common ancestor with Macaque
## 1889 Macaque homology type
## 1890 %id. target Macaque gene identical to query gene
## 1891 %id. query gene identical to target Macaque gene
## 1892 Macaque Gene-order conservation score
## 1893 Macaque Whole-genome alignment coverage
## 1894 Macaque orthology confidence [0 low, 1 high]
## 1895 Mainland tiger snake gene stable ID
## 1896 Mainland tiger snake gene name
## 1897 Mainland tiger snake protein or transcript stable ID
## 1898 Mainland tiger snake chromosome/scaffold name
## 1899 Mainland tiger snake chromosome/scaffold start (bp)
## 1900 Mainland tiger snake chromosome/scaffold end (bp)
## 1901 Query protein or transcript ID
## 1902 Last common ancestor with Mainland tiger snake
## 1903 Mainland tiger snake homology type
## 1904 %id. target Mainland tiger snake gene identical to query gene
## 1905 %id. query gene identical to target Mainland tiger snake gene
## 1906 Mainland tiger snake Gene-order conservation score
## 1907 Mainland tiger snake Whole-genome alignment coverage
## 1908 Mainland tiger snake orthology confidence [0 low, 1 high]
## 1909 Makobe Island cichlid gene stable ID
## 1910 Makobe Island cichlid gene name
## 1911 Makobe Island cichlid protein or transcript stable ID
## 1912 Makobe Island cichlid chromosome/scaffold name
## 1913 Makobe Island cichlid chromosome/scaffold start (bp)
## 1914 Makobe Island cichlid chromosome/scaffold end (bp)
## 1915 Query protein or transcript ID
## 1916 Last common ancestor with Makobe Island cichlid
## 1917 Makobe Island cichlid homology type
## 1918 %id. target Makobe Island cichlid gene identical to query gene
## 1919 %id. query gene identical to target Makobe Island cichlid gene
## 1920 Makobe Island cichlid Gene-order conservation score
## 1921 Makobe Island cichlid Whole-genome alignment coverage
## 1922 Makobe Island cichlid orthology confidence [0 low, 1 high]
## 1923 Mangrove rivulus gene stable ID
## 1924 Mangrove rivulus gene name
## 1925 Mangrove rivulus protein or transcript stable ID
## 1926 Mangrove rivulus chromosome/scaffold name
## 1927 Mangrove rivulus chromosome/scaffold start (bp)
## 1928 Mangrove rivulus chromosome/scaffold end (bp)
## 1929 Query protein or transcript ID
## 1930 Last common ancestor with Mangrove rivulus
## 1931 Mangrove rivulus homology type
## 1932 %id. target Mangrove rivulus gene identical to query gene
## 1933 %id. query gene identical to target Mangrove rivulus gene
## 1934 Mangrove rivulus Gene-order conservation score
## 1935 Mangrove rivulus Whole-genome alignment coverage
## 1936 Mangrove rivulus orthology confidence [0 low, 1 high]
## 1937 Medium ground-finch gene stable ID
## 1938 Medium ground-finch gene name
## 1939 Medium ground-finch protein or transcript stable ID
## 1940 Medium ground-finch chromosome/scaffold name
## 1941 Medium ground-finch chromosome/scaffold start (bp)
## 1942 Medium ground-finch chromosome/scaffold end (bp)
## 1943 Query protein or transcript ID
## 1944 Last common ancestor with Medium ground-finch
## 1945 Medium ground-finch homology type
## 1946 %id. target Medium ground-finch gene identical to query gene
## 1947 %id. query gene identical to target Medium ground-finch gene
## 1948 Medium ground-finch Gene-order conservation score
## 1949 Medium ground-finch Whole-genome alignment coverage
## 1950 Medium ground-finch orthology confidence [0 low, 1 high]
## 1951 Megabat gene stable ID
## 1952 Megabat gene name
## 1953 Megabat protein or transcript stable ID
## 1954 Megabat chromosome/scaffold name
## 1955 Megabat chromosome/scaffold start (bp)
## 1956 Megabat chromosome/scaffold end (bp)
## 1957 Query protein or transcript ID
## 1958 Last common ancestor with Megabat
## 1959 Megabat homology type
## 1960 %id. target Megabat gene identical to query gene
## 1961 %id. query gene identical to target Megabat gene
## 1962 Megabat Gene-order conservation score
## 1963 Megabat Whole-genome alignment coverage
## 1964 Megabat orthology confidence [0 low, 1 high]
## 1965 Mexican tetra gene stable ID
## 1966 Mexican tetra gene name
## 1967 Mexican tetra protein or transcript stable ID
## 1968 Mexican tetra chromosome/scaffold name
## 1969 Mexican tetra chromosome/scaffold start (bp)
## 1970 Mexican tetra chromosome/scaffold end (bp)
## 1971 Query protein or transcript ID
## 1972 Last common ancestor with Mexican tetra
## 1973 Mexican tetra homology type
## 1974 %id. target Mexican tetra gene identical to query gene
## 1975 %id. query gene identical to target Mexican tetra gene
## 1976 Mexican tetra Gene-order conservation score
## 1977 Mexican tetra Whole-genome alignment coverage
## 1978 Mexican tetra orthology confidence [0 low, 1 high]
## 1979 Microbat gene stable ID
## 1980 Microbat gene name
## 1981 Microbat protein or transcript stable ID
## 1982 Microbat chromosome/scaffold name
## 1983 Microbat chromosome/scaffold start (bp)
## 1984 Microbat chromosome/scaffold end (bp)
## 1985 Query protein or transcript ID
## 1986 Last common ancestor with Microbat
## 1987 Microbat homology type
## 1988 %id. target Microbat gene identical to query gene
## 1989 %id. query gene identical to target Microbat gene
## 1990 Microbat Gene-order conservation score
## 1991 Microbat Whole-genome alignment coverage
## 1992 Microbat orthology confidence [0 low, 1 high]
## 1993 Midas cichlid gene stable ID
## 1994 Midas cichlid gene name
## 1995 Midas cichlid protein or transcript stable ID
## 1996 Midas cichlid chromosome/scaffold name
## 1997 Midas cichlid chromosome/scaffold start (bp)
## 1998 Midas cichlid chromosome/scaffold end (bp)
## 1999 Query protein or transcript ID
## 2000 Last common ancestor with Midas cichlid
## 2001 Midas cichlid homology type
## 2002 %id. target Midas cichlid gene identical to query gene
## 2003 %id. query gene identical to target Midas cichlid gene
## 2004 Midas cichlid Gene-order conservation score
## 2005 Midas cichlid Whole-genome alignment coverage
## 2006 Midas cichlid orthology confidence [0 low, 1 high]
## 2007 Mouse gene stable ID
## 2008 Mouse gene name
## 2009 Mouse protein or transcript stable ID
## 2010 Mouse chromosome/scaffold name
## 2011 Mouse chromosome/scaffold start (bp)
## 2012 Mouse chromosome/scaffold end (bp)
## 2013 Query protein or transcript ID
## 2014 Last common ancestor with Mouse
## 2015 Mouse homology type
## 2016 %id. target Mouse gene identical to query gene
## 2017 %id. query gene identical to target Mouse gene
## 2018 Mouse Gene-order conservation score
## 2019 Mouse Whole-genome alignment coverage
## 2020 Mouse orthology confidence [0 low, 1 high]
## 2021 Mouse Lemur gene stable ID
## 2022 Mouse Lemur gene name
## 2023 Mouse Lemur protein or transcript stable ID
## 2024 Mouse Lemur chromosome/scaffold name
## 2025 Mouse Lemur chromosome/scaffold start (bp)
## 2026 Mouse Lemur chromosome/scaffold end (bp)
## 2027 Query protein or transcript ID
## 2028 Last common ancestor with Mouse Lemur
## 2029 Mouse Lemur homology type
## 2030 %id. target Mouse Lemur gene identical to query gene
## 2031 %id. query gene identical to target Mouse Lemur gene
## 2032 Mouse Lemur Gene-order conservation score
## 2033 Mouse Lemur Whole-genome alignment coverage
## 2034 Mouse Lemur orthology confidence [0 low, 1 high]
## 2035 Mummichog gene stable ID
## 2036 Mummichog gene name
## 2037 Mummichog protein or transcript stable ID
## 2038 Mummichog chromosome/scaffold name
## 2039 Mummichog chromosome/scaffold start (bp)
## 2040 Mummichog chromosome/scaffold end (bp)
## 2041 Query protein or transcript ID
## 2042 Last common ancestor with Mummichog
## 2043 Mummichog homology type
## 2044 %id. target Mummichog gene identical to query gene
## 2045 %id. query gene identical to target Mummichog gene
## 2046 Mummichog Gene-order conservation score
## 2047 Mummichog Whole-genome alignment coverage
## 2048 Mummichog orthology confidence [0 low, 1 high]
## 2049 Naked mole-rat female gene stable ID
## 2050 Naked mole-rat female gene name
## 2051 Naked mole-rat female protein or transcript stable ID
## 2052 Naked mole-rat female chromosome/scaffold name
## 2053 Naked mole-rat female chromosome/scaffold start (bp)
## 2054 Naked mole-rat female chromosome/scaffold end (bp)
## 2055 Query protein or transcript ID
## 2056 Last common ancestor with Naked mole-rat female
## 2057 Naked mole-rat female homology type
## 2058 %id. target Naked mole-rat female gene identical to query gene
## 2059 %id. query gene identical to target Naked mole-rat female gene
## 2060 Naked mole-rat female Gene-order conservation score
## 2061 Naked mole-rat female Whole-genome alignment coverage
## 2062 Naked mole-rat female orthology confidence [0 low, 1 high]
## 2063 Narwhal gene stable ID
## 2064 Narwhal gene name
## 2065 Narwhal protein or transcript stable ID
## 2066 Narwhal chromosome/scaffold name
## 2067 Narwhal chromosome/scaffold start (bp)
## 2068 Narwhal chromosome/scaffold end (bp)
## 2069 Query protein or transcript ID
## 2070 Last common ancestor with Narwhal
## 2071 Narwhal homology type
## 2072 %id. target Narwhal gene identical to query gene
## 2073 %id. query gene identical to target Narwhal gene
## 2074 Narwhal Gene-order conservation score
## 2075 Narwhal Whole-genome alignment coverage
## 2076 Narwhal orthology confidence [0 low, 1 high]
## 2077 Nile tilapia gene stable ID
## 2078 Nile tilapia gene name
## 2079 Nile tilapia protein or transcript stable ID
## 2080 Nile tilapia chromosome/scaffold name
## 2081 Nile tilapia chromosome/scaffold start (bp)
## 2082 Nile tilapia chromosome/scaffold end (bp)
## 2083 Query protein or transcript ID
## 2084 Last common ancestor with Nile tilapia
## 2085 Nile tilapia homology type
## 2086 %id. target Nile tilapia gene identical to query gene
## 2087 %id. query gene identical to target Nile tilapia gene
## 2088 Nile tilapia Gene-order conservation score
## 2089 Nile tilapia Whole-genome alignment coverage
## 2090 Nile tilapia orthology confidence [0 low, 1 high]
## 2091 Northern American deer mouse gene stable ID
## 2092 Northern American deer mouse gene name
## 2093 Northern American deer mouse protein or transcript stable ID
## 2094 Northern American deer mouse chromosome/scaffold name
## 2095 Northern American deer mouse chromosome/scaffold start (bp)
## 2096 Northern American deer mouse chromosome/scaffold end (bp)
## 2097 Query protein or transcript ID
## 2098 Last common ancestor with Northern American deer mouse
## 2099 Northern American deer mouse homology type
## 2100 %id. target Northern American deer mouse gene identical to query gene
## 2101 %id. query gene identical to target Northern American deer mouse gene
## 2102 Northern American deer mouse Gene-order conservation score
## 2103 Northern American deer mouse Whole-genome alignment coverage
## 2104 Northern American deer mouse orthology confidence [0 low, 1 high]
## 2105 Northern pike gene stable ID
## 2106 Northern pike gene name
## 2107 Northern pike protein or transcript stable ID
## 2108 Northern pike chromosome/scaffold name
## 2109 Northern pike chromosome/scaffold start (bp)
## 2110 Northern pike chromosome/scaffold end (bp)
## 2111 Query protein or transcript ID
## 2112 Last common ancestor with Northern pike
## 2113 Northern pike homology type
## 2114 %id. target Northern pike gene identical to query gene
## 2115 %id. query gene identical to target Northern pike gene
## 2116 Northern pike Gene-order conservation score
## 2117 Northern pike Whole-genome alignment coverage
## 2118 Northern pike orthology confidence [0 low, 1 high]
## 2119 Olive baboon gene stable ID
## 2120 Olive baboon gene name
## 2121 Olive baboon protein or transcript stable ID
## 2122 Olive baboon chromosome/scaffold name
## 2123 Olive baboon chromosome/scaffold start (bp)
## 2124 Olive baboon chromosome/scaffold end (bp)
## 2125 Query protein or transcript ID
## 2126 Last common ancestor with Olive baboon
## 2127 Olive baboon homology type
## 2128 %id. target Olive baboon gene identical to query gene
## 2129 %id. query gene identical to target Olive baboon gene
## 2130 Olive baboon Gene-order conservation score
## 2131 Olive baboon Whole-genome alignment coverage
## 2132 Olive baboon orthology confidence [0 low, 1 high]
## 2133 Opossum gene stable ID
## 2134 Opossum gene name
## 2135 Opossum protein or transcript stable ID
## 2136 Opossum chromosome/scaffold name
## 2137 Opossum chromosome/scaffold start (bp)
## 2138 Opossum chromosome/scaffold end (bp)
## 2139 Query protein or transcript ID
## 2140 Last common ancestor with Opossum
## 2141 Opossum homology type
## 2142 %id. target Opossum gene identical to query gene
## 2143 %id. query gene identical to target Opossum gene
## 2144 Opossum Gene-order conservation score
## 2145 Opossum Whole-genome alignment coverage
## 2146 Opossum orthology confidence [0 low, 1 high]
## 2147 Orange clownfish gene stable ID
## 2148 Orange clownfish gene name
## 2149 Orange clownfish protein or transcript stable ID
## 2150 Orange clownfish chromosome/scaffold name
## 2151 Orange clownfish chromosome/scaffold start (bp)
## 2152 Orange clownfish chromosome/scaffold end (bp)
## 2153 Query protein or transcript ID
## 2154 Last common ancestor with Orange clownfish
## 2155 Orange clownfish homology type
## 2156 %id. target Orange clownfish gene identical to query gene
## 2157 %id. query gene identical to target Orange clownfish gene
## 2158 Orange clownfish Gene-order conservation score
## 2159 Orange clownfish Whole-genome alignment coverage
## 2160 Orange clownfish orthology confidence [0 low, 1 high]
## 2161 Painted turtle gene stable ID
## 2162 Painted turtle gene name
## 2163 Painted turtle protein or transcript stable ID
## 2164 Painted turtle chromosome/scaffold name
## 2165 Painted turtle chromosome/scaffold start (bp)
## 2166 Painted turtle chromosome/scaffold end (bp)
## 2167 Query protein or transcript ID
## 2168 Last common ancestor with Painted turtle
## 2169 Painted turtle homology type
## 2170 %id. target Painted turtle gene identical to query gene
## 2171 %id. query gene identical to target Painted turtle gene
## 2172 Painted turtle Gene-order conservation score
## 2173 Painted turtle Whole-genome alignment coverage
## 2174 Painted turtle orthology confidence [0 low, 1 high]
## 2175 Paramormyrops kingsleyae gene stable ID
## 2176 Paramormyrops kingsleyae gene name
## 2177 Paramormyrops kingsleyae protein or transcript stable ID
## 2178 Paramormyrops kingsleyae chromosome/scaffold name
## 2179 Paramormyrops kingsleyae chromosome/scaffold start (bp)
## 2180 Paramormyrops kingsleyae chromosome/scaffold end (bp)
## 2181 Query protein or transcript ID
## 2182 Last common ancestor with Paramormyrops kingsleyae
## 2183 Paramormyrops kingsleyae homology type
## 2184 %id. target Paramormyrops kingsleyae gene identical to query gene
## 2185 %id. query gene identical to target Paramormyrops kingsleyae gene
## 2186 Paramormyrops kingsleyae Gene-order conservation score
## 2187 Paramormyrops kingsleyae Whole-genome alignment coverage
## 2188 Paramormyrops kingsleyae orthology confidence [0 low, 1 high]
## 2189 Pig gene stable ID
## 2190 Pig gene name
## 2191 Pig protein or transcript stable ID
## 2192 Pig chromosome/scaffold name
## 2193 Pig chromosome/scaffold start (bp)
## 2194 Pig chromosome/scaffold end (bp)
## 2195 Query protein or transcript ID
## 2196 Last common ancestor with Pig
## 2197 Pig homology type
## 2198 %id. target Pig gene identical to query gene
## 2199 %id. query gene identical to target Pig gene
## 2200 Pig Gene-order conservation score
## 2201 Pig Whole-genome alignment coverage
## 2202 Pig orthology confidence [0 low, 1 high]
## 2203 Pig-tailed macaque gene stable ID
## 2204 Pig-tailed macaque gene name
## 2205 Pig-tailed macaque protein or transcript stable ID
## 2206 Pig-tailed macaque chromosome/scaffold name
## 2207 Pig-tailed macaque chromosome/scaffold start (bp)
## 2208 Pig-tailed macaque chromosome/scaffold end (bp)
## 2209 Query protein or transcript ID
## 2210 Last common ancestor with Pig-tailed macaque
## 2211 Pig-tailed macaque homology type
## 2212 %id. target Pig-tailed macaque gene identical to query gene
## 2213 %id. query gene identical to target Pig-tailed macaque gene
## 2214 Pig-tailed macaque Gene-order conservation score
## 2215 Pig-tailed macaque Whole-genome alignment coverage
## 2216 Pig-tailed macaque orthology confidence [0 low, 1 high]
## 2217 Pika gene stable ID
## 2218 Pika gene name
## 2219 Pika protein or transcript stable ID
## 2220 Pika chromosome/scaffold name
## 2221 Pika chromosome/scaffold start (bp)
## 2222 Pika chromosome/scaffold end (bp)
## 2223 Query protein or transcript ID
## 2224 Last common ancestor with Pika
## 2225 Pika homology type
## 2226 %id. target Pika gene identical to query gene
## 2227 %id. query gene identical to target Pika gene
## 2228 Pika Gene-order conservation score
## 2229 Pika Whole-genome alignment coverage
## 2230 Pika orthology confidence [0 low, 1 high]
## 2231 Pike-perch gene stable ID
## 2232 Pike-perch gene name
## 2233 Pike-perch protein or transcript stable ID
## 2234 Pike-perch chromosome/scaffold name
## 2235 Pike-perch chromosome/scaffold start (bp)
## 2236 Pike-perch chromosome/scaffold end (bp)
## 2237 Query protein or transcript ID
## 2238 Last common ancestor with Pike-perch
## 2239 Pike-perch homology type
## 2240 %id. target Pike-perch gene identical to query gene
## 2241 %id. query gene identical to target Pike-perch gene
## 2242 Pike-perch Gene-order conservation score
## 2243 Pike-perch Whole-genome alignment coverage
## 2244 Pike-perch orthology confidence [0 low, 1 high]
## 2245 Pinecone soldierfish gene stable ID
## 2246 Pinecone soldierfish gene name
## 2247 Pinecone soldierfish protein or transcript stable ID
## 2248 Pinecone soldierfish chromosome/scaffold name
## 2249 Pinecone soldierfish chromosome/scaffold start (bp)
## 2250 Pinecone soldierfish chromosome/scaffold end (bp)
## 2251 Query protein or transcript ID
## 2252 Last common ancestor with Pinecone soldierfish
## 2253 Pinecone soldierfish homology type
## 2254 %id. target Pinecone soldierfish gene identical to query gene
## 2255 %id. query gene identical to target Pinecone soldierfish gene
## 2256 Pinecone soldierfish Gene-order conservation score
## 2257 Pinecone soldierfish Whole-genome alignment coverage
## 2258 Pinecone soldierfish orthology confidence [0 low, 1 high]
## 2259 Pink-footed goose gene stable ID
## 2260 Pink-footed goose gene name
## 2261 Pink-footed goose protein or transcript stable ID
## 2262 Pink-footed goose chromosome/scaffold name
## 2263 Pink-footed goose chromosome/scaffold start (bp)
## 2264 Pink-footed goose chromosome/scaffold end (bp)
## 2265 Query protein or transcript ID
## 2266 Last common ancestor with Pink-footed goose
## 2267 Pink-footed goose homology type
## 2268 %id. target Pink-footed goose gene identical to query gene
## 2269 %id. query gene identical to target Pink-footed goose gene
## 2270 Pink-footed goose Gene-order conservation score
## 2271 Pink-footed goose Whole-genome alignment coverage
## 2272 Pink-footed goose orthology confidence [0 low, 1 high]
## 2273 Platyfish gene stable ID
## 2274 Platyfish gene name
## 2275 Platyfish protein or transcript stable ID
## 2276 Platyfish chromosome/scaffold name
## 2277 Platyfish chromosome/scaffold start (bp)
## 2278 Platyfish chromosome/scaffold end (bp)
## 2279 Query protein or transcript ID
## 2280 Last common ancestor with Platyfish
## 2281 Platyfish homology type
## 2282 %id. target Platyfish gene identical to query gene
## 2283 %id. query gene identical to target Platyfish gene
## 2284 Platyfish Gene-order conservation score
## 2285 Platyfish Whole-genome alignment coverage
## 2286 Platyfish orthology confidence [0 low, 1 high]
## 2287 Platypus gene stable ID
## 2288 Platypus gene name
## 2289 Platypus protein or transcript stable ID
## 2290 Platypus chromosome/scaffold name
## 2291 Platypus chromosome/scaffold start (bp)
## 2292 Platypus chromosome/scaffold end (bp)
## 2293 Query protein or transcript ID
## 2294 Last common ancestor with Platypus
## 2295 Platypus homology type
## 2296 %id. target Platypus gene identical to query gene
## 2297 %id. query gene identical to target Platypus gene
## 2298 Platypus Gene-order conservation score
## 2299 Platypus Whole-genome alignment coverage
## 2300 Platypus orthology confidence [0 low, 1 high]
## 2301 Polar bear gene stable ID
## 2302 Polar bear gene name
## 2303 Polar bear protein or transcript stable ID
## 2304 Polar bear chromosome/scaffold name
## 2305 Polar bear chromosome/scaffold start (bp)
## 2306 Polar bear chromosome/scaffold end (bp)
## 2307 Query protein or transcript ID
## 2308 Last common ancestor with Polar bear
## 2309 Polar bear homology type
## 2310 %id. target Polar bear gene identical to query gene
## 2311 %id. query gene identical to target Polar bear gene
## 2312 Polar bear Gene-order conservation score
## 2313 Polar bear Whole-genome alignment coverage
## 2314 Polar bear orthology confidence [0 low, 1 high]
## 2315 Prairie vole gene stable ID
## 2316 Prairie vole gene name
## 2317 Prairie vole protein or transcript stable ID
## 2318 Prairie vole chromosome/scaffold name
## 2319 Prairie vole chromosome/scaffold start (bp)
## 2320 Prairie vole chromosome/scaffold end (bp)
## 2321 Query protein or transcript ID
## 2322 Last common ancestor with Prairie vole
## 2323 Prairie vole homology type
## 2324 %id. target Prairie vole gene identical to query gene
## 2325 %id. query gene identical to target Prairie vole gene
## 2326 Prairie vole Gene-order conservation score
## 2327 Prairie vole Whole-genome alignment coverage
## 2328 Prairie vole orthology confidence [0 low, 1 high]
## 2329 Rabbit gene stable ID
## 2330 Rabbit gene name
## 2331 Rabbit protein or transcript stable ID
## 2332 Rabbit chromosome/scaffold name
## 2333 Rabbit chromosome/scaffold start (bp)
## 2334 Rabbit chromosome/scaffold end (bp)
## 2335 Query protein or transcript ID
## 2336 Last common ancestor with Rabbit
## 2337 Rabbit homology type
## 2338 %id. target Rabbit gene identical to query gene
## 2339 %id. query gene identical to target Rabbit gene
## 2340 Rabbit Gene-order conservation score
## 2341 Rabbit Whole-genome alignment coverage
## 2342 Rabbit orthology confidence [0 low, 1 high]
## 2343 Rainbow trout gene stable ID
## 2344 Rainbow trout gene name
## 2345 Rainbow trout protein or transcript stable ID
## 2346 Rainbow trout chromosome/scaffold name
## 2347 Rainbow trout chromosome/scaffold start (bp)
## 2348 Rainbow trout chromosome/scaffold end (bp)
## 2349 Query protein or transcript ID
## 2350 Last common ancestor with Rainbow trout
## 2351 Rainbow trout homology type
## 2352 %id. target Rainbow trout gene identical to query gene
## 2353 %id. query gene identical to target Rainbow trout gene
## 2354 Rainbow trout Gene-order conservation score
## 2355 Rainbow trout orthology confidence [0 low, 1 high]
## 2356 Rat gene stable ID
## 2357 Rat gene name
## 2358 Rat protein or transcript stable ID
## 2359 Rat chromosome/scaffold name
## 2360 Rat chromosome/scaffold start (bp)
## 2361 Rat chromosome/scaffold end (bp)
## 2362 Query protein or transcript ID
## 2363 Last common ancestor with Rat
## 2364 Rat homology type
## 2365 %id. target Rat gene identical to query gene
## 2366 %id. query gene identical to target Rat gene
## 2367 Rat Gene-order conservation score
## 2368 Rat Whole-genome alignment coverage
## 2369 Rat orthology confidence [0 low, 1 high]
## 2370 Red fox gene stable ID
## 2371 Red fox gene name
## 2372 Red fox protein or transcript stable ID
## 2373 Red fox chromosome/scaffold name
## 2374 Red fox chromosome/scaffold start (bp)
## 2375 Red fox chromosome/scaffold end (bp)
## 2376 Query protein or transcript ID
## 2377 Last common ancestor with Red fox
## 2378 Red fox homology type
## 2379 %id. target Red fox gene identical to query gene
## 2380 %id. query gene identical to target Red fox gene
## 2381 Red fox Gene-order conservation score
## 2382 Red fox Whole-genome alignment coverage
## 2383 Red fox orthology confidence [0 low, 1 high]
## 2384 Red-bellied piranha gene stable ID
## 2385 Red-bellied piranha gene name
## 2386 Red-bellied piranha protein or transcript stable ID
## 2387 Red-bellied piranha chromosome/scaffold name
## 2388 Red-bellied piranha chromosome/scaffold start (bp)
## 2389 Red-bellied piranha chromosome/scaffold end (bp)
## 2390 Query protein or transcript ID
## 2391 Last common ancestor with Red-bellied piranha
## 2392 Red-bellied piranha homology type
## 2393 %id. target Red-bellied piranha gene identical to query gene
## 2394 %id. query gene identical to target Red-bellied piranha gene
## 2395 Red-bellied piranha Gene-order conservation score
## 2396 Red-bellied piranha Whole-genome alignment coverage
## 2397 Red-bellied piranha orthology confidence [0 low, 1 high]
## 2398 Reedfish gene stable ID
## 2399 Reedfish gene name
## 2400 Reedfish protein or transcript stable ID
## 2401 Reedfish chromosome/scaffold name
## 2402 Reedfish chromosome/scaffold start (bp)
## 2403 Reedfish chromosome/scaffold end (bp)
## 2404 Query protein or transcript ID
## 2405 Last common ancestor with Reedfish
## 2406 Reedfish homology type
## 2407 %id. target Reedfish gene identical to query gene
## 2408 %id. query gene identical to target Reedfish gene
## 2409 Reedfish Gene-order conservation score
## 2410 Reedfish Whole-genome alignment coverage
## 2411 Reedfish orthology confidence [0 low, 1 high]
## 2412 Ryukyu mouse gene stable ID
## 2413 Ryukyu mouse gene name
## 2414 Ryukyu mouse protein or transcript stable ID
## 2415 Ryukyu mouse chromosome/scaffold name
## 2416 Ryukyu mouse chromosome/scaffold start (bp)
## 2417 Ryukyu mouse chromosome/scaffold end (bp)
## 2418 Query protein or transcript ID
## 2419 Last common ancestor with Ryukyu mouse
## 2420 Ryukyu mouse homology type
## 2421 %id. target Ryukyu mouse gene identical to query gene
## 2422 %id. query gene identical to target Ryukyu mouse gene
## 2423 Ryukyu mouse Gene-order conservation score
## 2424 Ryukyu mouse Whole-genome alignment coverage
## 2425 Ryukyu mouse orthology confidence [0 low, 1 high]
## 2426 Saccharomyces cerevisiae gene stable ID
## 2427 Saccharomyces cerevisiae gene name
## 2428 Saccharomyces cerevisiae protein or transcript stable ID
## 2429 Saccharomyces cerevisiae chromosome/scaffold name
## 2430 Saccharomyces cerevisiae chromosome/scaffold start (bp)
## 2431 Saccharomyces cerevisiae chromosome/scaffold end (bp)
## 2432 Query protein or transcript ID
## 2433 Last common ancestor with Saccharomyces cerevisiae
## 2434 Saccharomyces cerevisiae homology type
## 2435 %id. target Saccharomyces cerevisiae gene identical to query gene
## 2436 %id. query gene identical to target Saccharomyces cerevisiae gene
## 2437 Saccharomyces cerevisiae orthology confidence [0 low, 1 high]
## 2438 Sailfin molly gene stable ID
## 2439 Sailfin molly gene name
## 2440 Sailfin molly protein or transcript stable ID
## 2441 Sailfin molly chromosome/scaffold name
## 2442 Sailfin molly chromosome/scaffold start (bp)
## 2443 Sailfin molly chromosome/scaffold end (bp)
## 2444 Query protein or transcript ID
## 2445 Last common ancestor with Sailfin molly
## 2446 Sailfin molly homology type
## 2447 %id. target Sailfin molly gene identical to query gene
## 2448 %id. query gene identical to target Sailfin molly gene
## 2449 Sailfin molly Gene-order conservation score
## 2450 Sailfin molly Whole-genome alignment coverage
## 2451 Sailfin molly orthology confidence [0 low, 1 high]
## 2452 Sheep gene stable ID
## 2453 Sheep gene name
## 2454 Sheep protein or transcript stable ID
## 2455 Sheep chromosome/scaffold name
## 2456 Sheep chromosome/scaffold start (bp)
## 2457 Sheep chromosome/scaffold end (bp)
## 2458 Query protein or transcript ID
## 2459 Last common ancestor with Sheep
## 2460 Sheep homology type
## 2461 %id. target Sheep gene identical to query gene
## 2462 %id. query gene identical to target Sheep gene
## 2463 Sheep Gene-order conservation score
## 2464 Sheep Whole-genome alignment coverage
## 2465 Sheep orthology confidence [0 low, 1 high]
## 2466 Sheepshead minnow gene stable ID
## 2467 Sheepshead minnow gene name
## 2468 Sheepshead minnow protein or transcript stable ID
## 2469 Sheepshead minnow chromosome/scaffold name
## 2470 Sheepshead minnow chromosome/scaffold start (bp)
## 2471 Sheepshead minnow chromosome/scaffold end (bp)
## 2472 Query protein or transcript ID
## 2473 Last common ancestor with Sheepshead minnow
## 2474 Sheepshead minnow homology type
## 2475 %id. target Sheepshead minnow gene identical to query gene
## 2476 %id. query gene identical to target Sheepshead minnow gene
## 2477 Sheepshead minnow Gene-order conservation score
## 2478 Sheepshead minnow Whole-genome alignment coverage
## 2479 Sheepshead minnow orthology confidence [0 low, 1 high]
## 2480 Shrew gene stable ID
## 2481 Shrew gene name
## 2482 Shrew protein or transcript stable ID
## 2483 Shrew chromosome/scaffold name
## 2484 Shrew chromosome/scaffold start (bp)
## 2485 Shrew chromosome/scaffold end (bp)
## 2486 Query protein or transcript ID
## 2487 Last common ancestor with Shrew
## 2488 Shrew homology type
## 2489 %id. target Shrew gene identical to query gene
## 2490 %id. query gene identical to target Shrew gene
## 2491 Shrew Gene-order conservation score
## 2492 Shrew Whole-genome alignment coverage
## 2493 Shrew orthology confidence [0 low, 1 high]
## 2494 Shrew mouse gene stable ID
## 2495 Shrew mouse gene name
## 2496 Shrew mouse protein or transcript stable ID
## 2497 Shrew mouse chromosome/scaffold name
## 2498 Shrew mouse chromosome/scaffold start (bp)
## 2499 Shrew mouse chromosome/scaffold end (bp)
## 2500 Query protein or transcript ID
## 2501 Last common ancestor with Shrew mouse
## 2502 Shrew mouse homology type
## 2503 %id. target Shrew mouse gene identical to query gene
## 2504 %id. query gene identical to target Shrew mouse gene
## 2505 Shrew mouse Gene-order conservation score
## 2506 Shrew mouse Whole-genome alignment coverage
## 2507 Shrew mouse orthology confidence [0 low, 1 high]
## 2508 Siamese fighting fish gene stable ID
## 2509 Siamese fighting fish gene name
## 2510 Siamese fighting fish protein or transcript stable ID
## 2511 Siamese fighting fish chromosome/scaffold name
## 2512 Siamese fighting fish chromosome/scaffold start (bp)
## 2513 Siamese fighting fish chromosome/scaffold end (bp)
## 2514 Query protein or transcript ID
## 2515 Last common ancestor with Siamese fighting fish
## 2516 Siamese fighting fish homology type
## 2517 %id. target Siamese fighting fish gene identical to query gene
## 2518 %id. query gene identical to target Siamese fighting fish gene
## 2519 Siamese fighting fish Gene-order conservation score
## 2520 Siamese fighting fish Whole-genome alignment coverage
## 2521 Siamese fighting fish orthology confidence [0 low, 1 high]
## 2522 Siberian musk deer gene stable ID
## 2523 Siberian musk deer gene name
## 2524 Siberian musk deer protein or transcript stable ID
## 2525 Siberian musk deer chromosome/scaffold name
## 2526 Siberian musk deer chromosome/scaffold start (bp)
## 2527 Siberian musk deer chromosome/scaffold end (bp)
## 2528 Query protein or transcript ID
## 2529 Last common ancestor with Siberian musk deer
## 2530 Siberian musk deer homology type
## 2531 %id. target Siberian musk deer gene identical to query gene
## 2532 %id. query gene identical to target Siberian musk deer gene
## 2533 Siberian musk deer Gene-order conservation score
## 2534 Siberian musk deer Whole-genome alignment coverage
## 2535 Siberian musk deer orthology confidence [0 low, 1 high]
## 2536 Sloth gene stable ID
## 2537 Sloth gene name
## 2538 Sloth protein or transcript stable ID
## 2539 Sloth chromosome/scaffold name
## 2540 Sloth chromosome/scaffold start (bp)
## 2541 Sloth chromosome/scaffold end (bp)
## 2542 Query protein or transcript ID
## 2543 Last common ancestor with Sloth
## 2544 Sloth homology type
## 2545 %id. target Sloth gene identical to query gene
## 2546 %id. query gene identical to target Sloth gene
## 2547 Sloth Gene-order conservation score
## 2548 Sloth Whole-genome alignment coverage
## 2549 Sloth orthology confidence [0 low, 1 high]
## 2550 Sooty mangabey gene stable ID
## 2551 Sooty mangabey gene name
## 2552 Sooty mangabey protein or transcript stable ID
## 2553 Sooty mangabey chromosome/scaffold name
## 2554 Sooty mangabey chromosome/scaffold start (bp)
## 2555 Sooty mangabey chromosome/scaffold end (bp)
## 2556 Query protein or transcript ID
## 2557 Last common ancestor with Sooty mangabey
## 2558 Sooty mangabey homology type
## 2559 %id. target Sooty mangabey gene identical to query gene
## 2560 %id. query gene identical to target Sooty mangabey gene
## 2561 Sooty mangabey Gene-order conservation score
## 2562 Sooty mangabey Whole-genome alignment coverage
## 2563 Sooty mangabey orthology confidence [0 low, 1 high]
## 2564 Sperm whale gene stable ID
## 2565 Sperm whale gene name
## 2566 Sperm whale protein or transcript stable ID
## 2567 Sperm whale chromosome/scaffold name
## 2568 Sperm whale chromosome/scaffold start (bp)
## 2569 Sperm whale chromosome/scaffold end (bp)
## 2570 Query protein or transcript ID
## 2571 Last common ancestor with Sperm whale
## 2572 Sperm whale homology type
## 2573 %id. target Sperm whale gene identical to query gene
## 2574 %id. query gene identical to target Sperm whale gene
## 2575 Sperm whale Gene-order conservation score
## 2576 Sperm whale Whole-genome alignment coverage
## 2577 Sperm whale orthology confidence [0 low, 1 high]
## 2578 Spiny chromis gene stable ID
## 2579 Spiny chromis gene name
## 2580 Spiny chromis protein or transcript stable ID
## 2581 Spiny chromis chromosome/scaffold name
## 2582 Spiny chromis chromosome/scaffold start (bp)
## 2583 Spiny chromis chromosome/scaffold end (bp)
## 2584 Query protein or transcript ID
## 2585 Last common ancestor with Spiny chromis
## 2586 Spiny chromis homology type
## 2587 %id. target Spiny chromis gene identical to query gene
## 2588 %id. query gene identical to target Spiny chromis gene
## 2589 Spiny chromis Gene-order conservation score
## 2590 Spiny chromis Whole-genome alignment coverage
## 2591 Spiny chromis orthology confidence [0 low, 1 high]
## 2592 Spotted gar gene stable ID
## 2593 Spotted gar gene name
## 2594 Spotted gar protein or transcript stable ID
## 2595 Spotted gar chromosome/scaffold name
## 2596 Spotted gar chromosome/scaffold start (bp)
## 2597 Spotted gar chromosome/scaffold end (bp)
## 2598 Query protein or transcript ID
## 2599 Last common ancestor with Spotted gar
## 2600 Spotted gar homology type
## 2601 %id. target Spotted gar gene identical to query gene
## 2602 %id. query gene identical to target Spotted gar gene
## 2603 Spotted gar Gene-order conservation score
## 2604 Spotted gar Whole-genome alignment coverage
## 2605 Spotted gar orthology confidence [0 low, 1 high]
## 2606 Squirrel gene stable ID
## 2607 Squirrel gene name
## 2608 Squirrel protein or transcript stable ID
## 2609 Squirrel chromosome/scaffold name
## 2610 Squirrel chromosome/scaffold start (bp)
## 2611 Squirrel chromosome/scaffold end (bp)
## 2612 Query protein or transcript ID
## 2613 Last common ancestor with Squirrel
## 2614 Squirrel homology type
## 2615 %id. target Squirrel gene identical to query gene
## 2616 %id. query gene identical to target Squirrel gene
## 2617 Squirrel Gene-order conservation score
## 2618 Squirrel Whole-genome alignment coverage
## 2619 Squirrel orthology confidence [0 low, 1 high]
## 2620 Steppe mouse gene stable ID
## 2621 Steppe mouse gene name
## 2622 Steppe mouse protein or transcript stable ID
## 2623 Steppe mouse chromosome/scaffold name
## 2624 Steppe mouse chromosome/scaffold start (bp)
## 2625 Steppe mouse chromosome/scaffold end (bp)
## 2626 Query protein or transcript ID
## 2627 Last common ancestor with Steppe mouse
## 2628 Steppe mouse homology type
## 2629 %id. target Steppe mouse gene identical to query gene
## 2630 %id. query gene identical to target Steppe mouse gene
## 2631 Steppe mouse Gene-order conservation score
## 2632 Steppe mouse Whole-genome alignment coverage
## 2633 Steppe mouse orthology confidence [0 low, 1 high]
## 2634 Stickleback gene stable ID
## 2635 Stickleback gene name
## 2636 Stickleback protein or transcript stable ID
## 2637 Stickleback chromosome/scaffold name
## 2638 Stickleback chromosome/scaffold start (bp)
## 2639 Stickleback chromosome/scaffold end (bp)
## 2640 Query protein or transcript ID
## 2641 Last common ancestor with Stickleback
## 2642 Stickleback homology type
## 2643 %id. target Stickleback gene identical to query gene
## 2644 %id. query gene identical to target Stickleback gene
## 2645 Stickleback Gene-order conservation score
## 2646 Stickleback Whole-genome alignment coverage
## 2647 Stickleback orthology confidence [0 low, 1 high]
## 2648 Sumatran orangutan gene stable ID
## 2649 Sumatran orangutan gene name
## 2650 Sumatran orangutan protein or transcript stable ID
## 2651 Sumatran orangutan chromosome/scaffold name
## 2652 Sumatran orangutan chromosome/scaffold start (bp)
## 2653 Sumatran orangutan chromosome/scaffold end (bp)
## 2654 Query protein or transcript ID
## 2655 Last common ancestor with Sumatran orangutan
## 2656 Sumatran orangutan homology type
## 2657 %id. target Sumatran orangutan gene identical to query gene
## 2658 %id. query gene identical to target Sumatran orangutan gene
## 2659 Sumatran orangutan Gene-order conservation score
## 2660 Sumatran orangutan Whole-genome alignment coverage
## 2661 Sumatran orangutan orthology confidence [0 low, 1 high]
## 2662 Tarsier gene stable ID
## 2663 Tarsier gene name
## 2664 Tarsier protein or transcript stable ID
## 2665 Tarsier chromosome/scaffold name
## 2666 Tarsier chromosome/scaffold start (bp)
## 2667 Tarsier chromosome/scaffold end (bp)
## 2668 Query protein or transcript ID
## 2669 Last common ancestor with Tarsier
## 2670 Tarsier homology type
## 2671 %id. target Tarsier gene identical to query gene
## 2672 %id. query gene identical to target Tarsier gene
## 2673 Tarsier Gene-order conservation score
## 2674 Tarsier Whole-genome alignment coverage
## 2675 Tarsier orthology confidence [0 low, 1 high]
## 2676 Tasmanian devil gene stable ID
## 2677 Tasmanian devil gene name
## 2678 Tasmanian devil protein or transcript stable ID
## 2679 Tasmanian devil chromosome/scaffold name
## 2680 Tasmanian devil chromosome/scaffold start (bp)
## 2681 Tasmanian devil chromosome/scaffold end (bp)
## 2682 Query protein or transcript ID
## 2683 Last common ancestor with Tasmanian devil
## 2684 Tasmanian devil homology type
## 2685 %id. target Tasmanian devil gene identical to query gene
## 2686 %id. query gene identical to target Tasmanian devil gene
## 2687 Tasmanian devil Gene-order conservation score
## 2688 Tasmanian devil orthology confidence [0 low, 1 high]
## 2689 Tetraodon gene stable ID
## 2690 Tetraodon gene name
## 2691 Tetraodon protein or transcript stable ID
## 2692 Tetraodon chromosome/scaffold name
## 2693 Tetraodon chromosome/scaffold start (bp)
## 2694 Tetraodon chromosome/scaffold end (bp)
## 2695 Query protein or transcript ID
## 2696 Last common ancestor with Tetraodon
## 2697 Tetraodon homology type
## 2698 %id. target Tetraodon gene identical to query gene
## 2699 %id. query gene identical to target Tetraodon gene
## 2700 Tetraodon Gene-order conservation score
## 2701 Tetraodon Whole-genome alignment coverage
## 2702 Tetraodon orthology confidence [0 low, 1 high]
## 2703 Three-toed box turtle gene stable ID
## 2704 Three-toed box turtle gene name
## 2705 Three-toed box turtle protein or transcript stable ID
## 2706 Three-toed box turtle chromosome/scaffold name
## 2707 Three-toed box turtle chromosome/scaffold start (bp)
## 2708 Three-toed box turtle chromosome/scaffold end (bp)
## 2709 Query protein or transcript ID
## 2710 Last common ancestor with Three-toed box turtle
## 2711 Three-toed box turtle homology type
## 2712 %id. target Three-toed box turtle gene identical to query gene
## 2713 %id. query gene identical to target Three-toed box turtle gene
## 2714 Three-toed box turtle Gene-order conservation score
## 2715 Three-toed box turtle Whole-genome alignment coverage
## 2716 Three-toed box turtle orthology confidence [0 low, 1 high]
## 2717 Tiger gene stable ID
## 2718 Tiger gene name
## 2719 Tiger protein or transcript stable ID
## 2720 Tiger chromosome/scaffold name
## 2721 Tiger chromosome/scaffold start (bp)
## 2722 Tiger chromosome/scaffold end (bp)
## 2723 Query protein or transcript ID
## 2724 Last common ancestor with Tiger
## 2725 Tiger homology type
## 2726 %id. target Tiger gene identical to query gene
## 2727 %id. query gene identical to target Tiger gene
## 2728 Tiger Gene-order conservation score
## 2729 Tiger Whole-genome alignment coverage
## 2730 Tiger orthology confidence [0 low, 1 high]
## 2731 Tiger tail seahorse gene stable ID
## 2732 Tiger tail seahorse gene name
## 2733 Tiger tail seahorse protein or transcript stable ID
## 2734 Tiger tail seahorse chromosome/scaffold name
## 2735 Tiger tail seahorse chromosome/scaffold start (bp)
## 2736 Tiger tail seahorse chromosome/scaffold end (bp)
## 2737 Query protein or transcript ID
## 2738 Last common ancestor with Tiger tail seahorse
## 2739 Tiger tail seahorse homology type
## 2740 %id. target Tiger tail seahorse gene identical to query gene
## 2741 %id. query gene identical to target Tiger tail seahorse gene
## 2742 Tiger tail seahorse Gene-order conservation score
## 2743 Tiger tail seahorse Whole-genome alignment coverage
## 2744 Tiger tail seahorse orthology confidence [0 low, 1 high]
## 2745 Tongue sole gene stable ID
## 2746 Tongue sole gene name
## 2747 Tongue sole protein or transcript stable ID
## 2748 Tongue sole chromosome/scaffold name
## 2749 Tongue sole chromosome/scaffold start (bp)
## 2750 Tongue sole chromosome/scaffold end (bp)
## 2751 Query protein or transcript ID
## 2752 Last common ancestor with Tongue sole
## 2753 Tongue sole homology type
## 2754 %id. target Tongue sole gene identical to query gene
## 2755 %id. query gene identical to target Tongue sole gene
## 2756 Tongue sole Gene-order conservation score
## 2757 Tongue sole Whole-genome alignment coverage
## 2758 Tongue sole orthology confidence [0 low, 1 high]
## 2759 Tree Shrew gene stable ID
## 2760 Tree Shrew gene name
## 2761 Tree Shrew protein or transcript stable ID
## 2762 Tree Shrew chromosome/scaffold name
## 2763 Tree Shrew chromosome/scaffold start (bp)
## 2764 Tree Shrew chromosome/scaffold end (bp)
## 2765 Query protein or transcript ID
## 2766 Last common ancestor with Tree Shrew
## 2767 Tree Shrew homology type
## 2768 %id. target Tree Shrew gene identical to query gene
## 2769 %id. query gene identical to target Tree Shrew gene
## 2770 Tree Shrew Gene-order conservation score
## 2771 Tree Shrew Whole-genome alignment coverage
## 2772 Tree Shrew orthology confidence [0 low, 1 high]
## 2773 Tropical clawed frog gene stable ID
## 2774 Tropical clawed frog gene name
## 2775 Tropical clawed frog protein or transcript stable ID
## 2776 Tropical clawed frog chromosome/scaffold name
## 2777 Tropical clawed frog chromosome/scaffold start (bp)
## 2778 Tropical clawed frog chromosome/scaffold end (bp)
## 2779 Query protein or transcript ID
## 2780 Last common ancestor with Tropical clawed frog
## 2781 Tropical clawed frog homology type
## 2782 %id. target Tropical clawed frog gene identical to query gene
## 2783 %id. query gene identical to target Tropical clawed frog gene
## 2784 Tropical clawed frog Gene-order conservation score
## 2785 Tropical clawed frog orthology confidence [0 low, 1 high]
## 2786 Tuatara gene stable ID
## 2787 Tuatara gene name
## 2788 Tuatara protein or transcript stable ID
## 2789 Tuatara chromosome/scaffold name
## 2790 Tuatara chromosome/scaffold start (bp)
## 2791 Tuatara chromosome/scaffold end (bp)
## 2792 Query protein or transcript ID
## 2793 Last common ancestor with Tuatara
## 2794 Tuatara homology type
## 2795 %id. target Tuatara gene identical to query gene
## 2796 %id. query gene identical to target Tuatara gene
## 2797 Tuatara Gene-order conservation score
## 2798 Tuatara Whole-genome alignment coverage
## 2799 Tuatara orthology confidence [0 low, 1 high]
## 2800 Turbot gene stable ID
## 2801 Turbot gene name
## 2802 Turbot protein or transcript stable ID
## 2803 Turbot chromosome/scaffold name
## 2804 Turbot chromosome/scaffold start (bp)
## 2805 Turbot chromosome/scaffold end (bp)
## 2806 Query protein or transcript ID
## 2807 Last common ancestor with Turbot
## 2808 Turbot homology type
## 2809 %id. target Turbot gene identical to query gene
## 2810 %id. query gene identical to target Turbot gene
## 2811 Turbot Gene-order conservation score
## 2812 Turbot orthology confidence [0 low, 1 high]
## 2813 Turkey gene stable ID
## 2814 Turkey gene name
## 2815 Turkey protein or transcript stable ID
## 2816 Turkey chromosome/scaffold name
## 2817 Turkey chromosome/scaffold start (bp)
## 2818 Turkey chromosome/scaffold end (bp)
## 2819 Query protein or transcript ID
## 2820 Last common ancestor with Turkey
## 2821 Turkey homology type
## 2822 %id. target Turkey gene identical to query gene
## 2823 %id. query gene identical to target Turkey gene
## 2824 Turkey Gene-order conservation score
## 2825 Turkey orthology confidence [0 low, 1 high]
## 2826 Turquoise killifish gene stable ID
## 2827 Turquoise killifish gene name
## 2828 Turquoise killifish protein or transcript stable ID
## 2829 Turquoise killifish chromosome/scaffold name
## 2830 Turquoise killifish chromosome/scaffold start (bp)
## 2831 Turquoise killifish chromosome/scaffold end (bp)
## 2832 Query protein or transcript ID
## 2833 Last common ancestor with Turquoise killifish
## 2834 Turquoise killifish homology type
## 2835 %id. target Turquoise killifish gene identical to query gene
## 2836 %id. query gene identical to target Turquoise killifish gene
## 2837 Turquoise killifish Gene-order conservation score
## 2838 Turquoise killifish Whole-genome alignment coverage
## 2839 Turquoise killifish orthology confidence [0 low, 1 high]
## 2840 Upper Galilee mountains blind mole rat gene stable ID
## 2841 Upper Galilee mountains blind mole rat gene name
## 2842 Upper Galilee mountains blind mole rat protein or transcript stable ID
## 2843 Upper Galilee mountains blind mole rat chromosome/scaffold name
## 2844 Upper Galilee mountains blind mole rat chromosome/scaffold start (bp)
## 2845 Upper Galilee mountains blind mole rat chromosome/scaffold end (bp)
## 2846 Query protein or transcript ID
## 2847 Last common ancestor with Upper Galilee mountains blind mole rat
## 2848 Upper Galilee mountains blind mole rat homology type
## 2849 %id. target Upper Galilee mountains blind mole rat gene identical to query gene
## 2850 %id. query gene identical to target Upper Galilee mountains blind mole rat gene
## 2851 Upper Galilee mountains blind mole rat Gene-order conservation score
## 2852 Upper Galilee mountains blind mole rat Whole-genome alignment coverage
## 2853 Upper Galilee mountains blind mole rat orthology confidence [0 low, 1 high]
## 2854 Vaquita gene stable ID
## 2855 Vaquita gene name
## 2856 Vaquita protein or transcript stable ID
## 2857 Vaquita chromosome/scaffold name
## 2858 Vaquita chromosome/scaffold start (bp)
## 2859 Vaquita chromosome/scaffold end (bp)
## 2860 Query protein or transcript ID
## 2861 Last common ancestor with Vaquita
## 2862 Vaquita homology type
## 2863 %id. target Vaquita gene identical to query gene
## 2864 %id. query gene identical to target Vaquita gene
## 2865 Vaquita Gene-order conservation score
## 2866 Vaquita Whole-genome alignment coverage
## 2867 Vaquita orthology confidence [0 low, 1 high]
## 2868 Vervet-AGM gene stable ID
## 2869 Vervet-AGM gene name
## 2870 Vervet-AGM protein or transcript stable ID
## 2871 Vervet-AGM chromosome/scaffold name
## 2872 Vervet-AGM chromosome/scaffold start (bp)
## 2873 Vervet-AGM chromosome/scaffold end (bp)
## 2874 Query protein or transcript ID
## 2875 Last common ancestor with Vervet-AGM
## 2876 Vervet-AGM homology type
## 2877 %id. target Vervet-AGM gene identical to query gene
## 2878 %id. query gene identical to target Vervet-AGM gene
## 2879 Vervet-AGM Gene-order conservation score
## 2880 Vervet-AGM Whole-genome alignment coverage
## 2881 Vervet-AGM orthology confidence [0 low, 1 high]
## 2882 Wallaby gene stable ID
## 2883 Wallaby gene name
## 2884 Wallaby protein or transcript stable ID
## 2885 Wallaby chromosome/scaffold name
## 2886 Wallaby chromosome/scaffold start (bp)
## 2887 Wallaby chromosome/scaffold end (bp)
## 2888 Query protein or transcript ID
## 2889 Last common ancestor with Wallaby
## 2890 Wallaby homology type
## 2891 %id. target Wallaby gene identical to query gene
## 2892 %id. query gene identical to target Wallaby gene
## 2893 Wallaby Gene-order conservation score
## 2894 Wallaby Whole-genome alignment coverage
## 2895 Wallaby orthology confidence [0 low, 1 high]
## 2896 White-tufted-ear marmoset gene stable ID
## 2897 White-tufted-ear marmoset gene name
## 2898 White-tufted-ear marmoset protein or transcript stable ID
## 2899 White-tufted-ear marmoset chromosome/scaffold name
## 2900 White-tufted-ear marmoset chromosome/scaffold start (bp)
## 2901 White-tufted-ear marmoset chromosome/scaffold end (bp)
## 2902 Query protein or transcript ID
## 2903 Last common ancestor with White-tufted-ear marmoset
## 2904 White-tufted-ear marmoset homology type
## 2905 %id. target White-tufted-ear marmoset gene identical to query gene
## 2906 %id. query gene identical to target White-tufted-ear marmoset gene
## 2907 White-tufted-ear marmoset Gene-order conservation score
## 2908 White-tufted-ear marmoset Whole-genome alignment coverage
## 2909 White-tufted-ear marmoset orthology confidence [0 low, 1 high]
## 2910 Wild yak gene stable ID
## 2911 Wild yak gene name
## 2912 Wild yak protein or transcript stable ID
## 2913 Wild yak chromosome/scaffold name
## 2914 Wild yak chromosome/scaffold start (bp)
## 2915 Wild yak chromosome/scaffold end (bp)
## 2916 Query protein or transcript ID
## 2917 Last common ancestor with Wild yak
## 2918 Wild yak homology type
## 2919 %id. target Wild yak gene identical to query gene
## 2920 %id. query gene identical to target Wild yak gene
## 2921 Wild yak Gene-order conservation score
## 2922 Wild yak Whole-genome alignment coverage
## 2923 Wild yak orthology confidence [0 low, 1 high]
## 2924 Yarkand deer gene stable ID
## 2925 Yarkand deer gene name
## 2926 Yarkand deer protein or transcript stable ID
## 2927 Yarkand deer chromosome/scaffold name
## 2928 Yarkand deer chromosome/scaffold start (bp)
## 2929 Yarkand deer chromosome/scaffold end (bp)
## 2930 Query protein or transcript ID
## 2931 Last common ancestor with Yarkand deer
## 2932 Yarkand deer homology type
## 2933 %id. target Yarkand deer gene identical to query gene
## 2934 %id. query gene identical to target Yarkand deer gene
## 2935 Yarkand deer Gene-order conservation score
## 2936 Yarkand deer Whole-genome alignment coverage
## 2937 Yarkand deer orthology confidence [0 low, 1 high]
## 2938 Yellowtail amberjack gene stable ID
## 2939 Yellowtail amberjack gene name
## 2940 Yellowtail amberjack protein or transcript stable ID
## 2941 Yellowtail amberjack chromosome/scaffold name
## 2942 Yellowtail amberjack chromosome/scaffold start (bp)
## 2943 Yellowtail amberjack chromosome/scaffold end (bp)
## 2944 Query protein or transcript ID
## 2945 Last common ancestor with Yellowtail amberjack
## 2946 Yellowtail amberjack homology type
## 2947 %id. target Yellowtail amberjack gene identical to query gene
## 2948 %id. query gene identical to target Yellowtail amberjack gene
## 2949 Yellowtail amberjack Gene-order conservation score
## 2950 Yellowtail amberjack Whole-genome alignment coverage
## 2951 Yellowtail amberjack orthology confidence [0 low, 1 high]
## 2952 Zebra finch gene stable ID
## 2953 Zebra finch gene name
## 2954 Zebra finch protein or transcript stable ID
## 2955 Zebra finch chromosome/scaffold name
## 2956 Zebra finch chromosome/scaffold start (bp)
## 2957 Zebra finch chromosome/scaffold end (bp)
## 2958 Query protein or transcript ID
## 2959 Last common ancestor with Zebra finch
## 2960 Zebra finch homology type
## 2961 %id. target Zebra finch gene identical to query gene
## 2962 %id. query gene identical to target Zebra finch gene
## 2963 Zebra finch Gene-order conservation score
## 2964 Zebra finch Whole-genome alignment coverage
## 2965 Zebra finch orthology confidence [0 low, 1 high]
## 2966 Zebra mbuna gene stable ID
## 2967 Zebra mbuna gene name
## 2968 Zebra mbuna protein or transcript stable ID
## 2969 Zebra mbuna chromosome/scaffold name
## 2970 Zebra mbuna chromosome/scaffold start (bp)
## 2971 Zebra mbuna chromosome/scaffold end (bp)
## 2972 Query protein or transcript ID
## 2973 Last common ancestor with Zebra mbuna
## 2974 Zebra mbuna homology type
## 2975 %id. target Zebra mbuna gene identical to query gene
## 2976 %id. query gene identical to target Zebra mbuna gene
## 2977 Zebra mbuna Gene-order conservation score
## 2978 Zebra mbuna Whole-genome alignment coverage
## 2979 Zebra mbuna orthology confidence [0 low, 1 high]
## 2980 Zebrafish gene stable ID
## 2981 Zebrafish gene name
## 2982 Zebrafish protein or transcript stable ID
## 2983 Zebrafish chromosome/scaffold name
## 2984 Zebrafish chromosome/scaffold start (bp)
## 2985 Zebrafish chromosome/scaffold end (bp)
## 2986 Query protein or transcript ID
## 2987 Last common ancestor with Zebrafish
## 2988 Zebrafish homology type
## 2989 %id. target Zebrafish gene identical to query gene
## 2990 %id. query gene identical to target Zebrafish gene
## 2991 Zebrafish Gene-order conservation score
## 2992 Zebrafish Whole-genome alignment coverage
## 2993 Zebrafish orthology confidence [0 low, 1 high]
## 2994 Zig-zag eel gene stable ID
## 2995 Zig-zag eel gene name
## 2996 Zig-zag eel protein or transcript stable ID
## 2997 Zig-zag eel chromosome/scaffold name
## 2998 Zig-zag eel chromosome/scaffold start (bp)
## 2999 Zig-zag eel chromosome/scaffold end (bp)
## 3000 Query protein or transcript ID
## 3001 Last common ancestor with Zig-zag eel
## 3002 Zig-zag eel homology type
## 3003 %id. target Zig-zag eel gene identical to query gene
## 3004 %id. query gene identical to target Zig-zag eel gene
## 3005 Zig-zag eel Gene-order conservation score
## 3006 Zig-zag eel orthology confidence [0 low, 1 high]
## 3007 Human paralogue gene stable ID
## 3008 Human paralogue associated gene name
## 3009 Human paralogue protein or transcript ID
## 3010 Human paralogue chromosome/scaffold name
## 3011 Human paralogue chromosome/scaffold start (bp)
## 3012 Human paralogue chromosome/scaffold end (bp)
## 3013 Paralogue query protein or transcript ID
## 3014 Paralogue last common ancestor with Human
## 3015 Human paralogue homology type
## 3016 Paralogue %id. target Human gene identical to query gene
## 3017 Paralogue %id. query gene identical to target Human gene
## 3018 Gene stable ID
## 3019 Gene stable ID version
## 3020 Version (gene)
## 3021 Transcript stable ID
## 3022 Transcript stable ID version
## 3023 Version (transcript)
## 3024 Protein stable ID
## 3025 Protein stable ID version
## 3026 Version (protein)
## 3027 Chromosome/scaffold name
## 3028 Gene start (bp)
## 3029 Gene end (bp)
## 3030 Strand
## 3031 Karyotype band
## 3032 Gene name
## 3033 Source of gene name
## 3034 Transcript count
## 3035 Gene % GC content
## 3036 Gene description
## 3037 Variant name
## 3038 Variant source
## 3039 Variant source description
## 3040 Variant alleles
## 3041 Variant supporting evidence
## 3042 Mapweight
## 3043 Minor allele
## 3044 Minor allele frequency
## 3045 Minor allele count
## 3046 Clinical significance
## 3047 Transcript location (bp)
## 3048 Variant chromosome Strand
## 3049 Protein location (aa)
## 3050 chromosome/scaffold position start (bp)
## 3051 Chromosome/scaffold position end (bp)
## 3052 PolyPhen prediction
## 3053 PolyPhen score
## 3054 SIFT prediction
## 3055 SIFT score
## 3056 Distance to transcript
## 3057 CDS start
## 3058 CDS end
## 3059 Protein allele
## 3060 Variant consequence
## 3061 Consequence specific allele
## 3062 Gene stable ID
## 3063 Gene stable ID version
## 3064 Version (gene)
## 3065 Transcript stable ID
## 3066 Transcript stable ID version
## 3067 Version (transcript)
## 3068 Protein stable ID
## 3069 Protein stable ID version
## 3070 Version (protein)
## 3071 Chromosome/scaffold name
## 3072 Gene start (bp)
## 3073 Gene end (bp)
## 3074 Strand
## 3075 Karyotype band
## 3076 Gene name
## 3077 Source of gene name
## 3078 Transcript count
## 3079 Gene % GC content
## 3080 Gene description
## 3081 Variant name
## 3082 Variant source
## 3083 Variant source description
## 3084 Variant alleles
## 3085 Variant supporting evidence
## 3086 Mapweight
## 3087 Transcript location (bp)
## 3088 Variant chromosome/scaffold strand
## 3089 Protein location (aa)
## 3090 Chromosome/scaffold position start (bp)
## 3091 Chromosome/scaffold position end (bp)
## 3092 Distance to transcript
## 3093 CDS start
## 3094 CDS end
## 3095 Variant consequence
## 3096 Consequence specific allele
## 3097 Unspliced (Transcript)
## 3098 Unspliced (Gene)
## 3099 Flank (Transcript)
## 3100 Flank (Gene)
## 3101 Flank-coding region (Transcript)
## 3102 Flank-coding region (Gene)
## 3103 5' UTR
## 3104 3' UTR
## 3105 Exon sequences
## 3106 cDNA sequences
## 3107 Coding sequence
## 3108 Peptide
## 3109 upstream_flank
## 3110 downstream_flank
## 3111 Gene stable ID
## 3112 Gene stable ID version
## 3113 Gene description
## 3114 Gene name
## 3115 Source of gene name
## 3116 Chromosome/scaffold name
## 3117 Gene start (bp)
## 3118 Gene end (bp)
## 3119 Gene type
## 3120 Version (gene)
## 3121 UniParc ID
## 3122 UniProtKB/Swiss-Prot ID
## 3123 UniProtKB/TrEMBL ID
## 3124 CDS start (within cDNA)
## 3125 CDS end (within cDNA)
## 3126 5' UTR start
## 3127 5' UTR end
## 3128 3' UTR start
## 3129 3' UTR end
## 3130 Transcript stable ID
## 3131 Transcript stable ID version
## 3132 Protein stable ID
## 3133 Protein stable ID version
## 3134 Transcript type
## 3135 Version (transcript)
## 3136 Version (protein)
## 3137 Strand
## 3138 Transcript start (bp)
## 3139 Transcript end (bp)
## 3140 Transcription start site (TSS)
## 3141 Transcript length (including UTRs and CDS)
## 3142 CDS Length
## 3143 CDS start
## 3144 CDS end
## 3145 Exon stable ID
## 3146 Exon region start (bp)
## 3147 Exon region end (bp)
## 3148 Strand
## 3149 Exon rank in transcript
## 3150 Start phase
## 3151 End phase
## 3152 cDNA coding start
## 3153 cDNA coding end
## 3154 Genomic coding start
## 3155 Genomic coding end
## 3156 Constitutive exon
## page
## 1 feature_page
## 2 feature_page
## 3 feature_page
## 4 feature_page
## 5 feature_page
## 6 feature_page
## 7 feature_page
## 8 feature_page
## 9 feature_page
## 10 feature_page
## 11 feature_page
## 12 feature_page
## 13 feature_page
## 14 feature_page
## 15 feature_page
## 16 feature_page
## 17 feature_page
## 18 feature_page
## 19 feature_page
## 20 feature_page
## 21 feature_page
## 22 feature_page
## 23 feature_page
## 24 feature_page
## 25 feature_page
## 26 feature_page
## 27 feature_page
## 28 feature_page
## 29 feature_page
## 30 feature_page
## 31 feature_page
## 32 feature_page
## 33 feature_page
## 34 feature_page
## 35 feature_page
## 36 feature_page
## 37 feature_page
## 38 feature_page
## 39 feature_page
## 40 feature_page
## 41 feature_page
## 42 feature_page
## 43 feature_page
## 44 feature_page
## 45 feature_page
## 46 feature_page
## 47 feature_page
## 48 feature_page
## 49 feature_page
## 50 feature_page
## 51 feature_page
## 52 feature_page
## 53 feature_page
## 54 feature_page
## 55 feature_page
## 56 feature_page
## 57 feature_page
## 58 feature_page
## 59 feature_page
## 60 feature_page
## 61 feature_page
## 62 feature_page
## 63 feature_page
## 64 feature_page
## 65 feature_page
## 66 feature_page
## 67 feature_page
## 68 feature_page
## 69 feature_page
## 70 feature_page
## 71 feature_page
## 72 feature_page
## 73 feature_page
## 74 feature_page
## 75 feature_page
## 76 feature_page
## 77 feature_page
## 78 feature_page
## 79 feature_page
## 80 feature_page
## 81 feature_page
## 82 feature_page
## 83 feature_page
## 84 feature_page
## 85 feature_page
## 86 feature_page
## 87 feature_page
## 88 feature_page
## 89 feature_page
## 90 feature_page
## 91 feature_page
## 92 feature_page
## 93 feature_page
## 94 feature_page
## 95 feature_page
## 96 feature_page
## 97 feature_page
## 98 feature_page
## 99 feature_page
## 100 feature_page
## 101 feature_page
## 102 feature_page
## 103 feature_page
## 104 feature_page
## 105 feature_page
## 106 feature_page
## 107 feature_page
## 108 feature_page
## 109 feature_page
## 110 feature_page
## 111 feature_page
## 112 feature_page
## 113 feature_page
## 114 feature_page
## 115 feature_page
## 116 feature_page
## 117 feature_page
## 118 feature_page
## 119 feature_page
## 120 feature_page
## 121 feature_page
## 122 feature_page
## 123 feature_page
## 124 feature_page
## 125 feature_page
## 126 feature_page
## 127 feature_page
## 128 feature_page
## 129 feature_page
## 130 feature_page
## 131 feature_page
## 132 feature_page
## 133 feature_page
## 134 feature_page
## 135 feature_page
## 136 feature_page
## 137 feature_page
## 138 feature_page
## 139 feature_page
## 140 feature_page
## 141 feature_page
## 142 feature_page
## 143 feature_page
## 144 feature_page
## 145 feature_page
## 146 feature_page
## 147 feature_page
## 148 feature_page
## 149 feature_page
## 150 feature_page
## 151 feature_page
## 152 feature_page
## 153 feature_page
## 154 feature_page
## 155 feature_page
## 156 feature_page
## 157 feature_page
## 158 feature_page
## 159 feature_page
## 160 feature_page
## 161 feature_page
## 162 feature_page
## 163 feature_page
## 164 feature_page
## 165 feature_page
## 166 feature_page
## 167 feature_page
## 168 feature_page
## 169 feature_page
## 170 feature_page
## 171 feature_page
## 172 feature_page
## 173 feature_page
## 174 feature_page
## 175 feature_page
## 176 feature_page
## 177 feature_page
## 178 feature_page
## 179 feature_page
## 180 feature_page
## 181 feature_page
## 182 feature_page
## 183 feature_page
## 184 feature_page
## 185 feature_page
## 186 feature_page
## 187 feature_page
## 188 feature_page
## 189 feature_page
## 190 feature_page
## 191 feature_page
## 192 feature_page
## 193 feature_page
## 194 feature_page
## 195 feature_page
## 196 feature_page
## 197 feature_page
## 198 feature_page
## 199 feature_page
## 200 feature_page
## 201 feature_page
## 202 structure
## 203 structure
## 204 structure
## 205 structure
## 206 structure
## 207 structure
## 208 structure
## 209 structure
## 210 structure
## 211 structure
## 212 structure
## 213 structure
## 214 structure
## 215 structure
## 216 structure
## 217 structure
## 218 structure
## 219 structure
## 220 structure
## 221 structure
## 222 structure
## 223 structure
## 224 structure
## 225 structure
## 226 structure
## 227 structure
## 228 structure
## 229 structure
## 230 structure
## 231 structure
## 232 structure
## 233 structure
## 234 structure
## 235 structure
## 236 structure
## 237 structure
## 238 structure
## 239 structure
## 240 structure
## 241 structure
## 242 homologs
## 243 homologs
## 244 homologs
## 245 homologs
## 246 homologs
## 247 homologs
## 248 homologs
## 249 homologs
## 250 homologs
## 251 homologs
## 252 homologs
## 253 homologs
## 254 homologs
## 255 homologs
## 256 homologs
## 257 homologs
## 258 homologs
## 259 homologs
## 260 homologs
## 261 homologs
## 262 homologs
## 263 homologs
## 264 homologs
## 265 homologs
## 266 homologs
## 267 homologs
## 268 homologs
## 269 homologs
## 270 homologs
## 271 homologs
## 272 homologs
## 273 homologs
## 274 homologs
## 275 homologs
## 276 homologs
## 277 homologs
## 278 homologs
## 279 homologs
## 280 homologs
## 281 homologs
## 282 homologs
## 283 homologs
## 284 homologs
## 285 homologs
## 286 homologs
## 287 homologs
## 288 homologs
## 289 homologs
## 290 homologs
## 291 homologs
## 292 homologs
## 293 homologs
## 294 homologs
## 295 homologs
## 296 homologs
## 297 homologs
## 298 homologs
## 299 homologs
## 300 homologs
## 301 homologs
## 302 homologs
## 303 homologs
## 304 homologs
## 305 homologs
## 306 homologs
## 307 homologs
## 308 homologs
## 309 homologs
## 310 homologs
## 311 homologs
## 312 homologs
## 313 homologs
## 314 homologs
## 315 homologs
## 316 homologs
## 317 homologs
## 318 homologs
## 319 homologs
## 320 homologs
## 321 homologs
## 322 homologs
## 323 homologs
## 324 homologs
## 325 homologs
## 326 homologs
## 327 homologs
## 328 homologs
## 329 homologs
## 330 homologs
## 331 homologs
## 332 homologs
## 333 homologs
## 334 homologs
## 335 homologs
## 336 homologs
## 337 homologs
## 338 homologs
## 339 homologs
## 340 homologs
## 341 homologs
## 342 homologs
## 343 homologs
## 344 homologs
## 345 homologs
## 346 homologs
## 347 homologs
## 348 homologs
## 349 homologs
## 350 homologs
## 351 homologs
## 352 homologs
## 353 homologs
## 354 homologs
## 355 homologs
## 356 homologs
## 357 homologs
## 358 homologs
## 359 homologs
## 360 homologs
## 361 homologs
## 362 homologs
## 363 homologs
## 364 homologs
## 365 homologs
## 366 homologs
## 367 homologs
## 368 homologs
## 369 homologs
## 370 homologs
## 371 homologs
## 372 homologs
## 373 homologs
## 374 homologs
## 375 homologs
## 376 homologs
## 377 homologs
## 378 homologs
## 379 homologs
## 380 homologs
## 381 homologs
## 382 homologs
## 383 homologs
## 384 homologs
## 385 homologs
## 386 homologs
## 387 homologs
## 388 homologs
## 389 homologs
## 390 homologs
## 391 homologs
## 392 homologs
## 393 homologs
## 394 homologs
## 395 homologs
## 396 homologs
## 397 homologs
## 398 homologs
## 399 homologs
## 400 homologs
## 401 homologs
## 402 homologs
## 403 homologs
## 404 homologs
## 405 homologs
## 406 homologs
## 407 homologs
## 408 homologs
## 409 homologs
## 410 homologs
## 411 homologs
## 412 homologs
## 413 homologs
## 414 homologs
## 415 homologs
## 416 homologs
## 417 homologs
## 418 homologs
## 419 homologs
## 420 homologs
## 421 homologs
## 422 homologs
## 423 homologs
## 424 homologs
## 425 homologs
## 426 homologs
## 427 homologs
## 428 homologs
## 429 homologs
## 430 homologs
## 431 homologs
## 432 homologs
## 433 homologs
## 434 homologs
## 435 homologs
## 436 homologs
## 437 homologs
## 438 homologs
## 439 homologs
## 440 homologs
## 441 homologs
## 442 homologs
## 443 homologs
## 444 homologs
## 445 homologs
## 446 homologs
## 447 homologs
## 448 homologs
## 449 homologs
## 450 homologs
## 451 homologs
## 452 homologs
## 453 homologs
## 454 homologs
## 455 homologs
## 456 homologs
## 457 homologs
## 458 homologs
## 459 homologs
## 460 homologs
## 461 homologs
## 462 homologs
## 463 homologs
## 464 homologs
## 465 homologs
## 466 homologs
## 467 homologs
## 468 homologs
## 469 homologs
## 470 homologs
## 471 homologs
## 472 homologs
## 473 homologs
## 474 homologs
## 475 homologs
## 476 homologs
## 477 homologs
## 478 homologs
## 479 homologs
## 480 homologs
## 481 homologs
## 482 homologs
## 483 homologs
## 484 homologs
## 485 homologs
## 486 homologs
## 487 homologs
## 488 homologs
## 489 homologs
## 490 homologs
## 491 homologs
## 492 homologs
## 493 homologs
## 494 homologs
## 495 homologs
## 496 homologs
## 497 homologs
## 498 homologs
## 499 homologs
## 500 homologs
## 501 homologs
## 502 homologs
## 503 homologs
## 504 homologs
## 505 homologs
## 506 homologs
## 507 homologs
## 508 homologs
## 509 homologs
## 510 homologs
## 511 homologs
## 512 homologs
## 513 homologs
## 514 homologs
## 515 homologs
## 516 homologs
## 517 homologs
## 518 homologs
## 519 homologs
## 520 homologs
## 521 homologs
## 522 homologs
## 523 homologs
## 524 homologs
## 525 homologs
## 526 homologs
## 527 homologs
## 528 homologs
## 529 homologs
## 530 homologs
## 531 homologs
## 532 homologs
## 533 homologs
## 534 homologs
## 535 homologs
## 536 homologs
## 537 homologs
## 538 homologs
## 539 homologs
## 540 homologs
## 541 homologs
## 542 homologs
## 543 homologs
## 544 homologs
## 545 homologs
## 546 homologs
## 547 homologs
## 548 homologs
## 549 homologs
## 550 homologs
## 551 homologs
## 552 homologs
## 553 homologs
## 554 homologs
## 555 homologs
## 556 homologs
## 557 homologs
## 558 homologs
## 559 homologs
## 560 homologs
## 561 homologs
## 562 homologs
## 563 homologs
## 564 homologs
## 565 homologs
## 566 homologs
## 567 homologs
## 568 homologs
## 569 homologs
## 570 homologs
## 571 homologs
## 572 homologs
## 573 homologs
## 574 homologs
## 575 homologs
## 576 homologs
## 577 homologs
## 578 homologs
## 579 homologs
## 580 homologs
## 581 homologs
## 582 homologs
## 583 homologs
## 584 homologs
## 585 homologs
## 586 homologs
## 587 homologs
## 588 homologs
## 589 homologs
## 590 homologs
## 591 homologs
## 592 homologs
## 593 homologs
## 594 homologs
## 595 homologs
## 596 homologs
## 597 homologs
## 598 homologs
## 599 homologs
## 600 homologs
## 601 homologs
## 602 homologs
## 603 homologs
## 604 homologs
## 605 homologs
## 606 homologs
## 607 homologs
## 608 homologs
## 609 homologs
## 610 homologs
## 611 homologs
## 612 homologs
## 613 homologs
## 614 homologs
## 615 homologs
## 616 homologs
## 617 homologs
## 618 homologs
## 619 homologs
## 620 homologs
## 621 homologs
## 622 homologs
## 623 homologs
## 624 homologs
## 625 homologs
## 626 homologs
## 627 homologs
## 628 homologs
## 629 homologs
## 630 homologs
## 631 homologs
## 632 homologs
## 633 homologs
## 634 homologs
## 635 homologs
## 636 homologs
## 637 homologs
## 638 homologs
## 639 homologs
## 640 homologs
## 641 homologs
## 642 homologs
## 643 homologs
## 644 homologs
## 645 homologs
## 646 homologs
## 647 homologs
## 648 homologs
## 649 homologs
## 650 homologs
## 651 homologs
## 652 homologs
## 653 homologs
## 654 homologs
## 655 homologs
## 656 homologs
## 657 homologs
## 658 homologs
## 659 homologs
## 660 homologs
## 661 homologs
## 662 homologs
## 663 homologs
## 664 homologs
## 665 homologs
## 666 homologs
## 667 homologs
## 668 homologs
## 669 homologs
## 670 homologs
## 671 homologs
## 672 homologs
## 673 homologs
## 674 homologs
## 675 homologs
## 676 homologs
## 677 homologs
## 678 homologs
## 679 homologs
## 680 homologs
## 681 homologs
## 682 homologs
## 683 homologs
## 684 homologs
## 685 homologs
## 686 homologs
## 687 homologs
## 688 homologs
## 689 homologs
## 690 homologs
## 691 homologs
## 692 homologs
## 693 homologs
## 694 homologs
## 695 homologs
## 696 homologs
## 697 homologs
## 698 homologs
## 699 homologs
## 700 homologs
## 701 homologs
## 702 homologs
## 703 homologs
## 704 homologs
## 705 homologs
## 706 homologs
## 707 homologs
## 708 homologs
## 709 homologs
## 710 homologs
## 711 homologs
## 712 homologs
## 713 homologs
## 714 homologs
## 715 homologs
## 716 homologs
## 717 homologs
## 718 homologs
## 719 homologs
## 720 homologs
## 721 homologs
## 722 homologs
## 723 homologs
## 724 homologs
## 725 homologs
## 726 homologs
## 727 homologs
## 728 homologs
## 729 homologs
## 730 homologs
## 731 homologs
## 732 homologs
## 733 homologs
## 734 homologs
## 735 homologs
## 736 homologs
## 737 homologs
## 738 homologs
## 739 homologs
## 740 homologs
## 741 homologs
## 742 homologs
## 743 homologs
## 744 homologs
## 745 homologs
## 746 homologs
## 747 homologs
## 748 homologs
## 749 homologs
## 750 homologs
## 751 homologs
## 752 homologs
## 753 homologs
## 754 homologs
## 755 homologs
## 756 homologs
## 757 homologs
## 758 homologs
## 759 homologs
## 760 homologs
## 761 homologs
## 762 homologs
## 763 homologs
## 764 homologs
## 765 homologs
## 766 homologs
## 767 homologs
## 768 homologs
## 769 homologs
## 770 homologs
## 771 homologs
## 772 homologs
## 773 homologs
## 774 homologs
## 775 homologs
## 776 homologs
## 777 homologs
## 778 homologs
## 779 homologs
## 780 homologs
## 781 homologs
## 782 homologs
## 783 homologs
## 784 homologs
## 785 homologs
## 786 homologs
## 787 homologs
## 788 homologs
## 789 homologs
## 790 homologs
## 791 homologs
## 792 homologs
## 793 homologs
## 794 homologs
## 795 homologs
## 796 homologs
## 797 homologs
## 798 homologs
## 799 homologs
## 800 homologs
## 801 homologs
## 802 homologs
## 803 homologs
## 804 homologs
## 805 homologs
## 806 homologs
## 807 homologs
## 808 homologs
## 809 homologs
## 810 homologs
## 811 homologs
## 812 homologs
## 813 homologs
## 814 homologs
## 815 homologs
## 816 homologs
## 817 homologs
## 818 homologs
## 819 homologs
## 820 homologs
## 821 homologs
## 822 homologs
## 823 homologs
## 824 homologs
## 825 homologs
## 826 homologs
## 827 homologs
## 828 homologs
## 829 homologs
## 830 homologs
## 831 homologs
## 832 homologs
## 833 homologs
## 834 homologs
## 835 homologs
## 836 homologs
## 837 homologs
## 838 homologs
## 839 homologs
## 840 homologs
## 841 homologs
## 842 homologs
## 843 homologs
## 844 homologs
## 845 homologs
## 846 homologs
## 847 homologs
## 848 homologs
## 849 homologs
## 850 homologs
## 851 homologs
## 852 homologs
## 853 homologs
## 854 homologs
## 855 homologs
## 856 homologs
## 857 homologs
## 858 homologs
## 859 homologs
## 860 homologs
## 861 homologs
## 862 homologs
## 863 homologs
## 864 homologs
## 865 homologs
## 866 homologs
## 867 homologs
## 868 homologs
## 869 homologs
## 870 homologs
## 871 homologs
## 872 homologs
## 873 homologs
## 874 homologs
## 875 homologs
## 876 homologs
## 877 homologs
## 878 homologs
## 879 homologs
## 880 homologs
## 881 homologs
## 882 homologs
## 883 homologs
## 884 homologs
## 885 homologs
## 886 homologs
## 887 homologs
## 888 homologs
## 889 homologs
## 890 homologs
## 891 homologs
## 892 homologs
## 893 homologs
## 894 homologs
## 895 homologs
## 896 homologs
## 897 homologs
## 898 homologs
## 899 homologs
## 900 homologs
## 901 homologs
## 902 homologs
## 903 homologs
## 904 homologs
## 905 homologs
## 906 homologs
## 907 homologs
## 908 homologs
## 909 homologs
## 910 homologs
## 911 homologs
## 912 homologs
## 913 homologs
## 914 homologs
## 915 homologs
## 916 homologs
## 917 homologs
## 918 homologs
## 919 homologs
## 920 homologs
## 921 homologs
## 922 homologs
## 923 homologs
## 924 homologs
## 925 homologs
## 926 homologs
## 927 homologs
## 928 homologs
## 929 homologs
## 930 homologs
## 931 homologs
## 932 homologs
## 933 homologs
## 934 homologs
## 935 homologs
## 936 homologs
## 937 homologs
## 938 homologs
## 939 homologs
## 940 homologs
## 941 homologs
## 942 homologs
## 943 homologs
## 944 homologs
## 945 homologs
## 946 homologs
## 947 homologs
## 948 homologs
## 949 homologs
## 950 homologs
## 951 homologs
## 952 homologs
## 953 homologs
## 954 homologs
## 955 homologs
## 956 homologs
## 957 homologs
## 958 homologs
## 959 homologs
## 960 homologs
## 961 homologs
## 962 homologs
## 963 homologs
## 964 homologs
## 965 homologs
## 966 homologs
## 967 homologs
## 968 homologs
## 969 homologs
## 970 homologs
## 971 homologs
## 972 homologs
## 973 homologs
## 974 homologs
## 975 homologs
## 976 homologs
## 977 homologs
## 978 homologs
## 979 homologs
## 980 homologs
## 981 homologs
## 982 homologs
## 983 homologs
## 984 homologs
## 985 homologs
## 986 homologs
## 987 homologs
## 988 homologs
## 989 homologs
## 990 homologs
## 991 homologs
## 992 homologs
## 993 homologs
## 994 homologs
## 995 homologs
## 996 homologs
## 997 homologs
## 998 homologs
## 999 homologs
## 1000 homologs
## 1001 homologs
## 1002 homologs
## 1003 homologs
## 1004 homologs
## 1005 homologs
## 1006 homologs
## 1007 homologs
## 1008 homologs
## 1009 homologs
## 1010 homologs
## 1011 homologs
## 1012 homologs
## 1013 homologs
## 1014 homologs
## 1015 homologs
## 1016 homologs
## 1017 homologs
## 1018 homologs
## 1019 homologs
## 1020 homologs
## 1021 homologs
## 1022 homologs
## 1023 homologs
## 1024 homologs
## 1025 homologs
## 1026 homologs
## 1027 homologs
## 1028 homologs
## 1029 homologs
## 1030 homologs
## 1031 homologs
## 1032 homologs
## 1033 homologs
## 1034 homologs
## 1035 homologs
## 1036 homologs
## 1037 homologs
## 1038 homologs
## 1039 homologs
## 1040 homologs
## 1041 homologs
## 1042 homologs
## 1043 homologs
## 1044 homologs
## 1045 homologs
## 1046 homologs
## 1047 homologs
## 1048 homologs
## 1049 homologs
## 1050 homologs
## 1051 homologs
## 1052 homologs
## 1053 homologs
## 1054 homologs
## 1055 homologs
## 1056 homologs
## 1057 homologs
## 1058 homologs
## 1059 homologs
## 1060 homologs
## 1061 homologs
## 1062 homologs
## 1063 homologs
## 1064 homologs
## 1065 homologs
## 1066 homologs
## 1067 homologs
## 1068 homologs
## 1069 homologs
## 1070 homologs
## 1071 homologs
## 1072 homologs
## 1073 homologs
## 1074 homologs
## 1075 homologs
## 1076 homologs
## 1077 homologs
## 1078 homologs
## 1079 homologs
## 1080 homologs
## 1081 homologs
## 1082 homologs
## 1083 homologs
## 1084 homologs
## 1085 homologs
## 1086 homologs
## 1087 homologs
## 1088 homologs
## 1089 homologs
## 1090 homologs
## 1091 homologs
## 1092 homologs
## 1093 homologs
## 1094 homologs
## 1095 homologs
## 1096 homologs
## 1097 homologs
## 1098 homologs
## 1099 homologs
## 1100 homologs
## 1101 homologs
## 1102 homologs
## 1103 homologs
## 1104 homologs
## 1105 homologs
## 1106 homologs
## 1107 homologs
## 1108 homologs
## 1109 homologs
## 1110 homologs
## 1111 homologs
## 1112 homologs
## 1113 homologs
## 1114 homologs
## 1115 homologs
## 1116 homologs
## 1117 homologs
## 1118 homologs
## 1119 homologs
## 1120 homologs
## 1121 homologs
## 1122 homologs
## 1123 homologs
## 1124 homologs
## 1125 homologs
## 1126 homologs
## 1127 homologs
## 1128 homologs
## 1129 homologs
## 1130 homologs
## 1131 homologs
## 1132 homologs
## 1133 homologs
## 1134 homologs
## 1135 homologs
## 1136 homologs
## 1137 homologs
## 1138 homologs
## 1139 homologs
## 1140 homologs
## 1141 homologs
## 1142 homologs
## 1143 homologs
## 1144 homologs
## 1145 homologs
## 1146 homologs
## 1147 homologs
## 1148 homologs
## 1149 homologs
## 1150 homologs
## 1151 homologs
## 1152 homologs
## 1153 homologs
## 1154 homologs
## 1155 homologs
## 1156 homologs
## 1157 homologs
## 1158 homologs
## 1159 homologs
## 1160 homologs
## 1161 homologs
## 1162 homologs
## 1163 homologs
## 1164 homologs
## 1165 homologs
## 1166 homologs
## 1167 homologs
## 1168 homologs
## 1169 homologs
## 1170 homologs
## 1171 homologs
## 1172 homologs
## 1173 homologs
## 1174 homologs
## 1175 homologs
## 1176 homologs
## 1177 homologs
## 1178 homologs
## 1179 homologs
## 1180 homologs
## 1181 homologs
## 1182 homologs
## 1183 homologs
## 1184 homologs
## 1185 homologs
## 1186 homologs
## 1187 homologs
## 1188 homologs
## 1189 homologs
## 1190 homologs
## 1191 homologs
## 1192 homologs
## 1193 homologs
## 1194 homologs
## 1195 homologs
## 1196 homologs
## 1197 homologs
## 1198 homologs
## 1199 homologs
## 1200 homologs
## 1201 homologs
## 1202 homologs
## 1203 homologs
## 1204 homologs
## 1205 homologs
## 1206 homologs
## 1207 homologs
## 1208 homologs
## 1209 homologs
## 1210 homologs
## 1211 homologs
## 1212 homologs
## 1213 homologs
## 1214 homologs
## 1215 homologs
## 1216 homologs
## 1217 homologs
## 1218 homologs
## 1219 homologs
## 1220 homologs
## 1221 homologs
## 1222 homologs
## 1223 homologs
## 1224 homologs
## 1225 homologs
## 1226 homologs
## 1227 homologs
## 1228 homologs
## 1229 homologs
## 1230 homologs
## 1231 homologs
## 1232 homologs
## 1233 homologs
## 1234 homologs
## 1235 homologs
## 1236 homologs
## 1237 homologs
## 1238 homologs
## 1239 homologs
## 1240 homologs
## 1241 homologs
## 1242 homologs
## 1243 homologs
## 1244 homologs
## 1245 homologs
## 1246 homologs
## 1247 homologs
## 1248 homologs
## 1249 homologs
## 1250 homologs
## 1251 homologs
## 1252 homologs
## 1253 homologs
## 1254 homologs
## 1255 homologs
## 1256 homologs
## 1257 homologs
## 1258 homologs
## 1259 homologs
## 1260 homologs
## 1261 homologs
## 1262 homologs
## 1263 homologs
## 1264 homologs
## 1265 homologs
## 1266 homologs
## 1267 homologs
## 1268 homologs
## 1269 homologs
## 1270 homologs
## 1271 homologs
## 1272 homologs
## 1273 homologs
## 1274 homologs
## 1275 homologs
## 1276 homologs
## 1277 homologs
## 1278 homologs
## 1279 homologs
## 1280 homologs
## 1281 homologs
## 1282 homologs
## 1283 homologs
## 1284 homologs
## 1285 homologs
## 1286 homologs
## 1287 homologs
## 1288 homologs
## 1289 homologs
## 1290 homologs
## 1291 homologs
## 1292 homologs
## 1293 homologs
## 1294 homologs
## 1295 homologs
## 1296 homologs
## 1297 homologs
## 1298 homologs
## 1299 homologs
## 1300 homologs
## 1301 homologs
## 1302 homologs
## 1303 homologs
## 1304 homologs
## 1305 homologs
## 1306 homologs
## 1307 homologs
## 1308 homologs
## 1309 homologs
## 1310 homologs
## 1311 homologs
## 1312 homologs
## 1313 homologs
## 1314 homologs
## 1315 homologs
## 1316 homologs
## 1317 homologs
## 1318 homologs
## 1319 homologs
## 1320 homologs
## 1321 homologs
## 1322 homologs
## 1323 homologs
## 1324 homologs
## 1325 homologs
## 1326 homologs
## 1327 homologs
## 1328 homologs
## 1329 homologs
## 1330 homologs
## 1331 homologs
## 1332 homologs
## 1333 homologs
## 1334 homologs
## 1335 homologs
## 1336 homologs
## 1337 homologs
## 1338 homologs
## 1339 homologs
## 1340 homologs
## 1341 homologs
## 1342 homologs
## 1343 homologs
## 1344 homologs
## 1345 homologs
## 1346 homologs
## 1347 homologs
## 1348 homologs
## 1349 homologs
## 1350 homologs
## 1351 homologs
## 1352 homologs
## 1353 homologs
## 1354 homologs
## 1355 homologs
## 1356 homologs
## 1357 homologs
## 1358 homologs
## 1359 homologs
## 1360 homologs
## 1361 homologs
## 1362 homologs
## 1363 homologs
## 1364 homologs
## 1365 homologs
## 1366 homologs
## 1367 homologs
## 1368 homologs
## 1369 homologs
## 1370 homologs
## 1371 homologs
## 1372 homologs
## 1373 homologs
## 1374 homologs
## 1375 homologs
## 1376 homologs
## 1377 homologs
## 1378 homologs
## 1379 homologs
## 1380 homologs
## 1381 homologs
## 1382 homologs
## 1383 homologs
## 1384 homologs
## 1385 homologs
## 1386 homologs
## 1387 homologs
## 1388 homologs
## 1389 homologs
## 1390 homologs
## 1391 homologs
## 1392 homologs
## 1393 homologs
## 1394 homologs
## 1395 homologs
## 1396 homologs
## 1397 homologs
## 1398 homologs
## 1399 homologs
## 1400 homologs
## 1401 homologs
## 1402 homologs
## 1403 homologs
## 1404 homologs
## 1405 homologs
## 1406 homologs
## 1407 homologs
## 1408 homologs
## 1409 homologs
## 1410 homologs
## 1411 homologs
## 1412 homologs
## 1413 homologs
## 1414 homologs
## 1415 homologs
## 1416 homologs
## 1417 homologs
## 1418 homologs
## 1419 homologs
## 1420 homologs
## 1421 homologs
## 1422 homologs
## 1423 homologs
## 1424 homologs
## 1425 homologs
## 1426 homologs
## 1427 homologs
## 1428 homologs
## 1429 homologs
## 1430 homologs
## 1431 homologs
## 1432 homologs
## 1433 homologs
## 1434 homologs
## 1435 homologs
## 1436 homologs
## 1437 homologs
## 1438 homologs
## 1439 homologs
## 1440 homologs
## 1441 homologs
## 1442 homologs
## 1443 homologs
## 1444 homologs
## 1445 homologs
## 1446 homologs
## 1447 homologs
## 1448 homologs
## 1449 homologs
## 1450 homologs
## 1451 homologs
## 1452 homologs
## 1453 homologs
## 1454 homologs
## 1455 homologs
## 1456 homologs
## 1457 homologs
## 1458 homologs
## 1459 homologs
## 1460 homologs
## 1461 homologs
## 1462 homologs
## 1463 homologs
## 1464 homologs
## 1465 homologs
## 1466 homologs
## 1467 homologs
## 1468 homologs
## 1469 homologs
## 1470 homologs
## 1471 homologs
## 1472 homologs
## 1473 homologs
## 1474 homologs
## 1475 homologs
## 1476 homologs
## 1477 homologs
## 1478 homologs
## 1479 homologs
## 1480 homologs
## 1481 homologs
## 1482 homologs
## 1483 homologs
## 1484 homologs
## 1485 homologs
## 1486 homologs
## 1487 homologs
## 1488 homologs
## 1489 homologs
## 1490 homologs
## 1491 homologs
## 1492 homologs
## 1493 homologs
## 1494 homologs
## 1495 homologs
## 1496 homologs
## 1497 homologs
## 1498 homologs
## 1499 homologs
## 1500 homologs
## 1501 homologs
## 1502 homologs
## 1503 homologs
## 1504 homologs
## 1505 homologs
## 1506 homologs
## 1507 homologs
## 1508 homologs
## 1509 homologs
## 1510 homologs
## 1511 homologs
## 1512 homologs
## 1513 homologs
## 1514 homologs
## 1515 homologs
## 1516 homologs
## 1517 homologs
## 1518 homologs
## 1519 homologs
## 1520 homologs
## 1521 homologs
## 1522 homologs
## 1523 homologs
## 1524 homologs
## 1525 homologs
## 1526 homologs
## 1527 homologs
## 1528 homologs
## 1529 homologs
## 1530 homologs
## 1531 homologs
## 1532 homologs
## 1533 homologs
## 1534 homologs
## 1535 homologs
## 1536 homologs
## 1537 homologs
## 1538 homologs
## 1539 homologs
## 1540 homologs
## 1541 homologs
## 1542 homologs
## 1543 homologs
## 1544 homologs
## 1545 homologs
## 1546 homologs
## 1547 homologs
## 1548 homologs
## 1549 homologs
## 1550 homologs
## 1551 homologs
## 1552 homologs
## 1553 homologs
## 1554 homologs
## 1555 homologs
## 1556 homologs
## 1557 homologs
## 1558 homologs
## 1559 homologs
## 1560 homologs
## 1561 homologs
## 1562 homologs
## 1563 homologs
## 1564 homologs
## 1565 homologs
## 1566 homologs
## 1567 homologs
## 1568 homologs
## 1569 homologs
## 1570 homologs
## 1571 homologs
## 1572 homologs
## 1573 homologs
## 1574 homologs
## 1575 homologs
## 1576 homologs
## 1577 homologs
## 1578 homologs
## 1579 homologs
## 1580 homologs
## 1581 homologs
## 1582 homologs
## 1583 homologs
## 1584 homologs
## 1585 homologs
## 1586 homologs
## 1587 homologs
## 1588 homologs
## 1589 homologs
## 1590 homologs
## 1591 homologs
## 1592 homologs
## 1593 homologs
## 1594 homologs
## 1595 homologs
## 1596 homologs
## 1597 homologs
## 1598 homologs
## 1599 homologs
## 1600 homologs
## 1601 homologs
## 1602 homologs
## 1603 homologs
## 1604 homologs
## 1605 homologs
## 1606 homologs
## 1607 homologs
## 1608 homologs
## 1609 homologs
## 1610 homologs
## 1611 homologs
## 1612 homologs
## 1613 homologs
## 1614 homologs
## 1615 homologs
## 1616 homologs
## 1617 homologs
## 1618 homologs
## 1619 homologs
## 1620 homologs
## 1621 homologs
## 1622 homologs
## 1623 homologs
## 1624 homologs
## 1625 homologs
## 1626 homologs
## 1627 homologs
## 1628 homologs
## 1629 homologs
## 1630 homologs
## 1631 homologs
## 1632 homologs
## 1633 homologs
## 1634 homologs
## 1635 homologs
## 1636 homologs
## 1637 homologs
## 1638 homologs
## 1639 homologs
## 1640 homologs
## 1641 homologs
## 1642 homologs
## 1643 homologs
## 1644 homologs
## 1645 homologs
## 1646 homologs
## 1647 homologs
## 1648 homologs
## 1649 homologs
## 1650 homologs
## 1651 homologs
## 1652 homologs
## 1653 homologs
## 1654 homologs
## 1655 homologs
## 1656 homologs
## 1657 homologs
## 1658 homologs
## 1659 homologs
## 1660 homologs
## 1661 homologs
## 1662 homologs
## 1663 homologs
## 1664 homologs
## 1665 homologs
## 1666 homologs
## 1667 homologs
## 1668 homologs
## 1669 homologs
## 1670 homologs
## 1671 homologs
## 1672 homologs
## 1673 homologs
## 1674 homologs
## 1675 homologs
## 1676 homologs
## 1677 homologs
## 1678 homologs
## 1679 homologs
## 1680 homologs
## 1681 homologs
## 1682 homologs
## 1683 homologs
## 1684 homologs
## 1685 homologs
## 1686 homologs
## 1687 homologs
## 1688 homologs
## 1689 homologs
## 1690 homologs
## 1691 homologs
## 1692 homologs
## 1693 homologs
## 1694 homologs
## 1695 homologs
## 1696 homologs
## 1697 homologs
## 1698 homologs
## 1699 homologs
## 1700 homologs
## 1701 homologs
## 1702 homologs
## 1703 homologs
## 1704 homologs
## 1705 homologs
## 1706 homologs
## 1707 homologs
## 1708 homologs
## 1709 homologs
## 1710 homologs
## 1711 homologs
## 1712 homologs
## 1713 homologs
## 1714 homologs
## 1715 homologs
## 1716 homologs
## 1717 homologs
## 1718 homologs
## 1719 homologs
## 1720 homologs
## 1721 homologs
## 1722 homologs
## 1723 homologs
## 1724 homologs
## 1725 homologs
## 1726 homologs
## 1727 homologs
## 1728 homologs
## 1729 homologs
## 1730 homologs
## 1731 homologs
## 1732 homologs
## 1733 homologs
## 1734 homologs
## 1735 homologs
## 1736 homologs
## 1737 homologs
## 1738 homologs
## 1739 homologs
## 1740 homologs
## 1741 homologs
## 1742 homologs
## 1743 homologs
## 1744 homologs
## 1745 homologs
## 1746 homologs
## 1747 homologs
## 1748 homologs
## 1749 homologs
## 1750 homologs
## 1751 homologs
## 1752 homologs
## 1753 homologs
## 1754 homologs
## 1755 homologs
## 1756 homologs
## 1757 homologs
## 1758 homologs
## 1759 homologs
## 1760 homologs
## 1761 homologs
## 1762 homologs
## 1763 homologs
## 1764 homologs
## 1765 homologs
## 1766 homologs
## 1767 homologs
## 1768 homologs
## 1769 homologs
## 1770 homologs
## 1771 homologs
## 1772 homologs
## 1773 homologs
## 1774 homologs
## 1775 homologs
## 1776 homologs
## 1777 homologs
## 1778 homologs
## 1779 homologs
## 1780 homologs
## 1781 homologs
## 1782 homologs
## 1783 homologs
## 1784 homologs
## 1785 homologs
## 1786 homologs
## 1787 homologs
## 1788 homologs
## 1789 homologs
## 1790 homologs
## 1791 homologs
## 1792 homologs
## 1793 homologs
## 1794 homologs
## 1795 homologs
## 1796 homologs
## 1797 homologs
## 1798 homologs
## 1799 homologs
## 1800 homologs
## 1801 homologs
## 1802 homologs
## 1803 homologs
## 1804 homologs
## 1805 homologs
## 1806 homologs
## 1807 homologs
## 1808 homologs
## 1809 homologs
## 1810 homologs
## 1811 homologs
## 1812 homologs
## 1813 homologs
## 1814 homologs
## 1815 homologs
## 1816 homologs
## 1817 homologs
## 1818 homologs
## 1819 homologs
## 1820 homologs
## 1821 homologs
## 1822 homologs
## 1823 homologs
## 1824 homologs
## 1825 homologs
## 1826 homologs
## 1827 homologs
## 1828 homologs
## 1829 homologs
## 1830 homologs
## 1831 homologs
## 1832 homologs
## 1833 homologs
## 1834 homologs
## 1835 homologs
## 1836 homologs
## 1837 homologs
## 1838 homologs
## 1839 homologs
## 1840 homologs
## 1841 homologs
## 1842 homologs
## 1843 homologs
## 1844 homologs
## 1845 homologs
## 1846 homologs
## 1847 homologs
## 1848 homologs
## 1849 homologs
## 1850 homologs
## 1851 homologs
## 1852 homologs
## 1853 homologs
## 1854 homologs
## 1855 homologs
## 1856 homologs
## 1857 homologs
## 1858 homologs
## 1859 homologs
## 1860 homologs
## 1861 homologs
## 1862 homologs
## 1863 homologs
## 1864 homologs
## 1865 homologs
## 1866 homologs
## 1867 homologs
## 1868 homologs
## 1869 homologs
## 1870 homologs
## 1871 homologs
## 1872 homologs
## 1873 homologs
## 1874 homologs
## 1875 homologs
## 1876 homologs
## 1877 homologs
## 1878 homologs
## 1879 homologs
## 1880 homologs
## 1881 homologs
## 1882 homologs
## 1883 homologs
## 1884 homologs
## 1885 homologs
## 1886 homologs
## 1887 homologs
## 1888 homologs
## 1889 homologs
## 1890 homologs
## 1891 homologs
## 1892 homologs
## 1893 homologs
## 1894 homologs
## 1895 homologs
## 1896 homologs
## 1897 homologs
## 1898 homologs
## 1899 homologs
## 1900 homologs
## 1901 homologs
## 1902 homologs
## 1903 homologs
## 1904 homologs
## 1905 homologs
## 1906 homologs
## 1907 homologs
## 1908 homologs
## 1909 homologs
## 1910 homologs
## 1911 homologs
## 1912 homologs
## 1913 homologs
## 1914 homologs
## 1915 homologs
## 1916 homologs
## 1917 homologs
## 1918 homologs
## 1919 homologs
## 1920 homologs
## 1921 homologs
## 1922 homologs
## 1923 homologs
## 1924 homologs
## 1925 homologs
## 1926 homologs
## 1927 homologs
## 1928 homologs
## 1929 homologs
## 1930 homologs
## 1931 homologs
## 1932 homologs
## 1933 homologs
## 1934 homologs
## 1935 homologs
## 1936 homologs
## 1937 homologs
## 1938 homologs
## 1939 homologs
## 1940 homologs
## 1941 homologs
## 1942 homologs
## 1943 homologs
## 1944 homologs
## 1945 homologs
## 1946 homologs
## 1947 homologs
## 1948 homologs
## 1949 homologs
## 1950 homologs
## 1951 homologs
## 1952 homologs
## 1953 homologs
## 1954 homologs
## 1955 homologs
## 1956 homologs
## 1957 homologs
## 1958 homologs
## 1959 homologs
## 1960 homologs
## 1961 homologs
## 1962 homologs
## 1963 homologs
## 1964 homologs
## 1965 homologs
## 1966 homologs
## 1967 homologs
## 1968 homologs
## 1969 homologs
## 1970 homologs
## 1971 homologs
## 1972 homologs
## 1973 homologs
## 1974 homologs
## 1975 homologs
## 1976 homologs
## 1977 homologs
## 1978 homologs
## 1979 homologs
## 1980 homologs
## 1981 homologs
## 1982 homologs
## 1983 homologs
## 1984 homologs
## 1985 homologs
## 1986 homologs
## 1987 homologs
## 1988 homologs
## 1989 homologs
## 1990 homologs
## 1991 homologs
## 1992 homologs
## 1993 homologs
## 1994 homologs
## 1995 homologs
## 1996 homologs
## 1997 homologs
## 1998 homologs
## 1999 homologs
## 2000 homologs
## 2001 homologs
## 2002 homologs
## 2003 homologs
## 2004 homologs
## 2005 homologs
## 2006 homologs
## 2007 homologs
## 2008 homologs
## 2009 homologs
## 2010 homologs
## 2011 homologs
## 2012 homologs
## 2013 homologs
## 2014 homologs
## 2015 homologs
## 2016 homologs
## 2017 homologs
## 2018 homologs
## 2019 homologs
## 2020 homologs
## 2021 homologs
## 2022 homologs
## 2023 homologs
## 2024 homologs
## 2025 homologs
## 2026 homologs
## 2027 homologs
## 2028 homologs
## 2029 homologs
## 2030 homologs
## 2031 homologs
## 2032 homologs
## 2033 homologs
## 2034 homologs
## 2035 homologs
## 2036 homologs
## 2037 homologs
## 2038 homologs
## 2039 homologs
## 2040 homologs
## 2041 homologs
## 2042 homologs
## 2043 homologs
## 2044 homologs
## 2045 homologs
## 2046 homologs
## 2047 homologs
## 2048 homologs
## 2049 homologs
## 2050 homologs
## 2051 homologs
## 2052 homologs
## 2053 homologs
## 2054 homologs
## 2055 homologs
## 2056 homologs
## 2057 homologs
## 2058 homologs
## 2059 homologs
## 2060 homologs
## 2061 homologs
## 2062 homologs
## 2063 homologs
## 2064 homologs
## 2065 homologs
## 2066 homologs
## 2067 homologs
## 2068 homologs
## 2069 homologs
## 2070 homologs
## 2071 homologs
## 2072 homologs
## 2073 homologs
## 2074 homologs
## 2075 homologs
## 2076 homologs
## 2077 homologs
## 2078 homologs
## 2079 homologs
## 2080 homologs
## 2081 homologs
## 2082 homologs
## 2083 homologs
## 2084 homologs
## 2085 homologs
## 2086 homologs
## 2087 homologs
## 2088 homologs
## 2089 homologs
## 2090 homologs
## 2091 homologs
## 2092 homologs
## 2093 homologs
## 2094 homologs
## 2095 homologs
## 2096 homologs
## 2097 homologs
## 2098 homologs
## 2099 homologs
## 2100 homologs
## 2101 homologs
## 2102 homologs
## 2103 homologs
## 2104 homologs
## 2105 homologs
## 2106 homologs
## 2107 homologs
## 2108 homologs
## 2109 homologs
## 2110 homologs
## 2111 homologs
## 2112 homologs
## 2113 homologs
## 2114 homologs
## 2115 homologs
## 2116 homologs
## 2117 homologs
## 2118 homologs
## 2119 homologs
## 2120 homologs
## 2121 homologs
## 2122 homologs
## 2123 homologs
## 2124 homologs
## 2125 homologs
## 2126 homologs
## 2127 homologs
## 2128 homologs
## 2129 homologs
## 2130 homologs
## 2131 homologs
## 2132 homologs
## 2133 homologs
## 2134 homologs
## 2135 homologs
## 2136 homologs
## 2137 homologs
## 2138 homologs
## 2139 homologs
## 2140 homologs
## 2141 homologs
## 2142 homologs
## 2143 homologs
## 2144 homologs
## 2145 homologs
## 2146 homologs
## 2147 homologs
## 2148 homologs
## 2149 homologs
## 2150 homologs
## 2151 homologs
## 2152 homologs
## 2153 homologs
## 2154 homologs
## 2155 homologs
## 2156 homologs
## 2157 homologs
## 2158 homologs
## 2159 homologs
## 2160 homologs
## 2161 homologs
## 2162 homologs
## 2163 homologs
## 2164 homologs
## 2165 homologs
## 2166 homologs
## 2167 homologs
## 2168 homologs
## 2169 homologs
## 2170 homologs
## 2171 homologs
## 2172 homologs
## 2173 homologs
## 2174 homologs
## 2175 homologs
## 2176 homologs
## 2177 homologs
## 2178 homologs
## 2179 homologs
## 2180 homologs
## 2181 homologs
## 2182 homologs
## 2183 homologs
## 2184 homologs
## 2185 homologs
## 2186 homologs
## 2187 homologs
## 2188 homologs
## 2189 homologs
## 2190 homologs
## 2191 homologs
## 2192 homologs
## 2193 homologs
## 2194 homologs
## 2195 homologs
## 2196 homologs
## 2197 homologs
## 2198 homologs
## 2199 homologs
## 2200 homologs
## 2201 homologs
## 2202 homologs
## 2203 homologs
## 2204 homologs
## 2205 homologs
## 2206 homologs
## 2207 homologs
## 2208 homologs
## 2209 homologs
## 2210 homologs
## 2211 homologs
## 2212 homologs
## 2213 homologs
## 2214 homologs
## 2215 homologs
## 2216 homologs
## 2217 homologs
## 2218 homologs
## 2219 homologs
## 2220 homologs
## 2221 homologs
## 2222 homologs
## 2223 homologs
## 2224 homologs
## 2225 homologs
## 2226 homologs
## 2227 homologs
## 2228 homologs
## 2229 homologs
## 2230 homologs
## 2231 homologs
## 2232 homologs
## 2233 homologs
## 2234 homologs
## 2235 homologs
## 2236 homologs
## 2237 homologs
## 2238 homologs
## 2239 homologs
## 2240 homologs
## 2241 homologs
## 2242 homologs
## 2243 homologs
## 2244 homologs
## 2245 homologs
## 2246 homologs
## 2247 homologs
## 2248 homologs
## 2249 homologs
## 2250 homologs
## 2251 homologs
## 2252 homologs
## 2253 homologs
## 2254 homologs
## 2255 homologs
## 2256 homologs
## 2257 homologs
## 2258 homologs
## 2259 homologs
## 2260 homologs
## 2261 homologs
## 2262 homologs
## 2263 homologs
## 2264 homologs
## 2265 homologs
## 2266 homologs
## 2267 homologs
## 2268 homologs
## 2269 homologs
## 2270 homologs
## 2271 homologs
## 2272 homologs
## 2273 homologs
## 2274 homologs
## 2275 homologs
## 2276 homologs
## 2277 homologs
## 2278 homologs
## 2279 homologs
## 2280 homologs
## 2281 homologs
## 2282 homologs
## 2283 homologs
## 2284 homologs
## 2285 homologs
## 2286 homologs
## 2287 homologs
## 2288 homologs
## 2289 homologs
## 2290 homologs
## 2291 homologs
## 2292 homologs
## 2293 homologs
## 2294 homologs
## 2295 homologs
## 2296 homologs
## 2297 homologs
## 2298 homologs
## 2299 homologs
## 2300 homologs
## 2301 homologs
## 2302 homologs
## 2303 homologs
## 2304 homologs
## 2305 homologs
## 2306 homologs
## 2307 homologs
## 2308 homologs
## 2309 homologs
## 2310 homologs
## 2311 homologs
## 2312 homologs
## 2313 homologs
## 2314 homologs
## 2315 homologs
## 2316 homologs
## 2317 homologs
## 2318 homologs
## 2319 homologs
## 2320 homologs
## 2321 homologs
## 2322 homologs
## 2323 homologs
## 2324 homologs
## 2325 homologs
## 2326 homologs
## 2327 homologs
## 2328 homologs
## 2329 homologs
## 2330 homologs
## 2331 homologs
## 2332 homologs
## 2333 homologs
## 2334 homologs
## 2335 homologs
## 2336 homologs
## 2337 homologs
## 2338 homologs
## 2339 homologs
## 2340 homologs
## 2341 homologs
## 2342 homologs
## 2343 homologs
## 2344 homologs
## 2345 homologs
## 2346 homologs
## 2347 homologs
## 2348 homologs
## 2349 homologs
## 2350 homologs
## 2351 homologs
## 2352 homologs
## 2353 homologs
## 2354 homologs
## 2355 homologs
## 2356 homologs
## 2357 homologs
## 2358 homologs
## 2359 homologs
## 2360 homologs
## 2361 homologs
## 2362 homologs
## 2363 homologs
## 2364 homologs
## 2365 homologs
## 2366 homologs
## 2367 homologs
## 2368 homologs
## 2369 homologs
## 2370 homologs
## 2371 homologs
## 2372 homologs
## 2373 homologs
## 2374 homologs
## 2375 homologs
## 2376 homologs
## 2377 homologs
## 2378 homologs
## 2379 homologs
## 2380 homologs
## 2381 homologs
## 2382 homologs
## 2383 homologs
## 2384 homologs
## 2385 homologs
## 2386 homologs
## 2387 homologs
## 2388 homologs
## 2389 homologs
## 2390 homologs
## 2391 homologs
## 2392 homologs
## 2393 homologs
## 2394 homologs
## 2395 homologs
## 2396 homologs
## 2397 homologs
## 2398 homologs
## 2399 homologs
## 2400 homologs
## 2401 homologs
## 2402 homologs
## 2403 homologs
## 2404 homologs
## 2405 homologs
## 2406 homologs
## 2407 homologs
## 2408 homologs
## 2409 homologs
## 2410 homologs
## 2411 homologs
## 2412 homologs
## 2413 homologs
## 2414 homologs
## 2415 homologs
## 2416 homologs
## 2417 homologs
## 2418 homologs
## 2419 homologs
## 2420 homologs
## 2421 homologs
## 2422 homologs
## 2423 homologs
## 2424 homologs
## 2425 homologs
## 2426 homologs
## 2427 homologs
## 2428 homologs
## 2429 homologs
## 2430 homologs
## 2431 homologs
## 2432 homologs
## 2433 homologs
## 2434 homologs
## 2435 homologs
## 2436 homologs
## 2437 homologs
## 2438 homologs
## 2439 homologs
## 2440 homologs
## 2441 homologs
## 2442 homologs
## 2443 homologs
## 2444 homologs
## 2445 homologs
## 2446 homologs
## 2447 homologs
## 2448 homologs
## 2449 homologs
## 2450 homologs
## 2451 homologs
## 2452 homologs
## 2453 homologs
## 2454 homologs
## 2455 homologs
## 2456 homologs
## 2457 homologs
## 2458 homologs
## 2459 homologs
## 2460 homologs
## 2461 homologs
## 2462 homologs
## 2463 homologs
## 2464 homologs
## 2465 homologs
## 2466 homologs
## 2467 homologs
## 2468 homologs
## 2469 homologs
## 2470 homologs
## 2471 homologs
## 2472 homologs
## 2473 homologs
## 2474 homologs
## 2475 homologs
## 2476 homologs
## 2477 homologs
## 2478 homologs
## 2479 homologs
## 2480 homologs
## 2481 homologs
## 2482 homologs
## 2483 homologs
## 2484 homologs
## 2485 homologs
## 2486 homologs
## 2487 homologs
## 2488 homologs
## 2489 homologs
## 2490 homologs
## 2491 homologs
## 2492 homologs
## 2493 homologs
## 2494 homologs
## 2495 homologs
## 2496 homologs
## 2497 homologs
## 2498 homologs
## 2499 homologs
## 2500 homologs
## 2501 homologs
## 2502 homologs
## 2503 homologs
## 2504 homologs
## 2505 homologs
## 2506 homologs
## 2507 homologs
## 2508 homologs
## 2509 homologs
## 2510 homologs
## 2511 homologs
## 2512 homologs
## 2513 homologs
## 2514 homologs
## 2515 homologs
## 2516 homologs
## 2517 homologs
## 2518 homologs
## 2519 homologs
## 2520 homologs
## 2521 homologs
## 2522 homologs
## 2523 homologs
## 2524 homologs
## 2525 homologs
## 2526 homologs
## 2527 homologs
## 2528 homologs
## 2529 homologs
## 2530 homologs
## 2531 homologs
## 2532 homologs
## 2533 homologs
## 2534 homologs
## 2535 homologs
## 2536 homologs
## 2537 homologs
## 2538 homologs
## 2539 homologs
## 2540 homologs
## 2541 homologs
## 2542 homologs
## 2543 homologs
## 2544 homologs
## 2545 homologs
## 2546 homologs
## 2547 homologs
## 2548 homologs
## 2549 homologs
## 2550 homologs
## 2551 homologs
## 2552 homologs
## 2553 homologs
## 2554 homologs
## 2555 homologs
## 2556 homologs
## 2557 homologs
## 2558 homologs
## 2559 homologs
## 2560 homologs
## 2561 homologs
## 2562 homologs
## 2563 homologs
## 2564 homologs
## 2565 homologs
## 2566 homologs
## 2567 homologs
## 2568 homologs
## 2569 homologs
## 2570 homologs
## 2571 homologs
## 2572 homologs
## 2573 homologs
## 2574 homologs
## 2575 homologs
## 2576 homologs
## 2577 homologs
## 2578 homologs
## 2579 homologs
## 2580 homologs
## 2581 homologs
## 2582 homologs
## 2583 homologs
## 2584 homologs
## 2585 homologs
## 2586 homologs
## 2587 homologs
## 2588 homologs
## 2589 homologs
## 2590 homologs
## 2591 homologs
## 2592 homologs
## 2593 homologs
## 2594 homologs
## 2595 homologs
## 2596 homologs
## 2597 homologs
## 2598 homologs
## 2599 homologs
## 2600 homologs
## 2601 homologs
## 2602 homologs
## 2603 homologs
## 2604 homologs
## 2605 homologs
## 2606 homologs
## 2607 homologs
## 2608 homologs
## 2609 homologs
## 2610 homologs
## 2611 homologs
## 2612 homologs
## 2613 homologs
## 2614 homologs
## 2615 homologs
## 2616 homologs
## 2617 homologs
## 2618 homologs
## 2619 homologs
## 2620 homologs
## 2621 homologs
## 2622 homologs
## 2623 homologs
## 2624 homologs
## 2625 homologs
## 2626 homologs
## 2627 homologs
## 2628 homologs
## 2629 homologs
## 2630 homologs
## 2631 homologs
## 2632 homologs
## 2633 homologs
## 2634 homologs
## 2635 homologs
## 2636 homologs
## 2637 homologs
## 2638 homologs
## 2639 homologs
## 2640 homologs
## 2641 homologs
## 2642 homologs
## 2643 homologs
## 2644 homologs
## 2645 homologs
## 2646 homologs
## 2647 homologs
## 2648 homologs
## 2649 homologs
## 2650 homologs
## 2651 homologs
## 2652 homologs
## 2653 homologs
## 2654 homologs
## 2655 homologs
## 2656 homologs
## 2657 homologs
## 2658 homologs
## 2659 homologs
## 2660 homologs
## 2661 homologs
## 2662 homologs
## 2663 homologs
## 2664 homologs
## 2665 homologs
## 2666 homologs
## 2667 homologs
## 2668 homologs
## 2669 homologs
## 2670 homologs
## 2671 homologs
## 2672 homologs
## 2673 homologs
## 2674 homologs
## 2675 homologs
## 2676 homologs
## 2677 homologs
## 2678 homologs
## 2679 homologs
## 2680 homologs
## 2681 homologs
## 2682 homologs
## 2683 homologs
## 2684 homologs
## 2685 homologs
## 2686 homologs
## 2687 homologs
## 2688 homologs
## 2689 homologs
## 2690 homologs
## 2691 homologs
## 2692 homologs
## 2693 homologs
## 2694 homologs
## 2695 homologs
## 2696 homologs
## 2697 homologs
## 2698 homologs
## 2699 homologs
## 2700 homologs
## 2701 homologs
## 2702 homologs
## 2703 homologs
## 2704 homologs
## 2705 homologs
## 2706 homologs
## 2707 homologs
## 2708 homologs
## 2709 homologs
## 2710 homologs
## 2711 homologs
## 2712 homologs
## 2713 homologs
## 2714 homologs
## 2715 homologs
## 2716 homologs
## 2717 homologs
## 2718 homologs
## 2719 homologs
## 2720 homologs
## 2721 homologs
## 2722 homologs
## 2723 homologs
## 2724 homologs
## 2725 homologs
## 2726 homologs
## 2727 homologs
## 2728 homologs
## 2729 homologs
## 2730 homologs
## 2731 homologs
## 2732 homologs
## 2733 homologs
## 2734 homologs
## 2735 homologs
## 2736 homologs
## 2737 homologs
## 2738 homologs
## 2739 homologs
## 2740 homologs
## 2741 homologs
## 2742 homologs
## 2743 homologs
## 2744 homologs
## 2745 homologs
## 2746 homologs
## 2747 homologs
## 2748 homologs
## 2749 homologs
## 2750 homologs
## 2751 homologs
## 2752 homologs
## 2753 homologs
## 2754 homologs
## 2755 homologs
## 2756 homologs
## 2757 homologs
## 2758 homologs
## 2759 homologs
## 2760 homologs
## 2761 homologs
## 2762 homologs
## 2763 homologs
## 2764 homologs
## 2765 homologs
## 2766 homologs
## 2767 homologs
## 2768 homologs
## 2769 homologs
## 2770 homologs
## 2771 homologs
## 2772 homologs
## 2773 homologs
## 2774 homologs
## 2775 homologs
## 2776 homologs
## 2777 homologs
## 2778 homologs
## 2779 homologs
## 2780 homologs
## 2781 homologs
## 2782 homologs
## 2783 homologs
## 2784 homologs
## 2785 homologs
## 2786 homologs
## 2787 homologs
## 2788 homologs
## 2789 homologs
## 2790 homologs
## 2791 homologs
## 2792 homologs
## 2793 homologs
## 2794 homologs
## 2795 homologs
## 2796 homologs
## 2797 homologs
## 2798 homologs
## 2799 homologs
## 2800 homologs
## 2801 homologs
## 2802 homologs
## 2803 homologs
## 2804 homologs
## 2805 homologs
## 2806 homologs
## 2807 homologs
## 2808 homologs
## 2809 homologs
## 2810 homologs
## 2811 homologs
## 2812 homologs
## 2813 homologs
## 2814 homologs
## 2815 homologs
## 2816 homologs
## 2817 homologs
## 2818 homologs
## 2819 homologs
## 2820 homologs
## 2821 homologs
## 2822 homologs
## 2823 homologs
## 2824 homologs
## 2825 homologs
## 2826 homologs
## 2827 homologs
## 2828 homologs
## 2829 homologs
## 2830 homologs
## 2831 homologs
## 2832 homologs
## 2833 homologs
## 2834 homologs
## 2835 homologs
## 2836 homologs
## 2837 homologs
## 2838 homologs
## 2839 homologs
## 2840 homologs
## 2841 homologs
## 2842 homologs
## 2843 homologs
## 2844 homologs
## 2845 homologs
## 2846 homologs
## 2847 homologs
## 2848 homologs
## 2849 homologs
## 2850 homologs
## 2851 homologs
## 2852 homologs
## 2853 homologs
## 2854 homologs
## 2855 homologs
## 2856 homologs
## 2857 homologs
## 2858 homologs
## 2859 homologs
## 2860 homologs
## 2861 homologs
## 2862 homologs
## 2863 homologs
## 2864 homologs
## 2865 homologs
## 2866 homologs
## 2867 homologs
## 2868 homologs
## 2869 homologs
## 2870 homologs
## 2871 homologs
## 2872 homologs
## 2873 homologs
## 2874 homologs
## 2875 homologs
## 2876 homologs
## 2877 homologs
## 2878 homologs
## 2879 homologs
## 2880 homologs
## 2881 homologs
## 2882 homologs
## 2883 homologs
## 2884 homologs
## 2885 homologs
## 2886 homologs
## 2887 homologs
## 2888 homologs
## 2889 homologs
## 2890 homologs
## 2891 homologs
## 2892 homologs
## 2893 homologs
## 2894 homologs
## 2895 homologs
## 2896 homologs
## 2897 homologs
## 2898 homologs
## 2899 homologs
## 2900 homologs
## 2901 homologs
## 2902 homologs
## 2903 homologs
## 2904 homologs
## 2905 homologs
## 2906 homologs
## 2907 homologs
## 2908 homologs
## 2909 homologs
## 2910 homologs
## 2911 homologs
## 2912 homologs
## 2913 homologs
## 2914 homologs
## 2915 homologs
## 2916 homologs
## 2917 homologs
## 2918 homologs
## 2919 homologs
## 2920 homologs
## 2921 homologs
## 2922 homologs
## 2923 homologs
## 2924 homologs
## 2925 homologs
## 2926 homologs
## 2927 homologs
## 2928 homologs
## 2929 homologs
## 2930 homologs
## 2931 homologs
## 2932 homologs
## 2933 homologs
## 2934 homologs
## 2935 homologs
## 2936 homologs
## 2937 homologs
## 2938 homologs
## 2939 homologs
## 2940 homologs
## 2941 homologs
## 2942 homologs
## 2943 homologs
## 2944 homologs
## 2945 homologs
## 2946 homologs
## 2947 homologs
## 2948 homologs
## 2949 homologs
## 2950 homologs
## 2951 homologs
## 2952 homologs
## 2953 homologs
## 2954 homologs
## 2955 homologs
## 2956 homologs
## 2957 homologs
## 2958 homologs
## 2959 homologs
## 2960 homologs
## 2961 homologs
## 2962 homologs
## 2963 homologs
## 2964 homologs
## 2965 homologs
## 2966 homologs
## 2967 homologs
## 2968 homologs
## 2969 homologs
## 2970 homologs
## 2971 homologs
## 2972 homologs
## 2973 homologs
## 2974 homologs
## 2975 homologs
## 2976 homologs
## 2977 homologs
## 2978 homologs
## 2979 homologs
## 2980 homologs
## 2981 homologs
## 2982 homologs
## 2983 homologs
## 2984 homologs
## 2985 homologs
## 2986 homologs
## 2987 homologs
## 2988 homologs
## 2989 homologs
## 2990 homologs
## 2991 homologs
## 2992 homologs
## 2993 homologs
## 2994 homologs
## 2995 homologs
## 2996 homologs
## 2997 homologs
## 2998 homologs
## 2999 homologs
## 3000 homologs
## 3001 homologs
## 3002 homologs
## 3003 homologs
## 3004 homologs
## 3005 homologs
## 3006 homologs
## 3007 homologs
## 3008 homologs
## 3009 homologs
## 3010 homologs
## 3011 homologs
## 3012 homologs
## 3013 homologs
## 3014 homologs
## 3015 homologs
## 3016 homologs
## 3017 homologs
## 3018 snp
## 3019 snp
## 3020 snp
## 3021 snp
## 3022 snp
## 3023 snp
## 3024 snp
## 3025 snp
## 3026 snp
## 3027 snp
## 3028 snp
## 3029 snp
## 3030 snp
## 3031 snp
## 3032 snp
## 3033 snp
## 3034 snp
## 3035 snp
## 3036 snp
## 3037 snp
## 3038 snp
## 3039 snp
## 3040 snp
## 3041 snp
## 3042 snp
## 3043 snp
## 3044 snp
## 3045 snp
## 3046 snp
## 3047 snp
## 3048 snp
## 3049 snp
## 3050 snp
## 3051 snp
## 3052 snp
## 3053 snp
## 3054 snp
## 3055 snp
## 3056 snp
## 3057 snp
## 3058 snp
## 3059 snp
## 3060 snp
## 3061 snp
## 3062 snp_somatic
## 3063 snp_somatic
## 3064 snp_somatic
## 3065 snp_somatic
## 3066 snp_somatic
## 3067 snp_somatic
## 3068 snp_somatic
## 3069 snp_somatic
## 3070 snp_somatic
## 3071 snp_somatic
## 3072 snp_somatic
## 3073 snp_somatic
## 3074 snp_somatic
## 3075 snp_somatic
## 3076 snp_somatic
## 3077 snp_somatic
## 3078 snp_somatic
## 3079 snp_somatic
## 3080 snp_somatic
## 3081 snp_somatic
## 3082 snp_somatic
## 3083 snp_somatic
## 3084 snp_somatic
## 3085 snp_somatic
## 3086 snp_somatic
## 3087 snp_somatic
## 3088 snp_somatic
## 3089 snp_somatic
## 3090 snp_somatic
## 3091 snp_somatic
## 3092 snp_somatic
## 3093 snp_somatic
## 3094 snp_somatic
## 3095 snp_somatic
## 3096 snp_somatic
## 3097 sequences
## 3098 sequences
## 3099 sequences
## 3100 sequences
## 3101 sequences
## 3102 sequences
## 3103 sequences
## 3104 sequences
## 3105 sequences
## 3106 sequences
## 3107 sequences
## 3108 sequences
## 3109 sequences
## 3110 sequences
## 3111 sequences
## 3112 sequences
## 3113 sequences
## 3114 sequences
## 3115 sequences
## 3116 sequences
## 3117 sequences
## 3118 sequences
## 3119 sequences
## 3120 sequences
## 3121 sequences
## 3122 sequences
## 3123 sequences
## 3124 sequences
## 3125 sequences
## 3126 sequences
## 3127 sequences
## 3128 sequences
## 3129 sequences
## 3130 sequences
## 3131 sequences
## 3132 sequences
## 3133 sequences
## 3134 sequences
## 3135 sequences
## 3136 sequences
## 3137 sequences
## 3138 sequences
## 3139 sequences
## 3140 sequences
## 3141 sequences
## 3142 sequences
## 3143 sequences
## 3144 sequences
## 3145 sequences
## 3146 sequences
## 3147 sequences
## 3148 sequences
## 3149 sequences
## 3150 sequences
## 3151 sequences
## 3152 sequences
## 3153 sequences
## 3154 sequences
## 3155 sequences
## 3156 sequences
tx2gene <- getBM(attributes = c("ensembl_transcript_id_version", "hgnc_symbol"), mart = mart, useCache = FALSE)
head(tx2gene)
## ensembl_transcript_id_version hgnc_symbol
## 1 ENST00000387314.1 MT-TF
## 2 ENST00000389680.2 MT-RNR1
## 3 ENST00000387342.1 MT-TV
## 4 ENST00000387347.2 MT-RNR2
## 5 ENST00000386347.1 MT-TL1
## 6 ENST00000361390.2 MT-ND1
TXI object
txi <- tximport(files, type = "kallisto", tx2gene = tx2gene)
head(txi$counts)
## D_CON1 D_CON2 D_CON3 D_TREAT1 D_TREAT2
## 320239.33685 279214.59791 310829.19263 3.660786e+05 3.268363e+05
## A1BG 79.16316 19.52848 16.26144 4.146486e+01 3.923610e+01
## A1CF 4.00000 0.00000 6.00253 4.006365e+00 4.031743e+00
## A2M 4126.00000 1005.00000 1374.00000 6.950000e+02 1.529000e+03
## A2ML1 17.93577 14.40054 13.08318 9.010019e+00 1.881112e+01
## A2MP1 7.00000 11.00000 2.00000 1.800000e+01 9.000000e+00
## D_TREAT3 H_CON1 H_CON2 H_CON3 H_CYTKN1
## 265697.16538 350090.2698 2.686039e+05 2.260295e+05 3.253813e+05
## A1BG 45.90271 56.5765 1.015497e+02 3.824340e+01 7.106578e+01
## A1CF 0.00000 1.0000 0.000000e+00 4.008713e+00 4.000000e+00
## A2M 2930.00000 3003.0000 8.760000e+02 5.580000e+02 6.465000e+03
## A2ML1 15.06801 16.6282 7.492394e+00 4.028411e+00 8.244331e+00
## A2MP1 4.00000 5.0000 3.000000e+00 1.000000e+01 1.000000e+01
## H_CYTKN2 H_CYTKN3 H_TREAT1 H_TREAT2 H_TREAT3
## 2.949614e+05 374090.09195 2.641537e+05 2.943063e+05 223570.33200
## A1BG 6.908696e+01 56.30732 6.004986e+01 4.121510e+01 61.27979
## A1CF 3.000659e+00 2.00000 7.009629e+00 1.009330e+00 0.00000
## A2M 3.740000e+02 1294.00000 1.070000e+02 1.854000e+03 102.00000
## A2ML1 5.297068e+00 12.00922 8.069787e+00 8.022131e+00 18.58668
## A2MP1 1.000000e+00 10.00000 3.000000e+00 1.300000e+01 3.00000
Beware DDS object
dds <- DESeqDataSetFromTximport(txi, colData = samples, design = ~ replicate + condition )
Start to change case by case Relevel
dds$condition <- relevel(dds$condition, ref = "healthy_control")
dds <- DESeq(dds)
resultsNames(dds)
## [1] "Intercept"
## [2] "replicate_2_vs_1"
## [3] "replicate_3_vs_1"
## [4] "condition_disease_control_vs_healthy_control"
## [5] "condition_disease_treatment_vs_healthy_control"
## [6] "condition_healthy_cytokine_vs_healthy_control"
## [7] "condition_healthy_treatment_vs_healthy_control"
## show post hoc re-leveling doesn't work:
#dds$condition <- relevel(dds$condition, ref = "lung")
#resultsNames(dds)
extract counts
counts <- counts(dds, normalized=TRUE)
transform counts
## DESeq2 is weird about extracting transformations as a matrix - you must use `assay()`
log2 <- assay(normTransform(dds))
rld <- assay(rlog(dds))
BiocManager::install('vsn')
## Bioconductor version 3.15 (BiocManager 1.30.20), R 4.2.1 (2022-06-23)
## Warning: package(s) not installed when version(s) same as or greater than current; use
## `force = TRUE` to re-install: 'vsn'
## Old packages: 'igraph'
BiocManager::install('hexbin')
## Bioconductor version 3.15 (BiocManager 1.30.20), R 4.2.1 (2022-06-23)
## Warning: package(s) not installed when version(s) same as or greater than current; use
## `force = TRUE` to re-install: 'hexbin'
## Old packages: 'igraph'
library(vsn)
library(hexbin)
## x-axis is the transformed mean not the raw mean..
log2_plt <- meanSdPlot(log2, ranks=FALSE, plot=FALSE)
log2_plt$gg + ggtitle("Log2 + PC Transformation") + xlim(0,20)
rld_plt <- meanSdPlot(rld, ranks=FALSE, plot=FALSE)
rld_plt$gg + ggtitle("Rlog Transformation") + xlim(0,20)
Sample heatmap
rld <- assay(rlog(dds))
sampleDists <- dist(t(rld))
## Place distances in matrix
sampleDistMatrix <- as.matrix(sampleDists)
## Optional, remove colnames
colnames(sampleDistMatrix) <- NULL
## create annotation dataframe
ann <- data.frame(Condition = samples$condition)
col <- c("blue", "red1")
names(col) <- c("treatment", "control")
ann_col <- list(Condition = col)
## match annotation rownames to distance mat
rownames(ann) <- rownames(sampleDistMatrix)
pheatmap(mat=sampleDistMatrix,
## pass distance metric calculated to heatmap
clustering_distance_rows=sampleDists,
clustering_distance_cols=sampleDists,
## pass annotation dataframe
## add colors
#annotation_colors = ann_col,
## heatmap colours
col=hcl.colors(100,"GnBu",rev=T))
PCA
p <- pca(rld, metadata = samples)
biplot(p,
colby = 'condition',
colkey = c('healthy_treatment'='royalblue', 'healthy_control'='red1',
'healthy_cytokine' = 'forestgreen', 'disease_control' = 'purple',
'disease_treatment' = 'gold'),
ellipse = T,
hline = 0,
vline = 0,
legendPosition = 'right',
legendLabSize = 12,
legendIconSize = 8.0,
title = 'PCA bi-plot',
subtitle = 'PC1 versus PC2')
DESeq
# make healthy_cytokine vs healthy_control
h_con_v_h_cyto <- results(dds, filterFun=ihw, alpha=0.05, c("condition", "healthy_cytokine", "healthy_control"))
res1 <- lfcShrink(dds=dds, res=h_con_v_h_cyto, coef=6, type="apeglm")
summary(res1)
##
## out of 23094 with nonzero total read count
## adjusted p-value < 0.05
## LFC > 0 (up) : 1764, 7.6%
## LFC < 0 (down) : 1373, 5.9%
## outliers [1] : 0, 0%
## [1] see 'cooksCutoff' argument of ?results
## see metadata(res)$ihwResult on hypothesis weighting
# make melanoma vs control object
#h_con_v_h_treat <- results(dds, filterFun=ihw, alpha=0.05, c("condition", "healthy_treatment", "healthy_control"))
#res2 <- lfcShrink(dds=dds, res=h_con_v_h_treat, coef=7, type="apeglm")
#summary(res2)
function
#resdf<- as.data.frame(res)
get_upregulated <- function(df){
key <- intersect(rownames(df)[which(df$log2FoldChange>=0.5)], rownames(df)[which(df$padj<=0.1)])
results <- as.data.frame((df)[which(rownames(df) %in% key),])
return(results)
}
get_downregulated <- function(df){
key <- intersect(rownames(df)[which(df$log2FoldChange<=-0.5)],rownames(df)[which(df$padj<=0.1)])
results <- as.data.frame((df)[which(rownames(df) %in% key),])
return(results)
}
de_up <- get_upregulated(as.data.frame(res1))
de_up
## baseMean log2FoldChange lfcSE pvalue padj
## A4GALT 6.745895e+02 0.7491025 0.31374635 1.847309e-03 1.364120e-02
## ABCA1 4.650326e+02 2.2760436 0.46605559 4.080967e-08 1.529277e-06
## ABCF2 1.607240e+03 0.6606600 0.13092024 7.755699e-08 2.926465e-06
## ABHD16A 1.346953e+03 0.5073766 0.10725302 6.461723e-07 1.832360e-05
## ABHD2 6.298183e+03 0.6380424 0.19036774 1.403631e-04 1.205224e-03
## ABHD5 1.340878e+03 0.9143793 0.15942268 1.072759e-09 6.159482e-08
## ABL1 6.655701e+03 1.1605392 0.16865298 4.515174e-13 3.598308e-11
## ABL2 3.036433e+03 0.5206667 0.16994112 5.428179e-04 4.563077e-03
## ABTB2 3.468080e+02 0.7119928 0.24840476 5.630531e-04 6.391728e-03
## ACKR3 2.697508e+03 0.6224982 0.43320218 1.584297e-02 6.316780e-02
## ACLY 7.187253e+03 0.5384347 0.13526415 1.576303e-05 2.193787e-04
## ACO1 5.636925e+03 1.4681409 0.12560345 1.186891e-32 7.002231e-30
## ACP2 1.513551e+03 0.6466120 0.13926681 6.203456e-07 1.761337e-05
## ACSL4 3.137373e+03 1.1614924 0.34244501 3.609074e-05 5.061742e-04
## ADAM28 4.356398e+01 1.0546431 0.97486203 7.668585e-03 3.568933e-02
## ADAMTS1 2.720092e+04 1.2203552 0.52342739 8.919441e-04 5.694897e-03
## ADAMTS6 2.929875e+02 1.7103561 0.60301303 1.369170e-04 1.731944e-03
## ADGRA3 1.716969e+03 0.5319493 0.19147303 1.203939e-03 1.010082e-02
## ADM 2.833821e+03 1.4286945 0.29761826 8.812256e-08 2.915090e-06
## ADORA2A 7.133919e+01 2.6848195 0.37180294 2.268519e-14 3.493971e-12
## ADORA2B 3.568646e+02 0.6668221 0.23183374 6.051034e-04 5.733155e-03
## ADPGK 2.545857e+03 0.6338687 0.13710073 6.940997e-07 1.419849e-05
## AEN 1.382525e+03 0.6613378 0.12774408 4.565521e-08 1.647168e-06
## AFAP1 3.987439e+03 0.9628258 0.14822503 9.134863e-12 5.349528e-10
## AFP 3.647333e+01 2.5740538 0.54683931 1.131794e-07 3.289252e-06
## AGFG1 2.821984e+03 0.6528000 0.14771641 1.814261e-06 3.166320e-05
## AGPAT4 1.105200e+03 0.5965593 0.18743545 2.816230e-04 3.166409e-03
## AGRN 1.064268e+04 0.6841594 0.31490981 3.427455e-03 1.669093e-02
## AGTRAP 9.888357e+02 0.7766045 0.18367788 3.210162e-06 6.140140e-05
## AIFM1 9.420544e+02 0.6084421 0.12793671 4.457070e-07 1.063364e-05
## AIFM2 1.183950e+03 0.5188466 0.18137732 1.039998e-03 9.031738e-03
## AK3 3.336376e+03 0.5551177 0.15637815 8.976257e-05 1.095705e-03
## AK4 2.869423e+03 0.7570190 0.24878736 2.621036e-04 2.152432e-03
## AKAP12 1.327040e+04 0.9677327 0.43399924 1.474015e-03 9.427943e-03
## AKIRIN1 1.845277e+03 0.6179285 0.09258168 4.293041e-12 3.994909e-10
## AKR1B1 8.299065e+03 2.6153816 0.19725410 1.091626e-41 2.240890e-38
## AKR1C1 6.201265e+03 3.1609139 0.56943784 6.751833e-10 3.156608e-08
## AKR1C2 3.337844e+03 2.5041517 0.54443920 7.392330e-08 2.427718e-06
## AKR1C3 8.055705e+02 1.4353404 0.54452238 3.010543e-04 2.991007e-03
## ALDH1B1 9.375567e+02 0.9407501 0.21661344 1.361594e-06 2.962445e-05
## ALDH2 4.545064e+03 0.7583902 0.21330421 4.913157e-05 6.264978e-04
## ALDOA 2.366135e+04 0.9201803 0.17375181 1.094562e-08 4.023973e-07
## ALG3 9.625328e+02 0.5492270 0.11873857 9.142013e-07 2.104113e-05
## ALG8 8.616434e+02 0.5050085 0.11752942 5.060161e-06 8.398255e-05
## ALG9 9.608487e+02 0.5918423 0.17737502 1.697157e-04 1.640756e-03
## AMMECR1L 1.888903e+03 0.5148010 0.10543154 2.961174e-07 7.337342e-06
## AMPD3 8.624474e+02 1.0631146 0.29419017 2.468059e-05 3.569613e-04
## AMPH 5.546650e+02 2.0487807 0.39777498 1.143369e-08 4.933402e-07
## ANGPT1 1.246138e+03 1.6781468 0.31514916 5.097469e-09 2.366670e-07
## ANGPTL4 4.469447e+02 1.4881217 0.35197768 1.087481e-06 2.867835e-05
## ANKRD9 9.563139e+02 0.5272143 0.25189744 7.437055e-03 3.801687e-02
## ANO9 3.213292e+01 2.8146300 1.51579069 8.815396e-04 6.752759e-03
## ANTXR1 1.344999e+04 0.6125276 0.24113239 1.830040e-03 1.009113e-02
## APLN 1.350753e+02 0.9934320 0.96681908 5.755467e-03 3.399293e-02
## APMAP 4.286142e+03 0.5409656 0.13369306 1.330042e-05 1.900877e-04
## APOL2 1.741196e+03 0.5513997 0.10569838 4.594660e-08 1.437484e-06
## APOO 3.592759e+02 0.9103886 0.14505780 4.276029e-11 3.985360e-09
## ARHGAP24 2.262061e+02 1.0154309 0.40800031 8.059223e-04 8.194547e-03
## ARID3A 3.263448e+02 0.9271776 0.45632922 2.598831e-03 2.174265e-02
## ARRDC3 1.364293e+03 1.2836300 0.42925307 1.066529e-04 1.218908e-03
## ARSJ 2.847425e+03 0.5976039 0.26150832 3.601698e-03 1.787661e-02
## ASAH2 4.215038e+01 1.3819786 0.68516000 1.668255e-03 1.356163e-02
## ASAH2B 2.285520e+02 0.6963657 0.19331975 4.790716e-05 8.107060e-04
## ASAP1 2.718862e+03 0.5165726 0.14462675 8.958492e-05 1.095705e-03
## ASL 1.025386e+03 0.5010424 0.14117572 1.034229e-04 1.376277e-03
## ASPH 1.867987e+04 0.7860851 0.19490700 7.060256e-06 9.530443e-05
## ASPHD1 1.895505e+02 0.6288718 0.37647084 1.124518e-02 6.296708e-02
## ATAD3A 1.188436e+03 0.5009900 0.19382883 2.446627e-03 1.791615e-02
## ATP1B1 3.202689e+03 0.6325032 0.33046797 6.934674e-03 3.468483e-02
## ATP1B3 2.780668e+03 0.7107004 0.18790689 2.283250e-05 3.468366e-04
## ATP5F1B 1.421288e+04 0.5414922 0.11939152 1.450990e-06 2.551040e-05
## ATP5MC1 1.103861e+03 0.8370905 0.11947937 3.233947e-13 3.879342e-11
## ATP5MC3 2.873891e+03 0.6572981 0.17944400 4.191228e-05 4.635572e-04
## ATP5MG 1.977896e+03 0.7345062 0.15451639 2.959198e-07 9.421937e-06
## ATP5MK 1.213999e+03 0.5239770 0.15787283 2.263985e-04 2.579065e-03
## ATP5PD 2.480088e+03 0.6555714 0.10256145 3.151462e-11 1.788209e-09
## ATP6V0B 1.873917e+03 0.7767975 0.12195892 2.852271e-11 2.312456e-09
## ATP6V1G1 2.809139e+03 0.5170498 0.08664273 5.580988e-10 2.914164e-08
## ATP8B4 3.687810e+01 2.5422124 0.57844584 5.165966e-07 1.260459e-05
## AVEN 5.467904e+02 0.7133651 0.20084135 5.618891e-05 7.288524e-04
## AVPI1 8.462360e+02 0.9620728 0.21922348 9.613623e-07 2.301374e-05
## B2M 3.099149e+04 0.7170003 0.28159365 1.307503e-03 9.213685e-03
## B3GNT2 5.582266e+02 0.7882251 0.14055431 2.858125e-09 1.494967e-07
## B4GALT1 8.331980e+03 0.9391007 0.14090513 2.774508e-12 2.282854e-10
## B4GALT4 3.420934e+03 0.7083372 0.13845721 5.005696e-08 1.431720e-06
## BAG1 1.775572e+03 0.8620357 0.15792321 5.552886e-09 2.866154e-07
## BASP1 3.549104e+03 1.1465318 0.25966117 8.012599e-07 1.846862e-05
## BATF 1.599800e+01 1.2039851 1.40725536 6.617249e-03 4.928438e-02
## BCAT1 5.105947e+03 0.8190445 0.17904512 5.916463e-07 1.444653e-05
## BCL2A1 6.362805e+01 5.5932327 1.04084078 1.192158e-09 7.140627e-08
## BCL3 1.199443e+03 0.9816223 0.15965591 7.990615e-11 5.336170e-09
## BDKRB1 6.543231e+02 0.5951812 0.23881166 2.091301e-03 1.505330e-02
## BDNF 9.013505e+02 3.4679795 0.48648355 1.293803e-14 1.735941e-12
## BHLHE40 2.878995e+03 0.9022032 0.28749244 1.306203e-04 1.486584e-03
## BID 9.809329e+02 2.0079084 0.16067263 4.342153e-37 7.557843e-34
## BIRC3 9.396073e+02 1.8178042 0.34359163 5.608836e-09 2.895410e-07
## BMP1 4.747158e+03 0.8950087 0.19310152 3.784636e-07 7.827572e-06
## BMP2 3.509065e+02 2.9530660 0.62285623 3.481473e-08 1.455709e-06
## BMP6 6.873867e+02 2.0317806 0.32583685 2.486470e-11 2.042104e-09
## BNIP3 4.089910e+03 1.0829383 0.31841576 3.899369e-05 4.248846e-04
## BOLA2 5.202496e+02 0.5380966 0.20666044 2.029192e-03 1.472103e-02
## BOLA3 4.622433e+02 0.6935688 0.20327045 9.818148e-05 1.319161e-03
## BPNT2 5.754567e+03 0.5710131 0.12849762 1.687896e-06 3.489642e-05
## BRINP2 1.301127e+01 2.3651991 1.09377736 1.082141e-03 1.188504e-02
## BST2 1.842749e+01 2.0198939 1.60014873 3.022869e-03 2.522409e-02
## BTG3 1.203776e+03 0.7044773 0.21150392 1.233958e-04 1.552433e-03
## BTN2A1 1.463335e+03 0.6459995 0.17418764 3.584165e-05 5.667897e-04
## BTN2A2 5.317683e+02 0.5282554 0.17505350 6.417735e-04 5.674426e-03
## BTN3A2 8.189279e+02 0.8330189 0.38654890 2.510587e-03 1.584002e-02
## BTN3A3 8.604818e+02 0.5170046 0.13093447 2.210169e-05 3.398901e-04
## BTNL12P 6.627055e+01 0.7253353 0.34682363 4.031084e-03 2.278313e-02
## BYSL 5.527450e+02 0.5876256 0.14891145 1.636632e-05 2.590392e-04
## C10orf90 8.215803e+01 1.2131195 0.30877058 6.169842e-06 1.321267e-04
## C11orf96 1.049779e+03 1.6329419 0.57053507 1.787587e-04 1.936189e-03
## C15orf48 3.569027e+02 9.9255563 0.96279933 9.293877e-25 4.832101e-22
## C16orf74 5.035302e+01 0.9080623 0.39597898 1.648477e-03 1.117469e-02
## C1GALT1 2.070544e+03 0.6246994 0.24109704 1.375537e-03 1.014479e-02
## C1GALT1C1 8.906550e+02 0.5390804 0.11310138 4.857604e-07 1.454142e-05
## C1GALT1C1L 4.401908e+01 0.8421680 0.35436618 1.603688e-03 1.442082e-02
## C1orf53 4.496728e+01 1.2313928 0.32362231 1.046646e-05 2.070513e-04
## C1QTNF1 3.351862e+03 2.8821246 0.25621069 3.764796e-31 2.129641e-28
## C1R 3.285065e+04 0.7933320 0.27284171 3.987390e-04 2.965562e-03
## C1S 4.498299e+04 0.8759866 0.22035891 7.635202e-06 1.295707e-04
## C2CD4A 2.250980e+01 3.2093952 0.90804765 4.871428e-06 1.397651e-04
## C2CD4B 1.299342e+01 8.5141123 2.89036158 4.327887e-07 1.604328e-05
## C3 2.380020e+04 3.9728320 0.38523865 1.962403e-26 5.844584e-24
## C5orf15 4.517723e+03 0.5620677 0.12840023 2.548724e-06 4.110347e-05
## CA12 1.579642e+04 1.7666093 0.61497193 1.486958e-04 1.311672e-03
## CA8 5.793432e+01 0.9858249 0.82415525 7.308391e-03 3.568933e-02
## CA9 2.395215e+02 4.0039716 0.86537652 8.563682e-09 4.099859e-07
## CABLES1 2.557544e+03 3.3526381 0.40895900 2.821554e-18 5.853555e-16
## CACNA1C 7.173298e+02 0.6531605 0.27329934 2.408251e-03 1.770511e-02
## CASTOR2 7.138837e+02 0.5900856 0.21771590 1.212520e-03 9.213685e-03
## CASZ1 2.665429e+02 0.6551854 0.37874083 9.112367e-03 5.749672e-02
## CCDC122 1.953636e+02 0.5473924 0.26282655 7.096439e-03 5.838652e-02
## CCDC86 5.764099e+02 0.5041197 0.14948798 1.960853e-04 2.216355e-03
## CCIN 1.756916e+01 0.8861601 0.84699911 1.002627e-02 6.706325e-02
## CCL2 6.948155e+03 4.9061756 0.41192341 5.446453e-35 4.929453e-32
## CCL20 1.120427e+02 6.5538822 0.90744069 4.737632e-14 1.060797e-11
## CCL28 2.683908e+02 0.5999052 0.20551594 6.413513e-04 6.030360e-03
## CCL3 4.822186e+00 4.9126361 2.93969629 1.140430e-03 6.422514e-02
## CCL5 4.281536e+01 2.8820883 0.80030102 7.753401e-06 1.321267e-04
## CCL7 7.829765e+01 4.0120901 0.94892618 2.079563e-07 7.188965e-06
## CCL8 7.192370e+00 6.3533368 2.60586170 2.533204e-05 5.206685e-02
## CCN6 1.340583e+03 1.5430861 0.17912698 3.645201e-19 9.358000e-17
## CCND3 1.469908e+03 0.7378148 0.28118949 1.050807e-03 7.909228e-03
## CCNE1 1.969093e+02 0.7899620 0.24987337 1.866645e-04 3.385866e-03
## CCR7 1.218668e+02 1.3990338 0.41313902 3.866871e-05 6.803503e-04
## CD274 5.963699e+01 1.7659400 0.72439177 3.448274e-04 3.847575e-03
## CD38 8.089254e+01 2.0293687 0.61256625 4.136092e-05 6.297958e-04
## CD55 9.052822e+03 2.1305308 0.41166298 1.050683e-08 3.897355e-07
## CD82 3.386489e+03 1.1674474 0.40495814 1.889085e-04 1.638324e-03
## CD83 4.247097e+02 2.8991314 0.56743627 5.461308e-09 3.310865e-07
## CDH2 5.680357e+03 0.8781481 0.44794588 3.500316e-03 1.884671e-02
## CDH6 3.298643e+02 1.1206434 0.66110489 2.959005e-03 2.092386e-02
## CDK17 1.224855e+03 0.8198317 0.22927514 3.733979e-05 5.895870e-04
## CDKN2B 8.206290e+02 1.6840228 0.25351938 1.743866e-12 1.817327e-10
## CEBPB 5.789598e+03 0.9431076 0.15244515 6.378157e-11 3.284760e-09
## CEBPD 5.802531e+03 0.7707576 0.18172052 2.980226e-06 5.274678e-05
## CEMIP2 7.787046e+02 1.0272369 0.33164451 1.477828e-04 1.592737e-03
## CEND1 1.980271e+02 0.9719695 0.85025175 8.053513e-03 6.415768e-02
## CFB 2.538986e+04 4.0660947 0.33471434 3.072045e-36 4.170650e-33
## CFD 7.529805e+02 0.8775956 0.80968392 8.306896e-03 4.108708e-02
## CFH 9.729428e+03 1.2241330 0.28060913 9.736690e-07 1.737929e-05
## CFLAR 3.574697e+03 0.6523217 0.09646474 2.543329e-12 2.105402e-10
## CGNL1 1.156305e+03 0.9920190 0.46314031 1.822121e-03 1.382147e-02
## CH25H 8.462035e+02 3.1091947 0.40790129 8.393514e-16 1.473195e-13
## CHAC2 6.805925e+01 0.5419443 0.34278799 1.823896e-02 7.989353e-02
## CHCHD10 4.226061e+02 0.5680906 0.38549968 1.912515e-02 9.620347e-02
## CHEK2 6.813766e+02 1.1128204 0.26570269 2.297430e-06 5.157472e-05
## CHI3L2 1.588192e+03 1.8852638 0.50884365 5.758170e-06 1.206835e-04
## CHMP1B 4.889547e+03 1.6868675 0.21474259 2.194260e-16 3.124738e-14
## CHRDL2 1.042835e+03 5.4430013 0.49136672 7.070423e-30 4.612111e-27
## CHST11 5.959471e+02 0.6285917 0.36208216 1.029050e-02 5.100319e-02
## CHST12 1.481167e+03 0.6333979 0.11808620 1.623501e-08 7.241644e-07
## CHST7 1.414639e+02 1.6141879 0.42999338 8.150417e-06 1.665836e-04
## CISD2 8.868432e+02 0.7310837 0.12627764 1.054141e-09 5.535364e-08
## CKAP4 1.442212e+04 0.5789667 0.16331375 9.985377e-05 9.398332e-04
## CLCF1 1.011132e+03 0.7540146 0.26948847 5.349620e-04 4.598230e-03
## CLDN1 2.382394e+03 2.4331124 0.40150880 4.039948e-11 2.636870e-09
## CLDND1 2.433556e+03 0.6022947 0.11044605 1.259946e-08 4.901203e-07
## CMC1 4.311823e+02 0.6290392 0.23618963 1.270603e-03 1.268365e-02
## CMC2 6.820240e+02 0.5182268 0.23769130 6.348208e-03 3.455495e-02
## CMIP 2.073590e+03 1.0078486 0.29561764 4.701586e-05 6.971286e-04
## CNTNAP1 2.560228e+03 0.5183219 0.36523885 2.456720e-02 7.606400e-02
## COL18A1 1.027271e+04 1.4449341 0.94556138 2.376014e-03 1.373938e-02
## COL3A1 1.347453e+05 1.4542101 0.16176442 1.715147e-20 3.663685e-18
## COL4A1 6.671747e+03 1.4530196 0.43883405 4.268453e-05 4.582409e-04
## COL4A2 1.245026e+04 1.1491908 0.36233897 9.736457e-05 1.024871e-03
## COL4A3 6.727366e+01 1.8431218 0.70665596 2.585435e-04 2.412288e-03
## COL4A4 1.281629e+02 3.0869954 0.51726371 8.785306e-11 7.352196e-09
## COL5A2 6.678164e+04 0.6336200 0.17135185 4.024219e-05 4.849906e-04
## COL7A1 7.256604e+03 2.3298364 0.35919884 3.462488e-12 2.584193e-10
## COMMD3 1.294701e+03 0.6113654 0.11558459 2.466416e-08 9.252699e-07
## COQ10B 8.519465e+02 0.6149500 0.11924017 5.203636e-08 1.856165e-06
## COQ2 7.578454e+02 0.6304321 0.16415793 2.315864e-05 3.394471e-04
## CORO6 4.097427e+02 0.5886642 0.31502784 9.472765e-03 5.912496e-02
## COTL1 4.432886e+03 0.7355563 0.21625337 8.824140e-05 8.465925e-04
## COX14 4.916417e+02 0.5455564 0.14694499 4.927300e-05 6.862483e-04
## COX17 5.411503e+02 0.9055024 0.13742286 5.101340e-12 4.534093e-10
## COX5A 1.001560e+03 0.5097382 0.10754981 6.114718e-07 1.576067e-05
## COX7A2 2.331489e+03 0.6991869 0.14642970 3.076866e-07 7.593633e-06
## COX7B 1.720897e+03 0.7602622 0.14054078 9.055038e-09 4.287018e-07
## CPXM1 1.864665e+02 4.6968894 1.94121472 5.424727e-05 7.862948e-04
## CREM 4.860701e+02 0.6204154 0.14433916 3.411369e-06 6.924427e-05
## CSF1 1.671788e+04 2.3807837 0.28321035 2.292038e-18 3.680027e-16
## CSF2 8.341368e+01 8.1893830 1.15676090 1.931491e-13 2.071382e-11
## CSF3 7.013287e+01 8.1701803 1.46317969 2.000913e-10 1.168794e-08
## CSGALNACT1 3.914490e+03 1.9759510 0.43091288 1.495026e-07 4.336898e-06
## CSNK1E 4.160920e+03 0.5850726 0.12877532 1.155001e-06 2.334353e-05
## CSPG4BP 4.149249e+01 2.1426819 0.49016783 5.469232e-07 1.640792e-05
## CSRNP1 5.426073e+02 0.7320440 0.23497398 2.283871e-04 2.653747e-03
## CSRP1 3.775235e+03 0.5792258 0.24899597 3.643190e-03 1.949735e-02
## CSTF2 4.854373e+02 0.5035224 0.13644347 6.377181e-05 8.465925e-04
## CTPS1 1.174929e+03 0.8871780 0.22944673 1.127667e-05 2.099284e-04
## CTSC 1.783101e+03 0.5472668 0.46005257 2.536089e-02 9.079657e-02
## CTSD 3.110512e+04 0.5493144 0.30782097 1.217535e-02 4.391504e-02
## CTSK 4.600372e+03 0.7448138 0.36720872 4.123011e-03 1.874321e-02
## CTSS 5.541577e+02 3.8905827 0.34932985 3.059666e-31 2.008974e-28
## CTTNBP2NL 1.408640e+03 0.6230693 0.13598031 7.968961e-07 1.874402e-05
## CUEDC1 3.182169e+03 0.6667950 0.11672817 2.036275e-09 8.610206e-08
## CX3CL1 7.214471e+02 0.5917294 0.38833636 1.399303e-02 6.085249e-02
## CXCL1 3.271157e+04 7.9075464 0.91300810 1.632773e-21 4.346423e-19
## CXCL10 1.258279e+01 7.8509938 2.78092019 4.449373e-07 1.640792e-05
## CXCL2 2.029081e+03 6.9489400 0.43265699 1.953808e-60 1.623635e-56
## CXCL3 3.229667e+03 8.6116617 0.71741659 8.244308e-35 6.265228e-32
## CXCL5 3.484832e+03 10.4287980 0.91355915 4.254669e-36 4.792012e-33
## CXCL6 2.890303e+04 11.1594612 0.97154382 8.596883e-35 6.265228e-32
## CXCL8 2.618590e+04 10.1629490 0.90619360 7.181194e-36 6.533708e-33
## CXXC4 1.808296e+01 3.4632190 1.35712636 1.341065e-04 2.072722e-03
## CYB5A 8.328904e+02 0.5107852 0.21938467 4.557041e-03 2.344017e-02
## CYCS 2.751508e+03 0.9389119 0.21716985 1.520476e-06 2.947972e-05
## CYP24A1 3.947167e+02 7.7913126 1.10588293 2.069763e-15 4.128206e-13
## CYP7B1 1.045516e+03 1.6146491 0.31489254 1.377678e-08 6.275655e-07
## CYTL1 9.879906e+02 2.9612842 0.49916729 5.062139e-11 3.036556e-09
## DAAM1 9.437220e+02 1.1591940 0.23721819 7.363813e-08 2.514763e-06
## DAPK2 9.241951e+02 0.7847862 0.26362993 3.336103e-04 3.638077e-03
## DAW1 1.464634e+02 2.1791032 0.56216662 4.148430e-06 9.293685e-05
## DCBLD1 1.077480e+03 0.5328596 0.26851652 8.717716e-03 4.695818e-02
## DCLK1 8.608750e+03 1.2851033 0.50543695 4.781096e-04 3.838806e-03
## DDA1 1.639859e+03 0.5669422 0.19526822 7.585985e-04 6.996217e-03
## DDIT4 3.879502e+03 0.7777870 0.29727968 9.447995e-04 6.602003e-03
## DDX10 5.519139e+02 0.7619589 0.18336008 4.446937e-06 9.101219e-05
## DECR1 1.619103e+03 0.5000502 0.09425393 3.393037e-08 1.094718e-06
## DENND2A 8.579489e+02 2.3232666 0.49721230 1.029709e-07 3.339116e-06
## DENND2B 2.088484e+03 0.5466017 0.24138244 4.624530e-03 2.341415e-02
## DENND5A 5.371286e+03 0.5846119 0.12059013 3.136507e-07 8.316729e-06
## DENND5B 6.545503e+02 0.5580095 0.13721075 1.115199e-05 1.863380e-04
## DEPDC7 2.653150e+02 0.8946481 0.23764606 1.710914e-05 3.156541e-04
## DERL1 3.358008e+03 0.5808498 0.10537981 9.436194e-09 4.054241e-07
## DGAT2 8.743131e+01 0.5266325 0.67620681 2.792324e-02 9.644259e-02
## DHCR24 3.092376e+04 0.5796786 0.16425301 9.013904e-05 8.617695e-04
## DHRS13 1.026444e+02 0.7840008 0.40730861 4.337494e-03 2.847757e-02
## DIPK1A 2.893419e+02 0.6228346 0.15985004 1.891651e-05 3.993962e-04
## DKK3 2.848645e+04 0.6709814 0.27791606 2.129187e-03 1.267003e-02
## DNAJB11 2.858928e+03 0.6608241 0.11866115 5.047384e-09 2.196282e-07
## DNAJC15 1.395970e+03 0.7751676 0.24248580 1.697702e-04 1.785485e-03
## DNAJC25 6.017412e+02 0.6509162 0.12950913 9.379356e-08 3.190201e-06
## DNER 6.458797e+02 2.3867710 0.30806370 2.733930e-16 4.751861e-14
## DOCK4 2.863928e+02 1.3044751 0.99080851 4.536696e-03 2.819626e-02
## DOK6 4.621387e+02 1.0747181 0.44773159 9.695770e-04 8.114456e-03
## DPT 6.268239e+02 0.8091745 0.32472937 1.252579e-03 9.957025e-03
## DRAM1 3.023546e+03 1.8487093 0.21919861 1.823549e-18 3.680027e-16
## DSEL 2.316466e+03 1.1938433 0.22784073 1.428064e-08 5.040634e-07
## DUSP1 7.994170e+03 1.2127980 0.16101893 4.130814e-15 4.939651e-13
## DUSP16 7.548480e+02 1.4299023 0.17064615 3.422839e-18 6.712910e-16
## DUSP3 1.980498e+03 0.6922492 0.09874655 4.385438e-13 4.992255e-11
## DUSP4 1.202225e+03 1.0592754 0.45651968 1.027998e-03 8.737817e-03
## DUSP5 1.663533e+03 1.0237350 0.27429083 1.607484e-05 2.897692e-04
## EDN1 5.928949e+02 1.5670955 0.43983850 1.678552e-05 2.767370e-04
## EDNRA 3.346001e+02 1.4418265 0.55125279 3.532205e-04 3.752964e-03
## EDNRB 5.947454e+02 5.9585149 0.64888912 2.088324e-22 7.101642e-20
## EEF1AKMT4 8.873036e+01 0.9643168 0.25442210 1.399055e-05 2.530344e-04
## EFEMP1 3.262615e+04 1.3720391 0.50911052 3.222683e-04 2.399512e-03
## EGLN1 2.629394e+03 0.5942443 0.13592867 2.565411e-06 5.021064e-05
## EGLN3 4.680327e+01 2.2958343 0.71561708 3.757441e-05 6.722620e-04
## EIF4A1 1.186617e+04 0.5971592 0.12886936 7.674117e-07 1.490859e-05
## ELANE 5.180065e+01 0.8297055 0.44873859 5.050427e-03 2.685031e-02
## ELF3 1.438634e+02 4.8801015 0.74828063 3.368941e-13 4.092605e-11
## ELOVL2 1.972175e+02 1.1961672 0.68133053 3.000602e-03 2.338465e-02
## ELOVL3 6.688574e+01 2.4639062 0.52418359 1.123131e-07 3.948542e-06
## EMC3 2.530304e+03 0.6625020 0.12775713 3.517421e-08 1.039729e-06
## EMC7 2.623254e+03 0.6551877 0.11723498 4.246903e-09 1.921647e-07
## ENDOG 3.356600e+02 0.5216049 0.15004370 1.326552e-04 2.028545e-03
## ENO1 5.846510e+04 0.5491899 0.19137969 8.841363e-04 6.247694e-03
## ENO2 1.983713e+03 0.9322555 0.29148702 1.131158e-04 1.277447e-03
## ENTPD7 1.311981e+03 0.6067183 0.17646717 9.839399e-05 1.320447e-03
## EPAS1 1.352362e+04 1.6682890 0.16162682 3.505542e-26 1.321992e-23
## EPB41L3 2.702560e+03 0.7257529 0.27102973 8.767385e-04 6.686923e-03
## EPB41L4B 3.705270e+02 0.7082408 0.28538066 1.569406e-03 1.294102e-02
## EPG5 6.165439e+03 1.2262775 0.16756253 2.090804e-14 2.075224e-12
## EPHB2 6.284995e+02 1.1522784 0.32058838 1.914231e-05 3.366866e-04
## EPSTI1 3.813292e+02 1.1161558 0.41360455 4.531330e-04 5.559747e-03
## ERGIC1 9.093427e+03 0.7394801 0.10571212 4.700960e-13 3.719219e-11
## ERO1A 2.047668e+03 0.8147237 0.18617351 1.405946e-06 2.764858e-05
## ETV4 1.226479e+02 1.6451193 0.64271062 3.213273e-04 3.929901e-03
## EXOSC9 8.306380e+02 0.6576340 0.18669746 7.160417e-05 9.106204e-04
## F3 1.209966e+02 2.1702307 0.40306601 1.890017e-09 1.698333e-07
## F5 6.645194e+01 2.7115908 1.19858409 3.407023e-04 3.629434e-03
## FAM107B 2.009606e+03 1.6621877 0.28889109 4.072000e-10 2.565463e-08
## FAM110B 1.291441e+03 0.8383110 0.31305449 6.748208e-04 6.302872e-03
## FAM124A 3.063774e+02 1.1302485 0.31765204 2.314857e-05 4.548821e-04
## FAM162A 9.920442e+02 0.7475659 0.22582575 1.051702e-04 1.254573e-03
## FAM167A 2.242161e+02 1.7225478 0.39017687 4.326022e-07 1.474554e-05
## FAM174A 6.266600e+02 0.8530370 0.14616880 6.567846e-10 4.004707e-08
## FAM20A 1.695402e+02 1.0126094 0.77454859 7.033533e-03 4.413938e-02
## FAM222A 4.443561e+01 0.9925506 0.50233685 2.945312e-03 2.047066e-02
## FANK1 1.049135e+02 0.7297950 0.37602907 5.021132e-03 3.455255e-02
## FAS 1.372581e+03 0.6539065 0.20880942 2.528683e-04 2.817864e-03
## FASTKD5 5.205014e+02 0.6614933 0.12091410 8.316851e-09 4.090714e-07
## FBN1 9.208763e+04 0.6553206 0.21176578 3.244327e-04 2.991007e-03
## FBN2 7.401716e+03 2.4030727 0.33288174 1.366125e-14 1.330884e-12
## FBXO32 4.449900e+02 0.8249829 0.36577729 2.161394e-03 1.877598e-02
## FBXW10B 1.134454e+02 1.6072130 0.38873545 1.978999e-06 5.356416e-05
## FCAMR 1.048814e+01 7.0360313 2.78557987 1.382114e-05 5.055198e-04
## FGF10 4.450264e+02 2.8834854 0.76536134 3.268645e-06 7.538085e-05
## FGF11 2.656711e+02 1.7086810 0.59098797 1.582953e-04 1.912880e-03
## FGF7 3.056951e+03 1.2919752 0.34011443 9.166722e-06 1.545314e-04
## FGFBP1 1.082116e+03 2.6504366 1.42091024 8.023996e-04 7.217507e-03
## FHOD3 1.452191e+03 0.9672908 0.53402080 3.641520e-03 2.432590e-02
## FIBIN 3.526017e+02 2.4301433 0.54339858 1.540340e-07 6.445540e-06
## FIGN 3.427292e+02 0.5072011 0.23678435 7.170237e-03 4.635739e-02
## FILIP1L 4.312409e+02 2.6199777 0.53164560 3.568290e-08 1.455709e-06
## FKBP11 1.072378e+03 0.5459244 0.19329042 1.013059e-03 8.840433e-03
## FKBP14 2.228559e+03 0.6137688 0.14608622 5.434147e-06 9.776269e-05
## FLVCR2 2.152670e+02 1.0057143 0.26603430 1.386131e-05 2.867781e-04
## FNDC3B 8.049710e+03 0.8330899 0.12514505 3.494872e-12 2.841130e-10
## FOXF1 2.784774e+03 1.6018480 0.16681917 4.308613e-23 1.241406e-20
## FOXN3 1.771209e+03 0.6088294 0.18345938 1.721282e-04 2.046285e-03
## FRRS1L 3.457910e+02 0.5010922 0.26897074 1.342867e-02 7.418753e-02
## FSTL1 1.499988e+05 0.6265183 0.11922086 3.022848e-08 1.071504e-06
## FSTL3 2.662351e+03 0.6943545 0.17972297 1.565363e-05 2.193787e-04
## FTH1 1.222299e+05 1.1996425 0.20946762 7.999828e-10 3.992896e-08
## FUCA2 3.386901e+03 0.6121309 0.21008582 6.468038e-04 5.548109e-03
## FUNDC2 1.668905e+03 0.6224063 0.15795967 1.347610e-05 2.132379e-04
## FUT11 1.770625e+03 0.6156542 0.16876706 4.901430e-05 7.358881e-04
## FYN 3.062336e+03 0.7931129 0.22969267 6.414344e-05 8.236050e-04
## G0S2 5.448726e+02 3.6517619 0.51471250 9.886361e-15 1.431962e-12
## GABARAPL1 3.974026e+03 1.4091781 0.22379846 2.041120e-11 1.295880e-09
## GABBR2 7.206285e+01 2.8164170 0.49765702 5.234195e-10 2.653215e-08
## GALNT15 5.698582e+03 0.6488553 0.56676328 1.883118e-02 7.172174e-02
## GALNT2 1.343835e+04 1.0718954 0.17046376 2.709874e-11 1.830329e-09
## GALNT5 4.460029e+03 0.7162691 0.32880634 3.004172e-03 1.663066e-02
## GAPDH 7.742451e+04 0.8927681 0.35555750 9.038341e-04 6.380154e-03
## GAS1 1.256089e+04 0.9271647 0.26759232 5.089558e-05 5.919458e-04
## GAS6 2.725026e+04 1.1327902 0.45112608 6.383884e-04 4.802004e-03
## GBP1 5.829995e+02 0.9203468 0.31889782 3.398691e-04 3.266507e-03
## GBP2 9.016605e+02 0.5635619 0.50732215 2.536635e-02 9.079657e-02
## GBP4 6.601596e+01 0.6807476 0.39443323 8.281749e-03 4.634059e-02
## GCH1 4.664982e+02 2.8826249 0.42141319 2.382292e-13 2.725518e-11
## GCHFR 3.286483e+02 0.6968713 0.28391963 1.803387e-03 1.377504e-02
## GFM2 1.093542e+03 0.5557706 0.11542221 3.555006e-07 1.089740e-05
## GFPT2 4.241414e+03 0.9104400 0.27538806 8.623484e-05 9.250081e-04
## GFRA2 1.120110e+02 4.6565598 0.78904748 3.552448e-11 3.202222e-09
## GGT1 1.494448e+02 1.6032105 0.24197093 2.110115e-12 3.431054e-10
## GGT5 5.338298e+02 1.1897992 0.67867682 3.238006e-03 2.237486e-02
## GGTLC4P 3.504158e+01 1.9151290 0.69955426 1.980288e-04 2.003208e-03
## GJA1 4.587920e+03 0.7948346 0.23692356 8.316937e-05 9.675396e-04
## GJB2 2.093577e+01 4.9567732 1.22908094 1.872673e-06 6.025900e-05
## GK 4.306643e+02 1.6664200 0.34916389 8.364841e-08 3.148429e-06
## GLA 6.744201e+02 0.8145230 0.19259454 2.852055e-06 6.140140e-05
## GLCE 1.476456e+03 0.5703043 0.21331283 1.382099e-03 1.018805e-02
## GLI3 1.219645e+03 0.6350191 0.23077065 9.058917e-04 6.996217e-03
## GLIPR2 7.561425e+02 1.8805039 0.32567809 3.924675e-10 2.268698e-08
## GLIS3 2.268661e+03 0.7490704 0.19017324 1.085728e-05 1.614808e-04
## GLP2R 6.742843e+01 2.2846640 0.62742949 7.365464e-06 1.682156e-04
## GLRX 2.521835e+03 0.9487235 0.25305300 1.624740e-05 2.602940e-04
## GNA14 1.697994e+02 2.7498925 0.55772023 1.054597e-08 5.138992e-07
## GNAI1 1.367842e+03 0.8531906 0.14687440 8.325951e-10 4.200563e-08
## GNAL 4.319274e+02 0.6503496 0.28609971 3.279894e-03 2.573504e-02
## GNB5 2.059096e+03 0.5205410 0.19097733 1.455620e-03 1.066015e-02
## GNG11 1.340150e+03 1.8509690 0.31086034 1.146195e-10 7.352196e-09
## GOLGA8F 2.633479e+01 2.7098189 1.17996518 2.478914e-04 5.538380e-03
## GPC4 1.499874e+03 2.0113266 0.60043055 2.847127e-05 3.655311e-04
## GPD2 1.734167e+03 0.6280570 0.21182037 4.925172e-04 4.967076e-03
## GPI 6.844069e+03 0.9143886 0.15785666 5.966139e-10 3.079738e-08
## GPN3 5.239998e+02 0.5358998 0.16859257 3.508801e-04 3.806490e-03
## GPR161 1.605513e+03 0.8647564 0.23810877 2.710720e-05 3.859477e-04
## GPR37L1 3.453219e+01 3.6496656 0.52517096 1.548376e-13 2.305721e-11
## GPR39 8.080865e+01 1.1438672 0.50418639 1.145264e-03 8.052577e-03
## GPRC5A 9.601787e+02 1.2806624 0.43453846 1.393441e-04 1.756178e-03
## GRIK2 2.693729e+02 0.7226705 0.62289319 1.463417e-02 7.892994e-02
## GRIP2 1.438888e+02 1.4619019 1.33680089 3.817555e-03 2.474719e-02
## GRK5 1.405026e+03 1.0673091 0.27672787 8.453544e-06 1.668100e-04
## GRPEL1 1.120438e+03 0.5349343 0.10853089 2.131585e-07 6.349138e-06
## GTF2IP4 5.260012e+03 1.6479665 0.15821642 1.363242e-26 4.377624e-24
## GYS1 1.879944e+03 0.8228737 0.22043788 2.136994e-05 3.172365e-04
## H1-2 6.027213e+02 0.8977846 0.32400092 4.848259e-04 4.344773e-03
## H2AC19 5.378053e+02 1.5077347 0.29718235 2.316281e-08 9.637633e-07
## H2AJ 1.811257e+03 0.5904365 0.31372116 8.661724e-03 4.085739e-02
## H2BC21 4.407631e+02 1.2712511 0.32643781 6.714943e-06 1.656585e-04
## H2BC5 2.546902e+02 0.6472377 0.34533354 7.347235e-03 4.894294e-02
## H4C12 2.639236e+01 1.3910270 0.62251150 1.140527e-03 1.239939e-02
## HAS3 2.043076e+02 2.8981804 0.43592659 7.205918e-13 1.261814e-10
## HCCS 9.045146e+02 0.7147952 0.14716022 1.887816e-07 6.359082e-06
## HCK 1.030665e+01 4.1871521 1.62617981 2.831405e-04 4.169596e-03
## HDAC4 2.550444e+03 1.6343547 0.21578267 2.340705e-15 3.209872e-13
## HELZ2 8.874590e+02 0.6620349 0.33355950 5.727266e-03 3.125033e-02
## HEPH 2.190812e+02 0.7033716 0.52327630 1.350968e-02 9.383222e-02
## HERC4 5.373708e+03 1.0995946 0.22140753 4.529255e-08 1.529277e-06
## HERC6 2.214458e+02 0.6519259 0.16428630 1.289325e-05 2.339685e-04
## HGD 1.864532e+01 2.8723612 0.95588060 7.570200e-05 2.090381e-03
## HIF1A 9.743841e+03 0.9808757 0.18512336 1.198700e-08 3.906700e-07
## HIGD1A 2.769673e+03 0.5595324 0.09220679 3.232002e-10 1.634370e-08
## HILPDA 2.727492e+02 0.7860148 0.38488029 3.163118e-03 2.584798e-02
## HIVEP2 1.580727e+03 0.8177021 0.18141229 7.730615e-07 1.896974e-05
## HK2 1.931374e+03 0.6713863 0.30973455 3.428518e-03 1.855690e-02
## HLA-A 1.929438e+04 0.7826953 0.23222906 8.916622e-05 8.225369e-04
## HMBS 6.181522e+02 0.5749133 0.19137834 5.407645e-04 5.105625e-03
## HMCN1 4.970637e+03 0.6213452 0.42579211 1.429630e-02 5.842522e-02
## HMGN2P46 3.513501e+01 1.2936834 0.54048030 7.635157e-04 7.248663e-03
## HNMT 2.202608e+02 0.9057915 0.59703599 5.260318e-03 3.568933e-02
## HPD 1.153008e+03 3.7296769 0.50847224 7.865967e-15 1.210154e-12
## HS3ST1 1.598537e+02 0.6166063 0.87129538 1.766029e-02 8.751055e-02
## HS3ST3A1 4.452167e+02 0.8207101 0.20770371 8.846809e-06 2.030521e-04
## HS6ST1 7.994833e+03 0.8431326 0.28965461 3.661836e-04 2.658140e-03
## HSCB 3.335106e+02 0.5440157 0.14627252 4.853998e-05 7.520444e-04
## HSD11B1 5.406855e+02 6.0027378 1.25741593 6.914809e-09 3.472818e-07
## HSD17B10 1.266091e+03 0.6315974 0.17036703 3.517794e-05 5.586259e-04
## HSD17B2 3.658485e+02 4.0283440 0.63645392 7.450539e-12 6.788542e-10
## HSPE1 1.390236e+03 0.6372182 0.16859417 2.719932e-05 4.481439e-04
## HTATIP2 8.738133e+02 0.5340136 0.16796185 3.484502e-04 3.387497e-03
## HYAL2 1.099151e+03 0.6790379 0.15115528 1.159247e-06 3.006110e-05
## HYCC1 3.088359e+03 0.5374744 0.13244797 1.226204e-05 1.969365e-04
## HYOU1 6.357996e+03 0.5550601 0.16156287 1.361975e-04 1.218908e-03
## ICAM1 1.404166e+03 1.9161433 0.58031206 4.224052e-05 6.533569e-04
## ICOSLG 2.246760e+02 1.7831992 0.25391911 1.217263e-13 1.852168e-11
## ID3 7.311167e+03 0.8219295 0.15982769 3.425729e-08 9.868658e-07
## IER3 3.974853e+03 2.7254525 0.31773243 2.446048e-19 5.271094e-17
## IFI30 1.853362e+02 0.7383326 0.36949373 4.312353e-03 2.834950e-02
## IFI44L 4.643904e+01 2.2717579 0.59397897 4.580389e-06 1.128508e-04
## IFI6 1.531008e+03 2.5711881 0.60825823 9.543393e-07 2.288055e-05
## IFNAR2 8.453283e+02 0.6306078 0.25193396 1.959872e-03 1.353304e-02
## IFNGR1 2.846939e+03 0.6326303 0.12584077 9.382888e-08 2.475438e-06
## IFNGR2 2.015510e+03 0.5782201 0.13398649 3.545550e-06 7.836143e-05
## IGF2R 1.338633e+04 0.6647448 0.16856834 1.305304e-05 2.034634e-04
## IGFBP4 8.839961e+04 1.7154705 0.14364067 3.944493e-34 2.818473e-31
## IGFBP7 6.366632e+04 0.6511541 0.32715082 6.012424e-03 2.837691e-02
## IGFBPL1 4.192370e+01 0.8222514 0.76984770 1.224296e-02 6.237267e-02
## IL11 3.345930e+03 3.9952135 0.78772091 6.603719e-09 2.810439e-07
## IL12A 1.533758e+01 0.7623964 0.60164251 1.285444e-02 7.506544e-02
## IL15 3.760513e+02 1.9298799 0.35086250 1.889321e-09 1.273077e-07
## IL15RA 3.487588e+02 1.6476493 0.20216045 2.263444e-17 4.965878e-15
## IL23A 4.357754e+01 2.5262271 0.71070102 7.160926e-06 1.426706e-04
## IL33 5.898826e+01 2.9199497 0.61839159 9.812123e-08 3.671613e-06
## IL4I1 5.948345e+01 2.4056529 0.97001683 3.084892e-04 3.507917e-03
## IL6 4.809050e+03 9.3227181 0.53419725 2.379561e-74 3.230524e-70
## IL7 3.305351e+01 1.6395280 0.50796801 5.671347e-05 7.103914e-04
## IL7R 1.527480e+03 2.1157107 0.62416749 1.684961e-05 2.696108e-04
## INHBA 8.702523e+03 1.6677731 0.29266057 7.228055e-10 2.909077e-08
## INSIG2 1.134202e+03 0.6819504 0.24245361 6.484257e-04 5.588199e-03
## INSL4 1.754594e+01 3.2078292 0.77937011 1.305195e-06 4.085370e-05
## IPMK 4.408121e+02 0.5709288 0.10207415 4.954090e-09 2.551903e-07
## IPPK 5.193400e+02 0.5007522 0.23528674 7.436174e-03 3.883107e-02
## IRAK2 5.482919e+02 2.0850011 0.30227454 1.610514e-13 1.930287e-11
## IRS1 3.161197e+03 1.2258151 0.20738117 2.284762e-10 1.194147e-08
## ISCA1 1.182961e+03 0.5013842 0.10850372 1.089688e-06 2.562154e-05
## ISG15 3.712068e+02 0.9495080 0.45116889 2.269317e-03 2.017735e-02
## ISOC1 6.030070e+02 0.8783956 0.22145981 7.753016e-06 1.483640e-04
## ITFG1 2.889586e+03 0.5947862 0.16923650 9.527822e-05 9.298642e-04
## ITGA1 2.423949e+03 0.7602443 0.28177771 7.745275e-04 6.201831e-03
## ITPRIP 7.296838e+02 1.0123595 0.55713164 3.578907e-03 2.193829e-02
## JKAMP 2.664985e+03 0.5148525 0.10846740 5.811326e-07 1.424104e-05
## JUP 9.892245e+02 1.3478393 0.33357943 3.335485e-06 6.344986e-05
## KCNE4 1.734089e+03 1.2998452 0.31896549 2.862305e-06 6.472398e-05
## KCNJ2 1.633478e+02 2.5072450 0.81997995 5.204348e-05 7.980106e-04
## KIAA1217 1.264124e+03 1.8021267 0.32128236 1.006565e-09 5.799984e-08
## KIFC3 4.787184e+03 1.0310470 0.19206672 7.012377e-09 2.327926e-07
## KIRREL3 8.440328e+02 0.8728913 0.31567998 4.696355e-04 4.789421e-03
## KITLG 4.139298e+02 1.0668154 0.52724635 1.765442e-03 1.354877e-02
## KLC3 1.157959e+01 1.0382406 1.20538763 9.785023e-03 6.588037e-02
## KLF9 2.014527e+03 1.6682282 0.23822526 1.585795e-13 2.021783e-11
## KLHL13 4.800427e+03 1.6669130 0.28167832 1.746196e-10 8.325338e-09
## KLHL2 7.054612e+02 0.5613062 0.18608712 5.327793e-04 4.585129e-03
## KLHL26 4.124949e+02 0.5354038 0.26125802 7.858940e-03 4.265548e-02
## KRT7 2.424483e+03 1.7353564 0.33384133 1.227540e-08 4.802666e-07
## KRT81 6.024806e+01 1.4287758 0.45689028 9.397372e-05 1.438101e-03
## KRT87P 1.239670e+02 1.3019922 0.52251916 6.047123e-04 6.498029e-03
## KSR1 1.328510e+03 1.0309085 0.27319522 1.201784e-05 2.024884e-04
## KYNU 1.629466e+02 2.5241109 0.62624395 1.618985e-06 4.518899e-05
## LACC1 4.227413e+02 1.1256501 0.25066331 5.300434e-07 1.601291e-05
## LAMA4 6.852766e+03 1.3888731 0.29105704 1.016998e-07 2.883258e-06
## LAMB1 8.241156e+03 0.6952933 0.26589815 1.224290e-03 8.114456e-03
## LAMB3 1.176525e+03 1.9429784 0.45097139 5.152012e-07 1.522439e-05
## LAMC2 4.308904e+02 1.9126735 0.35161337 2.682755e-09 1.494967e-07
## LAMTOR5 1.739121e+03 0.5945767 0.11470701 4.701053e-08 1.620304e-06
## LCN2 1.966068e+02 6.3709087 0.72661670 6.747516e-21 2.078503e-18
## LCTL 3.146225e+02 1.2587721 0.48832213 4.817129e-04 5.821119e-03
## LDHA 2.880104e+04 1.4300584 0.18589581 7.442459e-16 1.074892e-13
## LEPROT 8.109480e+03 0.5411030 0.14214098 3.583778e-05 4.387741e-04
## LGALS9 3.423484e+01 2.0639400 0.73072804 1.172330e-04 1.725991e-03
## LGR4 7.809906e+02 0.8821175 0.42961492 2.518358e-03 1.586747e-02
## LHFPL6 6.088406e+03 0.5816837 0.19942773 6.765080e-04 4.399192e-03
## LIF 3.132717e+03 2.8351365 0.58242830 1.438718e-08 5.868876e-07
## LIN52 3.587111e+02 0.5333651 0.23594542 4.921057e-03 3.068011e-02
## LIPG 8.334053e+01 1.2561678 0.60929654 1.687152e-03 1.138066e-02
## LMO4 4.597785e+03 0.5142821 0.18030619 1.086941e-03 6.426688e-03
## LOXL3 1.594780e+04 0.8552063 0.20765750 4.093693e-06 6.140140e-05
## LPCAT1 4.810323e+03 0.7016747 0.16502079 3.291917e-06 5.695936e-05
## LPXN 5.104114e+02 0.5640990 0.40564678 1.937567e-02 8.138072e-02
## LRIG1 3.999244e+03 2.0714735 0.22267113 7.022395e-22 1.801946e-19
## LRMDA 2.572707e+02 1.0453895 0.33298367 1.154969e-04 1.743846e-03
## LRP8 2.214124e+03 1.3731951 0.34846513 4.426887e-06 8.164587e-05
## LRRC55 9.927339e+00 1.6834808 0.86751890 1.868179e-03 1.751038e-02
## LRRC8C 5.099817e+02 0.8095015 0.38442837 3.048076e-03 1.979843e-02
## LRRN3 5.391866e+01 1.9138991 0.67325634 1.636274e-04 1.710680e-03
## LSAMP 1.803213e+03 1.2381353 0.42860673 2.171309e-04 2.544966e-03
## LSM6 2.740162e+02 0.5662435 0.22329267 2.079394e-03 1.573136e-02
## LSS 4.983712e+03 0.6590898 0.21252919 2.693950e-04 2.057470e-03
## LTBP1 6.913819e+03 1.3726482 0.54564649 3.534664e-04 2.979035e-03
## LYPD1 4.333666e+02 5.9009286 0.64329800 1.552750e-22 7.101642e-20
## LYPD3 1.440618e+02 2.3268386 0.68166929 1.574850e-05 3.186527e-04
## MAFF 1.721684e+03 1.0638448 0.26241199 4.094144e-06 8.929862e-05
## MAFK 4.752024e+03 0.6505793 0.15323672 4.417263e-06 6.298967e-05
## MAN1A1 7.336989e+03 1.9933958 0.25645138 3.073280e-16 4.253143e-14
## MAN1C1 9.080001e+02 0.5332660 0.22576978 3.608693e-03 2.425286e-02
## MAN2B1 3.360514e+03 0.6377966 0.14019313 9.983294e-07 1.894594e-05
## MANF 1.519630e+03 0.6014916 0.15089256 1.328088e-05 1.904399e-04
## MAOA 6.815110e+02 1.7544591 0.39752835 5.300670e-07 1.390261e-05
## MAOB 1.022122e+03 1.8546810 0.42826840 3.505538e-07 1.079786e-05
## MAP2K1 2.342046e+03 0.8854703 0.14645723 1.822055e-10 1.057114e-08
## MAP2K3 3.031633e+03 0.6563903 0.15950812 6.908652e-06 1.257245e-04
## MAP3K5 9.704882e+02 0.8696935 0.35308503 1.191637e-03 9.067429e-03
## MAP3K8 5.144037e+02 0.6381421 0.33188857 6.474522e-03 3.502034e-02
## MAPKAP1 2.505245e+03 0.5339841 0.13900042 2.400141e-05 3.172365e-04
## MARCKSL1 4.463194e+02 1.6314967 0.51174939 5.851043e-05 8.146690e-04
## MARCOL 5.277563e+01 10.1407166 2.62126487 7.801406e-13 6.847449e-11
## MAST4 7.271088e+02 0.5854481 0.25585457 3.714730e-03 2.249795e-02
## MBP 1.387015e+03 0.5941511 0.30914540 7.555483e-03 4.214793e-02
## MCC 9.589412e+02 1.3385909 0.24094694 1.800706e-09 8.957547e-08
## MCOLN2 1.784657e+02 0.8508021 0.37376199 1.730274e-03 1.509679e-02
## MCTP1 1.737597e+01 2.0352979 0.76394313 2.334338e-04 3.315256e-03
## MCTS1 1.110119e+03 0.5479296 0.13625737 1.184087e-05 2.176200e-04
## MEDAG 1.529808e+03 1.8416601 0.63838457 1.252701e-04 1.444124e-03
## MEGF10 1.569519e+02 1.0884387 0.61456194 2.921618e-03 2.122939e-02
## MEIS1 7.197788e+02 0.7139436 0.50545605 1.218853e-02 5.500719e-02
## MFF 5.697570e+03 1.3674640 0.16822422 2.345377e-17 3.414254e-15
## MFSD12 1.077884e+03 0.5686275 0.13374332 5.058602e-06 1.079561e-04
## MFSD2A 1.332217e+02 1.3157190 0.42518372 9.244342e-05 1.398772e-03
## MGAT4A 4.401022e+02 2.0213092 0.49003111 1.198411e-06 3.093237e-05
## MGAT5 3.513426e+03 0.8729129 0.20286184 1.748797e-06 3.328153e-05
## MGST1 2.735677e+03 0.9489970 0.18591596 3.605804e-08 1.346114e-06
## MICOS10 1.293692e+03 0.6415069 0.12564937 5.627274e-08 2.185008e-06
## MIF 5.907858e+03 1.2839200 0.26687665 8.397098e-08 2.193296e-06
## MINPP1 1.344325e+03 0.7254958 0.09899587 4.038904e-14 5.707178e-12
## MLLT11 3.583875e+02 0.8713052 0.26334016 9.055416e-05 1.431165e-03
## MMADHC 2.790420e+03 0.6738976 0.11275874 4.057461e-10 2.185899e-08
## MMD 4.875546e+02 0.9956541 0.24190015 3.454298e-06 6.666747e-05
## MMP1 9.645530e+01 5.4663993 0.95887167 3.364748e-10 2.182057e-08
## MMP10 1.502537e+01 5.3097774 1.16596731 1.718236e-07 7.895386e-06
## MMP12 6.116220e+01 8.2018975 1.33662457 6.861668e-11 5.380243e-09
## MMP3 3.277639e+04 7.8400962 1.03953946 3.471975e-17 6.121560e-15
## MOSPD1 3.935122e+02 0.5689085 0.19290956 6.454687e-04 6.355298e-03
## MPHOSPH6 5.431411e+02 1.3932236 0.21882730 1.378135e-11 1.036310e-09
## MPP4 3.332593e+02 2.3419668 0.48965120 5.747921e-08 2.656066e-06
## MREG 1.371929e+02 1.0530753 0.55717542 2.424574e-03 2.595288e-02
## MRPL12 1.021695e+03 0.6126212 0.14129007 2.981824e-06 6.025900e-05
## MRPL14 1.193312e+03 0.6983543 0.15949193 1.786107e-06 3.706531e-05
## MRPL17 1.644431e+03 0.6706360 0.11397924 7.361844e-10 3.972930e-08
## MRPL32 1.105888e+03 0.5352588 0.13648879 1.991108e-05 3.394471e-04
## MRPS16 1.627340e+03 0.5193445 0.13462825 3.291761e-05 4.524822e-04
## MRPS24 1.291382e+03 0.7880737 0.16943400 4.309167e-07 1.289695e-05
## MRTFA 1.335733e+03 0.9132951 0.20731575 1.102602e-06 2.899811e-05
## MSRB1 1.205233e+03 0.5062638 0.26001985 1.074332e-02 5.398883e-02
## MT1E 1.954081e+03 1.6839096 0.26568361 1.039517e-11 8.173577e-10
## MT1F 9.334288e+01 2.5467560 0.59549169 3.126065e-07 9.729345e-06
## MT1G 3.075014e+01 4.4391083 1.57207016 3.618986e-05 4.635572e-04
## MT1X 2.437614e+03 2.3691570 0.22061003 2.547395e-28 9.588139e-26
## MT2A 1.164163e+04 2.3863870 0.40259175 9.019662e-11 5.515863e-09
## MTFP1 1.060145e+02 1.5528010 0.47444261 3.918439e-05 6.317193e-04
## MTHFD2L 2.325835e+02 1.3478998 0.25157836 5.535854e-09 3.229781e-07
## MTHFS 2.896961e+02 0.6966364 0.14950676 4.986473e-07 1.522439e-05
## MYL6 2.900786e+04 0.5499221 0.18297074 5.980669e-04 4.582311e-03
## MYO10 7.593640e+03 0.6598152 0.19532298 1.215740e-04 1.113218e-03
## MYPN 8.617055e+02 2.3993601 0.52632849 2.041840e-07 6.117365e-06
## NABP1 9.792143e+03 0.9669599 0.22127254 1.218405e-06 2.438630e-05
## NAMPT 5.596389e+03 2.5010558 0.25658503 3.354120e-24 1.007610e-21
## NAP1L5 3.243089e+02 0.6560435 0.22639642 6.064978e-04 6.037061e-03
## NAT14 4.226749e+02 0.7424459 0.18930897 1.183642e-05 2.184435e-04
## NBEA 6.278321e+02 0.5250282 0.27025634 9.750411e-03 4.549714e-02
## NCCRP1 3.130019e+01 1.9764739 0.56407550 1.945316e-05 2.774361e-04
## NCEH1 3.386230e+03 0.9729480 0.25672127 1.281750e-05 2.122180e-04
## NCLN 2.742879e+03 0.5487103 0.13288494 9.698688e-06 1.468941e-04
## NCOA7 1.114374e+03 1.0434280 0.29491889 3.043238e-05 4.418411e-04
## NCSTN 6.035984e+03 0.5059774 0.11004384 1.173235e-06 2.349742e-05
## NDUFA2 7.529110e+02 0.5038685 0.17519548 1.032652e-03 7.178972e-03
## NDUFA3 4.926856e+02 0.5376535 0.13829648 2.654794e-05 3.880826e-04
## NDUFA4 3.422341e+03 0.5138483 0.11484766 2.033065e-06 3.489642e-05
## NDUFA8 1.180146e+03 0.5086434 0.09514837 2.599400e-08 1.125777e-06
## NDUFB1 5.884803e+02 0.6126362 0.12896036 4.378787e-07 1.277154e-05
## NDUFB3 9.879236e+02 0.7226302 0.11798423 1.563663e-10 9.385079e-09
## NDUFB4 1.443043e+03 0.5343813 0.08997049 7.502875e-10 4.004707e-08
## NDUFB5 1.558888e+03 0.5020651 0.11743259 5.608760e-06 9.083436e-05
## NDUFS1 3.285681e+03 0.5206464 0.13775711 3.855863e-05 4.340901e-04
## NDUFS8 1.875196e+03 0.5771401 0.13228512 2.994740e-06 5.815977e-05
## NDUFV2 1.818516e+03 1.3262811 0.20996624 1.252029e-11 1.083802e-09
## NECTIN2 2.418531e+03 0.5051473 0.19501445 2.384737e-03 1.382550e-02
## NECTIN3 1.554953e+03 0.7972300 0.17697874 8.340620e-07 1.940947e-05
## NEK7 5.421720e+03 0.8763501 0.42788125 2.777552e-03 1.555025e-02
## NFKB1 2.043338e+03 0.7339409 0.07789945 5.712048e-22 1.692297e-19
## NFKB2 3.501599e+03 1.9004022 0.17347261 3.158096e-29 1.649029e-26
## NFKBIA 3.654283e+03 2.2377902 0.18359862 1.987631e-35 2.061755e-32
## NFKBIB 5.888747e+02 0.7442266 0.17847307 4.279388e-06 8.127714e-05
## NFKBIE 3.154184e+02 0.9714055 0.25034775 9.787153e-06 2.200764e-04
## NFKBIZ 1.576020e+03 2.4524514 0.19783401 1.058282e-36 1.637351e-33
## NID2 1.594577e+03 1.9225053 0.44260204 4.755559e-07 1.400006e-05
## NINJ1 2.081985e+03 0.6786340 0.17514169 1.777797e-05 2.826102e-04
## NKX3-1 5.495773e+02 1.3971725 0.49950008 1.908260e-04 2.290737e-03
## NME1 1.688621e+03 0.9037143 0.14670603 8.061066e-11 5.981100e-09
## NNMT 1.132891e+04 1.3349407 0.19616382 6.869171e-13 5.750259e-11
## NOD2 7.918600e+01 2.2373080 1.06034184 4.269659e-04 3.808073e-03
## NOMO2 7.633770e+03 0.6286195 0.16080240 1.605229e-05 2.229282e-04
## NOS2 5.704347e+02 6.1390832 1.18849653 3.015939e-10 1.902347e-08
## NPR3 5.956363e+03 0.6175706 0.32742327 8.181059e-03 3.582531e-02
## NR1D1 3.925370e+02 0.6832160 0.25007046 8.983257e-04 9.600416e-03
## NR4A2 2.530190e+02 2.4486884 0.44493763 1.136519e-09 6.831084e-08
## NR4A3 3.175417e+02 3.3647201 0.37641169 1.228424e-20 3.593465e-18
## NRG2 1.507367e+02 1.0669223 0.55262239 2.455959e-03 1.764982e-02
## NRP2 6.029579e+03 1.6274724 0.27862589 2.550022e-10 1.179713e-08
## NTPCR 1.127739e+03 0.6425688 0.13318643 2.694830e-07 7.827572e-06
## NUAK2 7.499994e+02 1.9874084 0.18405071 2.149615e-28 1.015899e-25
## NXN 3.427428e+03 0.7289043 0.29511485 1.524324e-03 9.678947e-03
## NXPH4 4.749981e+02 0.6593616 0.26590051 1.764749e-03 1.321184e-02
## NXT2 3.646074e+02 0.5325760 0.12379068 4.290373e-06 9.101219e-05
## OAS1 2.958963e+02 0.9567848 0.43759564 1.959893e-03 1.474220e-02
## OASL 4.019776e+01 1.6956523 0.71481998 5.068589e-04 4.351271e-03
## OLR1 6.038369e+01 1.5015852 0.52607368 1.693961e-04 2.028545e-03
## ORAI1 3.537443e+02 0.5631287 0.19611291 8.537690e-04 8.892262e-03
## ORMDL2 6.449537e+02 0.5983663 0.17238622 1.058240e-04 1.402631e-03
## OSGIN2 1.202661e+03 1.5165213 0.19396344 3.779906e-16 5.721051e-14
## OSMR 6.122740e+03 1.0952300 0.19939044 2.835535e-09 1.049439e-07
## OSTM1 1.647410e+03 1.1090224 0.11903216 1.058517e-21 2.947884e-19
## P4HA1 8.094661e+03 0.7906074 0.28056702 4.430868e-04 3.880908e-03
## P4HA3 4.665250e+02 2.4367006 0.48347676 1.655085e-08 7.174367e-07
## PACC1 2.291928e+02 0.7521061 0.27738893 7.941104e-04 1.081372e-02
## PAIP1 2.789350e+03 0.5229671 0.07520858 9.232255e-13 8.245945e-11
## PALMD 6.404520e+02 1.0289556 0.33394042 1.430655e-04 1.655589e-03
## PANX1 8.173972e+02 0.6262385 0.12412312 9.268283e-08 2.926465e-06
## PAPPA 1.160769e+04 2.6247363 0.44528406 1.141366e-10 5.383520e-09
## PAPSS2 7.023494e+03 0.6122476 0.18669728 2.038280e-04 1.697483e-03
## PC 1.910868e+03 0.9723718 0.15783701 8.049880e-11 5.981100e-09
## PCDHB8 2.727179e+01 0.6451843 0.53042720 1.915252e-02 9.411780e-02
## PCK1 5.946336e+01 4.6687766 1.18545659 1.680082e-07 4.834922e-06
## PCSK5 9.002748e+02 0.6824408 0.38703983 7.540639e-03 3.693295e-02
## PCSK9 6.904081e+02 1.0037026 0.31696159 1.120093e-04 1.465968e-03
## PDCD1LG2 3.547222e+02 1.8524592 0.34752670 3.193966e-09 1.806447e-07
## PDCD5 1.607196e+03 0.9876086 0.12516544 3.112340e-16 5.537793e-14
## PDE10A 1.226443e+03 3.6567251 0.43004837 1.577219e-19 4.148534e-17
## PDE3A 5.165469e+02 0.6158123 0.68368229 2.032722e-02 7.875971e-02
## PDE4B 2.673019e+03 3.3460927 0.29577604 2.848211e-31 1.880091e-28
## PDE4D 7.869721e+02 2.3090692 0.48966693 6.573608e-08 2.005027e-06
## PDE7B 1.858860e+02 1.1805892 0.61069420 1.728278e-03 1.334817e-02
## PDE8B 1.327958e+02 1.5816656 0.48015409 4.301801e-05 7.397959e-04
## PDK1 8.446859e+02 1.3108992 0.29769597 5.689124e-07 1.319812e-05
## PDK4 5.691871e+02 2.3170598 0.51356685 3.024656e-07 9.098952e-06
## PDXP 5.200489e+02 0.9787649 0.17266255 1.455957e-09 7.214541e-08
## PDZK1IP1 1.160546e+02 3.3169625 0.57008307 8.415262e-11 7.095134e-09
## PEDS1 2.077967e+03 0.7810026 0.14009403 3.259187e-09 1.354996e-07
## PEDS1-UBE2V1 1.997400e+02 1.0111075 0.34748046 2.604051e-04 3.321240e-03
## PERP 1.396405e+04 0.5058064 0.22548512 5.491840e-03 2.649523e-02
## PET100 4.308453e+02 0.5759149 0.16634878 1.171160e-04 1.492838e-03
## PEX2 1.316164e+03 0.9542260 0.13941718 7.939997e-13 7.690188e-11
## PF4V1 3.282606e+02 4.8456500 1.24014943 1.396595e-06 4.271305e-05
## PFDN2 8.611542e+02 0.5337902 0.14944548 8.829093e-05 9.579667e-04
## PFDN6 9.172448e+02 0.6081816 0.12770597 3.826835e-07 1.063364e-05
## PFKFB4 4.742586e+02 1.7498573 0.30294730 3.067028e-10 1.932814e-08
## PFKL 5.476329e+03 0.6330393 0.18877466 1.317024e-04 1.315882e-03
## PFKP 4.667209e+03 1.1106962 0.41421754 3.428483e-04 2.888368e-03
## PGAM1 1.366204e+04 0.9796565 0.22140505 8.719074e-07 1.963041e-05
## PGK1 1.533223e+04 1.2478172 0.24512668 2.147169e-08 7.942852e-07
## PGM2L1 3.686412e+02 1.0872592 0.73536296 4.850645e-03 3.030337e-02
## PHB1 2.653961e+03 0.5216314 0.18900642 1.362366e-03 8.204492e-03
## PHF10 2.568060e+03 1.1646491 0.16792990 2.858152e-13 2.948046e-11
## PHLDA1 1.841782e+03 1.6283348 0.51291401 4.692316e-05 6.971286e-04
## PHLDB3 3.831421e+02 0.7507527 0.15061118 8.805493e-08 3.220927e-06
## PI3 2.332024e+02 5.8339679 0.48282665 6.068395e-36 8.894712e-33
## PID1 2.104074e+03 2.0639347 0.32566891 7.262007e-12 6.631655e-10
## PIK3AP1 1.227779e+02 0.6409583 0.54436770 1.702034e-02 7.601530e-02
## PIK3CD 8.971046e+02 0.8486540 0.35172845 1.213411e-03 8.160877e-03
## PIK3R3 4.714008e+02 1.0199943 0.36764084 3.686608e-04 3.771146e-03
## PILRA 4.601459e+01 2.0275993 0.43190400 1.644046e-07 4.761163e-06
## PIM2 4.030208e+02 0.8830539 0.42523375 2.792570e-03 1.961848e-02
## PITPNC1 7.832392e+01 1.0707116 0.48020266 1.258241e-03 1.187605e-02
## PITPNM1 2.212241e+03 0.5411511 0.19973607 1.488388e-03 1.041467e-02
## PKM 6.439484e+04 0.6669626 0.12765509 3.060783e-08 9.920804e-07
## PKNOX2 5.318052e+02 1.0894014 0.18995701 8.358328e-10 4.305591e-08
## PLA2G4A 1.359666e+03 1.6944651 0.29712940 5.693910e-10 3.026161e-08
## PLAT 3.684406e+02 1.8086749 0.60604053 5.395158e-05 9.639406e-04
## PLD1 3.823524e+02 1.0027693 0.23518219 1.739740e-06 4.271305e-05
## PLEKHO2 2.413892e+03 0.5383747 0.16925168 3.412277e-04 2.889647e-03
## PLGRKT 4.040297e+02 0.9000779 0.24638694 2.457991e-05 4.235856e-04
## PLK3 7.905423e+02 0.7243556 0.26401130 7.689989e-04 6.408530e-03
## PLOD1 9.247786e+03 0.6443878 0.23439134 9.636185e-04 6.675307e-03
## PLOD2 1.548796e+04 2.1286996 0.29138529 7.535604e-15 8.839479e-13
## PLPPR4 1.140937e+02 1.5992451 0.54015475 1.008335e-04 1.320447e-03
## PLXNA4 2.576328e+03 4.1732240 0.39773613 1.580546e-27 5.408198e-25
## PMAIP1 2.042808e+02 0.5611750 0.84085328 1.753851e-02 7.768240e-02
## PMEPA1 2.362665e+03 0.7010700 0.27578012 1.323738e-03 8.044804e-03
## PNO1 6.881424e+02 0.5528898 0.14656367 3.725710e-05 5.384195e-04
## PNPLA8 1.113876e+03 0.6518929 0.18530634 7.218318e-05 9.147949e-04
## PNRC1 1.623192e+03 0.5853630 0.15657196 3.909368e-05 6.118129e-04
## POLR2K 1.143811e+03 0.5301774 0.10258951 6.490684e-08 2.177836e-06
## POLR3K 3.243347e+02 0.5876930 0.16526715 8.037391e-05 1.154428e-03
## POM121L15P 4.597193e+02 2.1709575 0.53529399 1.377104e-06 3.489642e-05
## POM121L4P 1.171678e+01 1.5913722 0.84771453 1.744618e-03 1.654404e-02
## POM121L7P 2.540712e+01 1.6602619 0.87720483 1.646567e-03 2.477886e-02
## POM121L9P 7.093643e+01 2.2380795 0.97796700 3.602324e-04 3.808073e-03
## POMGNT1 3.563218e+03 0.5170963 0.08454548 2.634738e-10 1.239611e-08
## POMP 2.200089e+03 0.5438106 0.11674281 9.353250e-07 1.940947e-05
## PON2 2.313181e+03 1.0742316 0.15371224 1.988788e-13 2.146750e-11
## POU2F2 1.657164e+02 2.9335205 0.82350227 6.715802e-06 2.096624e-04
## PPAN 6.316120e+02 0.5546490 0.13353014 8.015046e-06 1.523439e-04
## PPIF 1.532065e+03 1.3356360 0.27226230 4.804594e-08 1.647168e-06
## PPIL1 8.570475e+02 0.5234175 0.11352713 1.096890e-06 2.575313e-05
## PPME1 1.897388e+03 0.5754402 0.18408250 3.642393e-04 3.824666e-03
## PPP1R3C 6.011433e+03 0.7598770 0.35641905 3.259311e-03 1.770511e-02
## PPP2R1B 1.427499e+03 0.8079737 0.17682671 6.128945e-07 1.717343e-05
## PPP4R4 2.872099e+02 0.9697151 0.25781186 1.567893e-05 3.309217e-04
## PPTC7 9.240540e+02 0.5061652 0.09899109 1.131924e-07 3.614475e-06
## PRDX2 3.404039e+03 0.5495264 0.15147725 6.358384e-05 8.185293e-04
## PRKAA2 3.039372e+02 1.0078142 0.20074015 5.021974e-08 2.451681e-06
## PRKAG2 1.448958e+03 0.5521252 0.25901473 5.938124e-03 2.811417e-02
## PRKD1 1.134542e+03 0.5173546 0.23313850 5.620059e-03 3.343689e-02
## PRL 1.655380e+01 8.5964430 3.01382360 1.140338e-06 3.625109e-05
## PRR5L 2.495893e+02 1.2429704 0.30271229 1.983990e-06 4.794356e-05
## PRRG1 1.262487e+03 0.5609116 0.17869529 3.592244e-04 3.869321e-03
## PRRG4 1.214308e+02 1.8542339 0.32125857 4.771313e-10 3.117661e-08
## PRRT3 5.917584e+02 0.5250126 0.20459638 2.423241e-03 1.640307e-02
## PRSS12 2.770826e+02 0.5813290 0.97127116 1.493594e-02 8.006944e-02
## PSD4 9.266089e+02 0.7131797 0.21337178 1.155486e-04 1.358621e-03
## PSMA6 2.734154e+03 1.1365207 0.13152519 4.909662e-19 9.358000e-17
## PSMB10 8.469880e+02 0.7295105 0.10103724 9.010041e-14 9.380110e-12
## PSMB5 3.752158e+03 0.5184802 0.13095788 2.056532e-05 2.775476e-04
## PSMB9 4.389937e+02 0.5628121 0.17718357 3.183901e-04 3.429908e-03
## PSMC4 1.700463e+03 0.5093366 0.10236505 2.029746e-07 6.095456e-06
## PSMD14 1.747546e+03 0.5856172 0.12930757 1.354323e-06 2.671822e-05
## PSMD2 7.913680e+03 0.5140765 0.11852845 3.937852e-06 6.580968e-05
## PSME1 2.526547e+03 0.5496355 0.10132179 1.481506e-08 4.807102e-07
## PSME2 1.686670e+03 0.9712682 0.27008591 2.664232e-05 3.820635e-04
## PSTPIP2 3.445125e+02 0.5603981 0.36425915 1.748939e-02 7.887966e-02
## PTGER4 5.719605e+02 1.8307233 0.74871199 4.303826e-04 3.950829e-03
## PTGES 1.439972e+03 2.4029058 0.36949493 4.337274e-12 4.013007e-10
## PTGES2 1.069350e+03 0.6634207 0.15124590 1.928267e-06 4.590616e-05
## PTGFR 1.473666e+03 1.3337969 0.35097137 7.102005e-06 1.296707e-04
## PTGFRN 1.131752e+04 0.7229450 0.32011816 2.723866e-03 1.529697e-02
## PTGS1 3.208293e+02 2.9336465 0.44247817 1.478942e-12 1.832171e-10
## PTGS2 1.899272e+03 5.0127261 0.53416589 4.040385e-23 1.486830e-20
## PTHLH 5.072390e+01 0.7217152 1.18997465 1.139185e-02 5.901260e-02
## PTP4A1 3.075040e+03 1.9943894 0.32390648 2.681518e-11 1.820233e-09
## PTPRE 5.676822e+02 0.7696976 0.29989369 8.474211e-04 6.768261e-03
## PTRH2 5.357061e+02 0.5922339 0.12610709 5.930179e-07 1.623996e-05
## PTS 8.474551e+02 0.9794894 0.18566908 1.224593e-08 5.087946e-07
## PTX3 1.142842e+04 1.3197153 0.96755829 3.601645e-03 2.077164e-02
## PXDN 1.958217e+04 0.7576100 0.25105087 2.922961e-04 2.295100e-03
## QPCTL 3.543571e+02 0.5444351 0.21844192 2.674938e-03 1.931655e-02
## QRFP 1.455290e+01 1.3038634 0.58070545 1.252885e-03 1.371634e-02
## QSOX1 2.867060e+04 1.5152811 0.20103968 2.483105e-15 3.163387e-13
## RAB13 5.293920e+03 0.5554044 0.09462390 7.151496e-10 2.991581e-08
## RAB27B 5.814695e+02 1.9971687 1.10134639 1.060782e-03 8.737817e-03
## RAB29 1.570198e+03 0.5685801 0.19569287 7.394872e-04 5.430757e-03
## RAB3B 1.560268e+03 0.8644357 0.68939433 8.038801e-03 3.553145e-02
## RAB42 2.914489e+02 0.7696452 0.36519830 3.132844e-03 2.564089e-02
## RAB5IF 1.683036e+03 0.6482149 0.11737339 6.286835e-09 3.215032e-07
## RAI14 2.802887e+03 1.2697034 0.19916463 1.457964e-11 1.036310e-09
## RANGAP1 6.546076e+03 0.6537836 0.19188625 1.131462e-04 1.159400e-03
## RASD1 2.711648e+02 2.4271300 0.80979153 4.972186e-05 7.462309e-04
## RASD2 2.142985e+02 1.1790319 1.17245393 4.243393e-03 2.801823e-02
## RASGRP1 4.412122e+01 0.8597439 0.42120585 3.034626e-03 2.093942e-02
## RASL10B 1.445563e+02 0.5071381 0.30268575 1.828070e-02 8.371286e-02
## RASSF4 3.880220e+02 0.5654681 0.20201734 1.037880e-03 8.840433e-03
## RASSF8 2.218562e+03 1.3208649 0.19068272 3.031403e-13 3.103756e-11
## RBM47 2.053720e+02 0.7657070 0.27282533 5.834846e-04 5.838308e-03
## RBPMS 1.175290e+03 0.6473984 0.25783196 1.753417e-03 1.189266e-02
## RCAN1 1.612563e+04 2.4662073 0.31131892 6.305053e-17 9.526200e-15
## RCN2 5.428067e+03 0.7615444 0.11918429 2.551463e-11 1.749445e-09
## RDH11 2.151020e+03 0.5137150 0.11576087 2.364310e-06 4.996798e-05
## RELB 9.539494e+02 1.9560671 0.29491488 1.910758e-12 1.954601e-10
## RELL1 4.855625e+02 0.6805101 0.23446577 5.722751e-04 5.328397e-03
## RELT 2.650486e+02 0.8131040 0.39159170 3.124562e-03 2.182469e-02
## RFK 1.044156e+03 0.5432107 0.12368161 2.661097e-06 6.010600e-05
## RFX5 1.395207e+03 0.6779074 0.23940953 6.907288e-04 5.852754e-03
## RGS2 2.978901e+02 2.6367896 0.80632599 2.036688e-05 3.468366e-04
## RIC8B 6.056722e+02 0.5636400 0.17139881 2.220907e-04 2.476897e-03
## RIPK2 8.270156e+02 1.3738001 0.21403244 9.100186e-12 8.173577e-10
## RNASEH2C 1.376783e+03 0.5148852 0.19188453 1.817220e-03 1.379456e-02
## RND3 1.028541e+04 1.4516363 0.19183295 2.502267e-15 3.163387e-13
## RNF103-CHMP3 1.617457e+01 0.7629377 1.07518000 1.458559e-02 8.233112e-02
## RNF114 2.889886e+03 0.5849586 0.11029896 2.616252e-08 9.637633e-07
## RNF122 7.678555e+01 1.0062824 0.56900212 3.646360e-03 2.722267e-02
## RNF145 3.826972e+03 1.0076531 0.16570347 9.324339e-11 5.299152e-09
## RNF150 1.017292e+03 0.8261864 0.42595507 4.175367e-03 2.635715e-02
## RNF152 1.738089e+02 2.2406742 0.41252949 2.924410e-09 1.576226e-07
## RNF182 4.258047e+02 3.4234580 0.57432338 3.682829e-11 3.448598e-09
## RORA 7.884570e+02 0.9140316 0.23981781 1.287832e-05 1.886371e-04
## RORB 4.955201e+01 2.4374918 0.54254521 2.225839e-07 8.399434e-06
## RPL17-C18orf32 9.918735e+02 0.5813665 0.16456093 8.280304e-05 9.863124e-04
## RPL4P6 1.000677e+01 1.3062632 0.67160622 2.451898e-03 3.374158e-02
## RPN2 1.180922e+04 0.5274875 0.12901203 9.779502e-06 1.275861e-04
## RPS20P22 2.228498e+01 1.1928615 0.57757934 1.734117e-03 1.778934e-02
## RSPO3 8.198072e+02 5.8909907 0.55549499 9.046649e-29 4.220759e-26
## RTL10 1.264270e+03 0.6019820 0.16862082 7.180211e-05 8.739646e-04
## RTP4 1.059646e+02 1.2182142 0.25474355 1.358006e-07 4.900820e-06
## S1PR3 1.094282e+03 0.9315658 0.37936790 1.040728e-03 8.830548e-03
## SAA1 4.784027e+02 2.5687775 1.01068215 2.654224e-04 2.650615e-03
## SAA2 1.255705e+02 4.2609205 0.70216490 4.910950e-11 4.332246e-09
## SAT1 2.073840e+04 1.7841783 0.35425050 2.479317e-08 7.416235e-07
## SCARB2 1.124664e+04 0.5385808 0.13406534 1.476725e-05 1.876942e-04
## SCD 2.351496e+03 0.5773361 0.29660083 8.292331e-03 4.082103e-02
## SCG2 2.675174e+02 1.0802590 0.93367442 6.626567e-03 4.503667e-02
## SCN2B 1.079027e+03 0.8776146 0.49525196 5.340800e-03 3.217454e-02
## SCN4B 1.264360e+03 3.3288722 0.54110956 1.219082e-11 1.036310e-09
## SEC14L2 4.560377e+02 0.5394648 0.25163841 6.263383e-03 3.289137e-02
## SEC22B 6.362926e+03 0.5258521 0.12046153 3.398982e-06 5.286352e-05
## SEC61G 2.618176e+03 0.7108274 0.14218571 9.256674e-08 2.882337e-06
## SELENOI 1.017513e+03 0.5955624 0.18123468 1.980378e-04 2.362005e-03
## SELENOK 1.073163e+03 0.5927482 0.14703531 1.131432e-05 2.096081e-04
## SELENOM 4.868177e+03 0.6441461 0.14416456 1.465254e-06 2.867835e-05
## SEMA3A 4.783957e+03 2.7021175 0.29813089 4.686091e-21 1.095417e-18
## SEMA6D 3.031368e+02 0.5000494 0.33679099 2.334048e-02 9.753867e-02
## SERPINB7 1.393089e+02 0.9137722 0.50734192 4.414678e-03 3.126073e-02
## SERPINE2 1.501515e+05 2.1823716 0.33759044 5.578685e-12 3.994909e-10
## SFRP1 6.190345e+03 1.3828346 1.31417952 4.467758e-03 1.998790e-02
## SFXN1 1.739392e+03 0.5125673 0.19246950 1.918424e-03 1.442082e-02
## SGIP1 4.196803e+02 1.9609410 0.61188176 5.031296e-05 7.520970e-04
## SGPP2 2.824604e+01 0.5261804 0.91658308 1.549088e-02 8.048349e-02
## SH3RF2 2.419661e+02 0.7815130 0.25666710 2.657055e-04 3.366867e-03
## SHC4 3.818483e+02 0.9960404 0.47748833 2.239178e-03 1.714440e-02
## SHISA2 4.130043e+02 1.2106291 0.45366892 3.530874e-04 4.549648e-03
## SHLD1 4.772369e+01 0.9609069 0.36347899 6.494725e-04 6.380154e-03
## SHQ1 6.546361e+02 0.5975019 0.25635740 3.353232e-03 2.193829e-02
## SIK1 7.376370e+02 2.8270557 0.18820545 2.418976e-52 1.179244e-48
## SIK2 3.113746e+03 0.6358803 0.16890874 3.425330e-05 3.934669e-04
## SIRPA 5.052044e+03 0.7592985 0.20615966 2.994038e-05 4.114116e-04
## SIRPB1 1.650130e+01 0.8927450 1.27559152 9.785213e-03 6.588037e-02
## SKIC2 1.858827e+03 0.5812983 0.09211606 5.590040e-11 4.209859e-09
## SLAMF9 1.121344e+01 0.5659483 1.13299937 1.554587e-02 8.631347e-02
## SLC11A2 3.378774e+03 1.7459622 0.19618736 3.282539e-20 6.177573e-18
## SLC12A2 1.385153e+03 1.3413770 0.27145213 5.247323e-08 1.867194e-06
## SLC15A3 5.167275e+02 0.6146279 0.23276015 1.337622e-03 9.781215e-03
## SLC16A2 1.974405e+03 0.8134463 0.20522263 8.308538e-06 1.641970e-04
## SLC16A3 6.926167e+03 1.4051855 0.41206499 3.000935e-05 4.119425e-04
## SLC18B1 7.105970e+02 2.0087083 0.24294181 6.159878e-18 1.253404e-15
## SLC19A1 3.971260e+02 0.8571076 0.42758405 3.314089e-03 2.592761e-02
## SLC19A2 5.730682e+02 1.2641774 0.19920469 1.748956e-11 1.407395e-09
## SLC19A3 1.674473e+02 1.9033196 0.40122143 6.003468e-08 3.588532e-06
## SLC1A1 2.907605e+02 0.7599342 0.61638407 9.752226e-03 5.849959e-02
## SLC22A23 1.685260e+03 1.3642832 0.19351998 1.068862e-13 1.260647e-11
## SLC22A4 2.710048e+02 0.5799458 0.39454452 1.706360e-02 9.108582e-02
## SLC24A3 1.506594e+02 1.4663475 0.61770790 5.553864e-04 8.114456e-03
## SLC25A11 1.526773e+03 0.5827156 0.11495534 8.816709e-08 3.267669e-06
## SLC25A25 7.628977e+02 0.5456438 0.17480227 4.121528e-04 3.888844e-03
## SLC25A5 2.740579e+03 0.5042253 0.16397062 5.677826e-04 4.729015e-03
## SLC27A6 3.135141e+02 0.6743156 0.96759145 1.643512e-02 7.530619e-02
## SLC2A1 5.672214e+03 1.4511827 0.29818524 5.327702e-08 1.420354e-06
## SLC2A3 1.349286e+03 0.5844717 0.28602526 6.692046e-03 3.803655e-02
## SLC2A5 6.730276e+01 0.5114164 0.87916251 1.853512e-02 7.144978e-02
## SLC2A6 4.311520e+02 0.7069307 0.24210100 4.804454e-04 5.010758e-03
## SLC35G2 1.139077e+03 0.8130316 0.11898981 7.854340e-13 8.290865e-11
## SLC36A4 7.552977e+02 0.7272744 0.13343818 7.866068e-09 3.058294e-07
## SLC39A14 1.855808e+04 2.2479852 0.23260085 1.479500e-23 3.846006e-21
## SLC39A8 4.922251e+03 3.6391802 0.31144659 2.919483e-33 1.808509e-30
## SLC43A2 5.979044e+02 0.6414556 0.32007697 5.683090e-03 3.273208e-02
## SLC44A1 2.915265e+03 0.6213104 0.17498049 7.014940e-05 8.390818e-04
## SLC44A3 3.536072e+01 0.7666158 0.47827096 8.192036e-03 3.887057e-02
## SLC66A1L 5.553681e+01 0.5610595 0.35110091 1.588137e-02 6.379997e-02
## SLC6A6 8.148649e+03 1.3090829 0.36082847 1.679801e-05 2.311707e-04
## SLC7A2 1.872977e+03 2.8130793 0.81828748 8.177732e-06 1.625785e-04
## SLC7A7 1.397650e+02 0.8663465 0.24672040 4.694529e-05 7.328661e-04
## SLC8A3 1.029543e+02 4.6855991 0.63202431 3.574569e-15 5.594711e-13
## SLPI 7.161405e+03 1.7601804 0.30477652 2.293982e-10 1.194147e-08
## SMIM3 5.842934e+02 1.2512538 0.41164815 1.085922e-04 1.266363e-03
## SMIM43 1.767716e+02 1.9898250 0.60249050 3.197126e-05 5.287619e-04
## SMOC1 1.732156e+04 3.4389556 0.32982883 1.210608e-27 3.943548e-25
## SMOX 1.941623e+03 1.3557091 0.35496297 7.917416e-06 1.585412e-04
## SMPD2 3.097031e+02 0.5085345 0.15904893 3.671812e-04 3.929901e-03
## SMURF1 1.603353e+03 0.5603427 0.14130921 1.620822e-05 2.607744e-04
## SNAPC1 2.563057e+03 0.9092683 0.17448222 2.051534e-08 7.040708e-07
## SNTB1 7.121667e+02 0.6892842 0.29918329 2.600777e-03 1.504222e-02
## SOD2 9.390512e+04 4.1125349 0.27721794 2.716301e-51 7.414166e-48
## SORCS2 3.428082e+03 0.6931075 0.15187558 7.069169e-07 1.660415e-05
## SOX4 1.545970e+03 2.0738058 0.25875654 3.913057e-17 6.897183e-15
## SPIB 1.294302e+01 1.4833261 0.75266434 1.596444e-03 2.427584e-02
## SPINK13 3.309098e+01 3.6017740 1.17081991 2.179566e-05 3.064991e-04
## SPINK6 1.535810e+01 7.3856231 1.45384986 7.404683e-09 4.550934e-07
## SPINT1 1.115276e+02 0.8429175 0.45047600 4.615784e-03 3.244272e-02
## SPON1 4.469152e+02 1.3168023 0.63386749 1.558759e-03 1.190496e-02
## SPRYD7 6.639337e+02 0.5919755 0.24215148 2.437935e-03 1.648037e-02
## SPTSSA 1.925828e+03 1.5656211 0.17024711 2.093875e-21 6.692432e-19
## SQOR 2.021603e+03 1.0301826 0.15718225 5.189072e-12 3.781687e-10
## SRA1 1.052963e+03 0.5823130 0.12875049 1.477769e-06 3.592720e-05
## SRPX 6.894702e+02 0.5890822 0.70569816 2.078497e-02 8.003525e-02
## SRPX2 2.320773e+03 2.3435530 0.49103965 3.376463e-08 1.214881e-06
## SSH2 1.005940e+03 0.7278532 0.25596551 5.549116e-04 5.478152e-03
## SST 3.613849e+02 5.8860609 1.39196704 6.752412e-09 3.320613e-07
## SSTR1 2.426460e+02 2.8508208 0.86349563 3.035334e-05 5.511474e-04
## ST3GAL1 2.597963e+03 1.2130491 0.25991528 1.714545e-07 5.155029e-06
## ST3GAL5 5.528717e+02 1.5486300 0.31905887 6.121994e-08 2.287259e-06
## ST6GALNAC4 1.276368e+03 0.6427128 0.12702929 7.591137e-08 2.889832e-06
## STAMBPL1 4.877771e+02 1.2000698 0.56164322 1.485230e-03 1.201588e-02
## STARD13 1.579406e+03 0.5158471 0.20771828 2.981361e-03 1.652653e-02
## STARD3NL 9.740152e+02 0.6640338 0.18587094 6.144701e-05 8.924806e-04
## STAT1 2.649759e+04 0.9175935 0.36664700 9.588184e-04 6.677366e-03
## STAT4 1.322916e+02 1.0455147 0.33809686 1.449445e-04 2.734412e-03
## STC1 4.235703e+03 7.4792190 1.00188672 2.433576e-16 2.984417e-14
## STC2 1.274085e+04 0.8068652 0.38419233 2.609596e-03 1.349037e-02
## STEAP1 2.797792e+02 1.7446976 0.45648238 5.663710e-06 1.228934e-04
## STEAP1B 2.861667e+02 1.0024985 0.44297072 1.419869e-03 1.382439e-02
## STIMATE 1.282014e+03 0.5817095 0.17732260 2.360488e-04 2.723792e-03
## STK32B 3.413299e+02 1.1858840 0.26732029 6.851099e-07 1.963041e-05
## STMP1 1.815020e+03 0.5551878 0.14480579 3.072111e-05 4.957198e-04
## SULF2 2.664828e+04 1.4135843 0.38388680 1.012755e-05 1.639995e-04
## SULT1C4 3.928120e+01 1.6930474 0.57100263 1.035441e-04 1.133182e-03
## SUSD1 7.461927e+02 0.9163215 0.10999377 1.195898e-17 2.250324e-15
## SYNE2 7.338711e+02 0.6108201 0.41779004 1.511668e-02 6.225781e-02
## TAF13 1.636344e+03 0.8937054 0.11579458 1.521561e-15 2.634236e-13
## TAGLN2 1.793095e+04 0.7973294 0.22518044 5.837262e-05 7.197772e-04
## TALDO1 7.243682e+03 0.7226527 0.14017822 3.743036e-08 1.201383e-06
## TAP1 1.744107e+03 0.6021290 0.16919485 7.277754e-05 1.004594e-03
## TAP2 2.973962e+03 0.6944542 0.25483581 9.137545e-04 6.424930e-03
## TAPBP 3.795166e+03 0.7902713 0.13753046 1.309872e-09 5.795829e-08
## TBC1D10A 1.190158e+03 0.9061786 0.18927257 1.767121e-07 5.115686e-06
## TBC1D9 9.648739e+02 0.8999350 0.12636400 1.151977e-13 1.179791e-11
## TCF21 1.790002e+01 4.3449193 1.54779689 1.114518e-04 2.883756e-03
## TCF4 4.207374e+03 0.5505689 0.13752829 1.504997e-05 2.285463e-04
## TEAD2 6.807074e+02 0.7158074 0.26710795 9.411824e-04 8.329766e-03
## TFPI 1.412879e+03 1.6645242 0.32874101 1.451638e-08 6.575825e-07
## TFPI2 1.455196e+03 4.2387814 0.89887428 2.521478e-08 8.465908e-07
## TFRC 8.189955e+03 2.0785476 0.19340852 2.147872e-28 8.086391e-26
## TGFB3 2.242881e+03 1.8432185 0.43029439 6.360107e-07 1.525542e-05
## TGFBI 6.615255e+04 1.8361171 0.55249362 1.911295e-05 2.328971e-04
## TGFBR1 4.883667e+03 0.8631695 0.18401854 3.001461e-07 6.353801e-06
## TGIF1 1.940004e+03 0.9344681 0.12317957 3.351286e-15 4.620328e-13
## THOP1 1.358056e+03 0.5441700 0.20764045 1.890363e-03 1.425205e-02
## TIFA 4.627990e+02 1.0409597 0.34187711 1.662716e-04 2.037041e-03
## TIGAR 5.108204e+02 0.8390754 0.35451073 1.538528e-03 1.178819e-02
## TIGD2 2.709467e+02 0.5820839 0.16504026 8.811848e-05 1.444124e-03
## TIMM13 1.108507e+03 0.5531528 0.12214064 1.418212e-06 3.509539e-05
## TIMM8B 1.121008e+03 0.5797461 0.17420045 1.801334e-04 1.870459e-03
## TLCD1 1.985294e+02 1.0451814 0.26729411 7.174484e-06 2.207031e-04
## TLE1 9.595746e+02 0.8973242 0.20413711 1.181608e-06 2.408528e-05
## TM4SF1 1.971804e+04 0.6149766 0.25396233 2.557299e-03 1.574524e-02
## TM4SF20 2.619075e+02 1.8032233 0.43125168 9.025603e-07 2.945787e-05
## TMEM100 3.196902e+01 1.3612202 1.22145844 4.061771e-03 2.592761e-02
## TMEM132A 1.882636e+03 4.4074483 0.87686328 1.023290e-08 4.788658e-07
## TMEM144 8.105827e+01 0.7165611 0.32507660 3.117853e-03 2.234469e-02
## TMEM165 5.591582e+03 0.9795530 0.10759990 9.558769e-21 1.811644e-18
## TMEM167A 3.803298e+03 0.6739606 0.09868826 1.782359e-12 1.560920e-10
## TMEM178A 5.261608e+01 0.6454329 0.45610791 1.507657e-02 6.942250e-02
## TMEM178B 5.958717e+02 1.4845938 0.46919496 5.617565e-05 7.856463e-04
## TMEM184B 5.073333e+03 0.5228253 0.10371838 1.420531e-07 4.156321e-06
## TMEM205 1.270487e+03 0.8755270 0.10948367 1.611107e-16 3.055064e-14
## TMEM208 8.035046e+02 0.5861096 0.13355395 2.530645e-06 5.286352e-05
## TMEM217 3.872441e+01 0.7995283 0.49836498 6.962884e-03 3.910190e-02
## TMEM237 2.582874e+03 0.8593272 0.19612952 1.289896e-06 2.565142e-05
## TMEM30A 8.809927e+03 0.5956034 0.17104656 8.929726e-05 1.028254e-03
## TMEM51 2.610620e+02 1.1288102 0.64882577 3.113179e-03 2.176485e-02
## TMEM59L 8.803785e+02 0.7333478 0.51115090 1.084609e-02 5.041256e-02
## TMEM63B 1.813152e+03 0.5575095 0.13385501 7.491247e-06 1.300656e-04
## TMEM64 1.091136e+03 1.0049006 0.15219353 3.900845e-12 3.803667e-10
## TMPRSS4 4.831423e+01 1.7193753 0.55328114 6.373969e-05 9.014090e-04
## TMX3 1.062126e+04 0.9140282 0.20939082 1.344690e-06 2.294111e-05
## TNFAIP2 4.071222e+03 2.4576297 0.19462372 8.848210e-38 1.380072e-34
## TNFAIP3 3.178494e+03 2.7965846 0.23410843 1.494296e-34 1.127043e-31
## TNFAIP6 1.563837e+03 4.2453050 1.05752264 2.529957e-07 6.353801e-06
## TNFRSF10B 5.462274e+03 0.7109494 0.15476548 7.602628e-07 1.761337e-05
## TNFRSF10D 2.961672e+03 1.0531924 0.30436877 3.292906e-05 4.120870e-04
## TNFRSF11B 6.727519e+04 1.2001875 0.41279087 2.024847e-04 1.623836e-03
## TNFRSF1B 1.121884e+02 2.2170936 0.62274484 8.572443e-06 1.737680e-04
## TNFRSF21 1.445956e+02 1.4979191 0.31656327 1.055692e-07 4.299583e-06
## TNFRSF9 1.193583e+02 2.6541054 0.40803048 3.271610e-12 3.688725e-10
## TNFSF10 7.029394e+01 2.4719093 0.62120122 1.449961e-06 3.085845e-05
## TNFSF14 8.181516e+01 4.3378463 0.54840121 1.560662e-16 3.433206e-14
## TNFSF9 3.371377e+02 0.9293864 0.41810162 1.888332e-03 1.497712e-02
## TNIP1 3.751579e+03 1.2047405 0.12941499 1.010501e-21 2.328627e-19
## TNS4 1.472477e+02 1.2947997 0.57103262 8.824860e-04 8.801632e-03
## TOMM40 1.143654e+03 0.7259727 0.18838650 1.615547e-05 2.918487e-04
## TOMM40P4 8.870862e+01 0.7411510 0.40501836 5.967696e-03 2.942899e-02
## TOMM5 1.440776e+03 0.5586778 0.09943522 6.515360e-09 2.835118e-07
## TP53INP2 1.684698e+03 0.6870450 0.20253224 1.057322e-04 1.368488e-03
## TPCN1 1.919576e+03 0.8509549 0.21718308 1.015560e-05 1.526944e-04
## TPI1 1.783761e+04 1.1667462 0.28015319 1.931751e-06 3.583281e-05
## TPM1 3.945436e+04 0.5467716 0.27588006 8.764555e-03 3.338017e-02
## TRABD2B 4.841384e+02 1.4955551 0.32081492 1.787865e-07 6.108785e-06
## TRAF2 6.865336e+02 0.5793815 0.17857393 2.389550e-04 2.618454e-03
## TRAF3 2.321538e+03 0.5721463 0.11889556 3.567083e-07 8.564623e-06
## TRAF3IP2 1.040846e+03 1.1521861 0.15768092 2.276908e-14 3.321343e-12
## TREM1 3.871975e+01 5.6038079 1.16426642 9.339432e-09 5.121762e-07
## TRIM16 2.152034e+03 0.8213992 0.20167109 4.735261e-06 1.012884e-04
## TRIM16L 7.719136e+02 0.9450984 0.30360172 1.640575e-04 1.731944e-03
## TRIM5 1.064725e+03 0.5219127 0.16143053 3.020212e-04 2.996633e-03
## TRIM8 3.269556e+03 0.5474524 0.16038391 1.466196e-04 1.330855e-03
## TRPC3 5.733135e+01 0.8011444 0.84952612 1.029636e-02 5.962399e-02
## TRPM3 3.020487e+01 1.7900689 0.49612304 1.614971e-05 3.005246e-04
## TSC22D1 4.747385e+03 0.6510236 0.22981649 7.187738e-04 5.319632e-03
## TSKU 1.821690e+03 1.5132640 0.16581280 4.858255e-21 1.315770e-18
## TSPAN2 8.885800e+02 1.9504725 0.44775316 3.662151e-07 9.731676e-06
## TTLL4 4.792883e+02 0.5205215 0.16486984 3.939428e-04 3.957527e-03
## TTPA 7.783546e+01 1.1113800 0.39122130 2.830176e-04 3.597387e-03
## TUBB2B 1.145385e+03 0.8095114 0.37362597 2.767545e-03 1.949735e-02
## TXN 5.669892e+03 0.6233565 0.21112982 5.448683e-04 4.221749e-03
## TXNDC17 6.656502e+02 0.5126064 0.21399150 3.516546e-03 2.122153e-02
## TYMP 9.216856e+02 1.0764086 0.27777366 7.837143e-06 1.240091e-04
## UBE2M 1.699893e+03 0.5289385 0.12710016 7.485493e-06 1.172435e-04
## UBL5 1.452220e+03 0.5344725 0.13761538 2.736113e-05 3.534762e-04
## UCK2 9.509794e+02 0.5103768 0.20240500 2.744255e-03 1.971466e-02
## UCN2 1.229859e+02 3.1118095 0.49635275 7.171163e-12 7.412724e-10
## UFD1 1.540292e+03 0.5298786 0.13364279 1.868105e-05 2.565899e-04
## UNKL 1.639635e+03 0.5208440 0.16065017 3.054602e-04 3.380036e-03
## UPP1 3.928516e+02 0.9400333 0.18100735 2.089003e-08 9.313379e-07
## UQCC2 8.894917e+02 0.6872920 0.19531144 6.479412e-05 8.368091e-04
## UQCRFS1 1.638512e+03 0.5795996 0.13025417 1.931021e-06 3.592720e-05
## UQCRQ 3.055478e+03 0.6233874 0.13064050 3.657209e-07 1.009702e-05
## USP21P1 3.475218e+00 3.7202814 1.82685046 1.604745e-03 6.380554e-02
## USP45 3.947102e+02 0.5203729 0.21759224 3.717623e-03 2.827960e-02
## USP46 1.033795e+03 0.5352755 0.20013356 1.561301e-03 1.223030e-02
## USP54 7.293754e+02 0.5642868 0.16539906 1.468982e-04 1.840452e-03
## UST 1.596080e+03 1.4277181 0.22429665 1.344959e-11 1.036310e-09
## VDAC1 5.406121e+03 0.6382705 0.10975564 9.403004e-10 4.205636e-08
## VLDLR 1.596698e+03 0.5796134 0.27641560 6.082803e-03 3.523815e-02
## VMP1 6.484774e+03 0.6405575 0.16903183 3.018126e-05 3.325675e-04
## VNN1 5.438306e+01 2.7159186 0.45753292 1.148661e-10 7.007885e-09
## VNN2 8.153108e+01 3.2974820 0.50613911 1.757560e-12 1.871501e-10
## VNN3P 6.230433e+01 2.9955494 0.49078656 4.525524e-11 2.831814e-09
## VOPP1 3.042254e+03 0.5656612 0.14363072 1.830963e-05 2.523276e-04
## VPS13A 2.466930e+03 0.5023554 0.12200041 1.044481e-05 1.676124e-04
## VWC2 5.705884e+01 1.9933545 0.81046031 2.950121e-04 2.681150e-03
## WFDC1 1.103406e+02 1.3374782 0.89584679 2.940314e-03 2.299947e-02
## WFDC21P 2.648159e+03 0.8346285 0.18855642 1.155948e-06 2.575377e-05
## WIF1 3.759075e+01 2.7820468 0.46165184 1.239190e-10 1.029569e-08
## WNT2B 8.395491e+02 2.2528715 0.36175604 2.252984e-11 1.859716e-09
## WNT5A 7.546576e+03 1.1413385 0.97856970 4.901497e-03 2.436832e-02
## WTAP 4.346894e+03 1.5212359 0.14026073 1.726808e-28 7.595982e-26
## WTAPP1 1.654237e+01 5.4737167 1.54940389 8.267659e-06 2.122180e-04
## WWC1 1.292633e+03 1.3592710 0.24394643 1.769480e-09 8.438116e-08
## XPNPEP1 2.339528e+03 0.6022194 0.09958172 2.838403e-10 1.619821e-08
## YRDC 3.133345e+02 0.5578595 0.15985429 1.091353e-04 1.725991e-03
## YWHAG 7.694190e+03 0.5087352 0.08544923 6.209380e-10 2.528376e-08
## ZBTB38 2.694410e+03 0.5645707 0.13402594 6.370077e-06 1.128508e-04
## ZC3H12A 1.416814e+03 3.3904007 0.24066194 8.169313e-47 2.724303e-43
## ZC3H12D 3.824020e+01 1.2973215 0.49949112 4.874061e-04 4.062657e-03
## ZFP36L1 8.829492e+03 0.6361679 0.17504937 4.524253e-05 4.628136e-04
## ZFP92 7.686970e+01 0.5279989 0.25810409 8.432443e-03 3.972136e-02
## ZNF345 1.933066e+02 0.6527397 0.30776961 4.620852e-03 2.861006e-02
## ZNF35 1.673418e+02 0.5854869 0.26693769 5.115362e-03 3.485962e-02
## ZNF469 6.078716e+03 0.5786483 0.20717267 9.910484e-04 7.380477e-03
## ZNF503 3.873517e+03 0.5126286 0.13103329 2.461272e-05 3.491595e-04
## ZNF587B 2.411037e+02 0.5388431 0.23001844 3.970193e-03 2.870809e-02
## ZNF697 2.662437e+02 0.8520717 0.25441114 7.808123e-05 1.311672e-03
## ZNRF1 6.612929e+02 0.7411992 0.20546567 4.280850e-05 6.291698e-04
## ZSWIM4 5.328226e+02 1.5938922 0.22238336 4.487706e-14 5.492836e-12
de_down <- get_downregulated(as.data.frame(res1))
de_down
## baseMean log2FoldChange lfcSE pvalue padj
## AADAT 3.793867e+02 -0.6157644 0.18773204 2.039957e-04 2.499270e-03
## AARS1 9.013165e+03 -0.6218509 0.14665694 3.919710e-06 5.953450e-05
## ABCA15P 1.528692e+01 -1.1837995 1.41395171 7.022592e-03 5.027555e-02
## ABCA2 3.454144e+03 -0.6015257 0.23052334 1.555442e-03 9.133427e-03
## ABCA3 3.770158e+02 -1.2850629 0.31389901 2.338510e-06 6.581030e-05
## ABHD1 2.152418e+01 -1.2547634 0.65124196 2.146132e-03 2.110522e-02
## ABRAXAS1 3.053521e+02 -0.6604032 0.18237324 4.983931e-05 7.335069e-04
## ACADL 1.840386e+01 -0.5586362 0.95097651 1.513595e-02 8.446735e-02
## ACAN 9.830612e+04 -1.6105617 0.36171844 4.393585e-07 8.841435e-06
## ACAP2 2.244366e+03 -0.6171989 0.20549261 4.806669e-04 4.359957e-03
## ACOT11 3.763251e+02 -0.5580527 0.15997411 1.116039e-04 1.504854e-03
## ACSBG2 3.346964e+01 -1.2634696 0.59711360 1.446079e-03 1.331148e-02
## ACTC1 1.032682e+02 -3.4432514 0.74001911 1.203220e-07 4.211914e-06
## ACVR2B 2.629942e+02 -0.6996326 0.19397127 4.513499e-05 7.103914e-04
## ADAM11 2.056184e+01 -1.0117370 0.69826618 6.354753e-03 4.415248e-02
## ADAM22 3.369493e+01 -0.5368773 1.41693974 6.982438e-03 3.337591e-02
## ADAMTS15 4.105495e+02 -1.9610881 0.68329116 6.658552e-05 1.113218e-03
## ADAMTS2 5.814844e+03 -0.6224722 0.34513282 9.022180e-03 4.128290e-02
## ADAMTSL2 1.320426e+01 -1.3297575 0.74998186 3.530616e-03 2.991321e-02
## ADAMTSL3 4.250774e+02 -1.7672415 0.82988057 5.496507e-04 6.476511e-03
## ADAMTSL5 4.379257e+02 -0.9308607 0.41002764 1.482546e-03 1.199999e-02
## ADARB1 1.952300e+03 -0.8335829 0.54132471 5.712913e-03 2.726451e-02
## ADCY10P1 6.344573e+01 -1.3262614 0.31827310 1.974200e-06 4.928422e-05
## ADGRA2 1.194426e+03 -0.6693947 0.54328944 1.290766e-02 5.525176e-02
## ADGRG2 4.780140e+02 -0.9606795 0.41444011 1.357661e-03 9.879261e-03
## ADIRF 5.787467e+03 -1.2473852 0.32557481 6.958094e-06 1.100964e-04
## ADM2 1.075369e+03 -0.7232470 0.31588471 2.321986e-03 1.684448e-02
## ADRA2A 1.920666e+02 -0.7730212 0.77423148 1.354513e-02 7.217589e-02
## AEBP1 8.760755e+03 -0.9014727 1.04887637 9.512659e-03 4.021496e-02
## AFF3 1.393382e+03 -0.6999313 0.39432555 7.429442e-03 4.079177e-02
## AGAP11 4.746286e+02 -1.2715480 0.46335874 2.580982e-04 2.703011e-03
## AGT 1.418117e+02 -1.6335832 0.38157701 9.831515e-07 2.944780e-05
## AHNAK 1.397372e+05 -0.6031223 0.11074374 1.065469e-08 4.241922e-07
## AHNAK2 1.800315e+04 -1.5070797 0.37441991 1.747358e-06 2.971606e-05
## AIFM3 2.888984e+01 -0.8981029 0.41772571 2.380089e-03 1.444402e-02
## AJUBA 4.989245e+03 -0.7102207 0.24811949 5.209166e-04 4.406253e-03
## AKAP6 1.809894e+02 -1.7993478 0.44493991 2.078179e-06 5.590745e-05
## AKNA 1.077482e+03 -0.7524218 0.29646274 1.137051e-03 9.697893e-03
## ALDH1L2 6.315836e+03 -0.6588879 0.29213670 3.002530e-03 1.790982e-02
## ALDH3A2 1.039400e+04 -0.5315709 0.37801524 2.289758e-02 7.692989e-02
## ALKBH8 3.313964e+02 -0.5800771 0.13465526 3.719312e-06 8.203151e-05
## ALS2CL 1.397878e+03 -1.4570888 0.28660641 1.418369e-08 6.397141e-07
## AMT 2.316982e+02 -0.5130826 0.26444365 1.085519e-02 5.696820e-02
## AMY2B 1.505110e+02 -1.0391462 0.34629453 2.014450e-04 2.669309e-03
## ANAPC4 8.451696e+02 -0.5063873 0.11288806 2.493970e-06 5.807886e-05
## ANG 3.326171e+02 -0.5620804 0.23841816 3.618568e-03 2.384664e-02
## ANGPTL5 1.373075e+03 -0.8983994 0.46428239 3.153190e-03 1.904855e-02
## ANGPTL7 1.427875e+01 -3.4541298 1.20332176 6.338334e-05 1.121581e-03
## ANK3 4.480282e+02 -2.3169617 0.50061504 9.305010e-08 3.267669e-06
## ANKH 5.492999e+03 -0.5241128 0.19661368 1.782809e-03 1.096722e-02
## ANKMY1 4.078904e+02 -0.8648198 0.18206483 2.257063e-07 9.044310e-06
## ANKMY2 7.815060e+02 -0.6551981 0.18068232 4.618425e-05 6.317656e-04
## ANKRD29 6.036988e+01 -0.6670044 0.47007458 1.311535e-02 6.288213e-02
## ANKRD36C 3.016841e+02 -0.6715244 0.34694419 5.907192e-03 4.132238e-02
## ANKS1B 4.516179e+01 -0.6143211 0.41089713 1.463357e-02 5.788714e-02
## ANXA4 2.819600e+03 -0.5680769 0.15702976 7.034507e-05 8.406817e-04
## AOC2 1.532107e+03 -2.6471666 0.48361912 1.306237e-09 6.703022e-08
## AOC3 3.571624e+02 -1.9696891 0.60315087 4.128115e-05 6.291698e-04
## AP4B1 5.509477e+02 -0.5069842 0.14282891 1.050939e-04 1.232594e-03
## APPL2 5.249476e+03 -0.7771283 0.22797929 7.808473e-05 8.493510e-04
## AQP1 2.062061e+02 -2.2642653 0.83934296 9.709390e-05 1.961761e-03
## AQP3 3.352770e+01 -2.1564068 0.53175086 2.481434e-06 5.953450e-05
## ARHGAP21 6.381814e+03 -0.7512415 0.20661601 3.759657e-05 3.982782e-04
## ARHGAP23 5.594611e+03 -0.5836233 0.24268272 2.880361e-03 1.401758e-02
## ARHGEF10 3.062607e+03 -0.7251378 0.12503520 9.826263e-10 4.034734e-08
## ARL17B 2.661775e+02 -0.5283851 0.24396113 6.264826e-03 3.611034e-02
## ARMC12 1.520108e+01 -1.4943370 1.02314767 3.235431e-03 2.864800e-02
## ARMC9 1.028727e+03 -0.6202669 0.21628880 6.989501e-04 6.424930e-03
## ARMH1 5.277272e+01 -0.6015230 0.39305044 1.517408e-02 7.922027e-02
## ARVCF 4.735697e+02 -1.8297217 0.36489374 2.337075e-08 9.386698e-07
## ASAP2 2.347182e+03 -0.6581194 0.14244733 8.018215e-07 1.882807e-05
## ASIC1 1.390505e+02 -0.6106226 0.36402047 1.127786e-02 5.612204e-02
## ASIC3 5.186399e+01 -0.7013512 0.43727584 9.824293e-03 5.757930e-02
## ASPDH 1.964992e+01 -1.1994861 0.86200856 5.082451e-03 4.035633e-02
## ATF5 1.336797e+03 -0.7116099 0.24792785 5.303995e-04 4.747277e-03
## ATF7IP2 1.614751e+02 -0.5275488 0.35240504 2.039037e-02 9.727137e-02
## ATM 2.923499e+03 -0.5910995 0.19383096 4.220323e-04 3.455824e-03
## ATP10A 2.657072e+03 -1.1813027 0.37218723 8.215086e-05 9.598032e-04
## ATP1A3 1.426353e+02 -2.0412583 0.82916477 4.412357e-04 6.729857e-03
## ATP2A3 2.506987e+02 -0.9879361 0.29746631 7.007745e-05 1.161859e-03
## ATP2B4 1.449608e+04 -0.5363803 0.15835086 1.677408e-04 1.729569e-03
## ATP6AP1L 1.784601e+02 -0.9187939 0.23849297 1.188843e-05 3.411288e-04
## ATP6V1G2 7.124450e+01 -1.0467557 0.34117896 1.638119e-04 1.969309e-03
## ATP7B 1.899165e+02 -0.8649265 0.24458838 4.234585e-05 6.413267e-04
## ATP8A1 6.811564e+01 -1.4929463 0.56273492 2.808849e-04 2.581461e-03
## ATP8B1 2.453484e+03 -1.4113560 0.34449945 2.151757e-06 3.637273e-05
## ATP9A 3.443192e+03 -0.8337743 0.19796380 2.649821e-06 4.764773e-05
## AVIL 3.218583e+02 -0.9240676 0.15242388 1.404902e-10 1.222495e-08
## B3GALT1 1.752996e+01 -1.0315597 1.08234732 9.323557e-03 6.364201e-02
## B3GALT2 2.348275e+01 -2.8739918 1.19454379 1.744739e-04 2.586875e-03
## B3GNT7 1.620004e+02 -1.9900220 0.58822462 2.558914e-05 4.194630e-04
## B4GALNT1 1.562035e+02 -0.9636435 0.30206662 1.238073e-04 2.412288e-03
## B4GALNT3 5.983339e+01 -2.8060157 0.71134746 2.866794e-06 6.666747e-05
## BAG2 1.982801e+03 -0.5821496 0.22606407 1.833197e-03 1.233166e-02
## BAMBI 3.020343e+03 -0.9981770 0.37283531 4.473907e-04 3.629434e-03
## BCAM 1.019350e+03 -0.9970111 0.18393700 5.921669e-09 2.601163e-07
## BCL2L15 2.623778e+01 -1.3703081 0.68332179 1.625933e-03 1.641733e-02
## BCLAF3 4.470950e+02 -0.6093006 0.25518224 2.589095e-03 1.782619e-02
## BEAN1 2.910882e+01 -0.7196277 0.52685971 1.251457e-02 6.888381e-02
## BEND6 6.889760e+02 -1.0291697 0.22366792 3.647051e-07 1.079786e-05
## BEX2 7.005903e+01 -2.2931816 0.56195959 1.154608e-06 2.945787e-05
## BEX4 1.468836e+03 -0.5757810 0.14841137 2.165007e-05 3.196909e-04
## BFSP1 1.528029e+02 -0.5776951 0.33114794 1.183751e-02 8.518532e-02
## BGN 1.187634e+04 -1.2254689 0.26040498 1.789625e-07 4.660137e-06
## BHLHE41 1.597371e+02 -2.5152168 0.73667998 8.276863e-06 1.615426e-04
## BHMT 1.161108e+02 -1.8847902 0.81387157 4.317432e-04 4.979789e-03
## BMF 2.750531e+02 -0.9613116 0.53145182 3.694476e-03 2.424870e-02
## BMS1P3 8.895608e+01 -1.2684056 0.40296053 9.135738e-05 1.218908e-03
## BOK 6.565432e+02 -0.7598197 0.40162541 5.161445e-03 2.821155e-02
## BSN 1.197917e+02 -0.6607766 0.51694365 1.559272e-02 7.129503e-02
## C11orf21 1.219465e+02 -1.8294274 0.37950005 6.050981e-08 2.339543e-06
## C12orf75 4.403487e+03 -0.5949207 0.20855368 7.490259e-04 5.881364e-03
## C14orf132 2.295232e+03 -1.3394565 0.15621473 7.421381e-19 1.526571e-16
## C16orf86 1.258402e+02 -0.5245353 0.25711206 8.247095e-03 4.415248e-02
## C17orf107 1.000490e+02 -0.9195673 0.56406669 5.447729e-03 3.654841e-02
## C1orf115 1.406627e+02 -0.9447557 0.32391374 2.909387e-04 4.846056e-03
## C1orf21 2.569724e+03 -0.5733377 0.14533013 1.680910e-05 2.590392e-04
## C1orf226 4.260390e+01 -0.9867154 0.51175779 3.273614e-03 2.510448e-02
## C1QTNF3 4.971224e+02 -1.9367796 0.38943993 3.691284e-08 1.422065e-06
## C1QTNF6 8.782623e+02 -0.5508167 0.19209139 9.403842e-04 7.503026e-03
## C2CD5 1.137271e+03 -0.6433641 0.12594961 6.077466e-08 2.348575e-06
## C2orf88 3.702059e+01 -0.5384275 0.40121725 2.398977e-02 8.330823e-02
## C5 5.570640e+02 -0.9599060 0.16551034 6.520986e-10 3.674570e-08
## C8orf58 8.441172e+02 -0.5282644 0.26770591 9.378205e-03 4.488073e-02
## C9orf50 5.855726e+01 -0.9274590 0.35872640 8.182983e-04 7.671649e-03
## CA3 4.987780e+01 -1.7553369 1.24824216 1.920479e-03 1.514801e-02
## CA5B 1.701187e+03 -1.0142610 0.26823231 1.289175e-05 1.863380e-04
## CABCOCO1 1.901078e+02 -0.7858524 0.45880220 5.991385e-03 3.649462e-02
## CACNB1 5.609678e+02 -0.8402616 0.23415914 3.464090e-05 5.511474e-04
## CACNB2 8.300680e+01 -0.6426852 0.40747463 1.210116e-02 6.721466e-02
## CACNG4 1.802779e+02 -1.9996357 0.75639119 2.771496e-04 3.479427e-03
## CALCOCO1 6.847242e+03 -0.6055687 0.15421823 1.438820e-05 2.034634e-04
## CALHM2 1.591308e+03 -0.7891235 0.16453058 2.272992e-07 7.346005e-06
## CALHM3 2.062875e+01 -2.9002979 1.28936747 6.151918e-04 7.546925e-03
## CALML4 4.029437e+01 -0.7005373 0.36154343 5.978652e-03 3.068011e-02
## CAMK1D 1.154674e+03 -0.8211669 0.34355038 1.656612e-03 1.134374e-02
## CAMK2A 5.232530e+01 -1.4894145 0.48473725 1.039248e-04 1.179969e-03
## CAMTA2 2.955873e+03 -0.5297430 0.19960875 1.970899e-03 1.351988e-02
## CAPG 4.321819e+03 -1.1773593 0.16986642 3.052041e-13 2.826419e-11
## CAPN12 3.349796e+01 -1.2824976 0.74514073 2.975964e-03 2.346671e-02
## CAPN3 3.074366e+02 -0.8630042 0.18290820 2.781996e-07 9.211145e-06
## CAPS 1.668602e+03 -1.3292228 0.14787870 1.767998e-20 4.980425e-18
## CARD10 3.262830e+02 -1.4809639 0.26611241 1.499924e-09 8.390030e-08
## CATSPER1 5.419613e+01 -1.9444519 0.49509325 3.595630e-06 6.415244e-05
## CATSPERG 3.542392e+01 -0.6958911 0.61604727 1.620460e-02 6.470083e-02
## CCDC113 3.344103e+02 -0.5668294 0.27377710 6.667943e-03 4.392145e-02
## CCDC146 9.350708e+01 -1.1287835 0.44807291 6.761652e-04 7.114749e-03
## CCDC154 3.140693e+01 -1.4514889 0.69714651 1.191071e-03 8.600687e-03
## CCDC171 1.178011e+02 -1.1005656 0.29694567 1.574376e-05 3.186527e-04
## CCDC180 2.555794e+02 -0.5607943 0.22699231 2.705224e-03 2.237486e-02
## CCDC74A 4.779495e+02 -0.6391404 0.18726805 1.177852e-04 1.411719e-03
## CCDC74B 3.489551e+02 -1.1396158 0.26024487 9.389474e-07 3.032177e-05
## CCDC80 7.862270e+04 -0.8135535 0.14848775 5.412966e-09 2.143743e-07
## CCN3 9.622167e+03 -2.3509938 0.81088230 6.107325e-05 6.960915e-04
## CCN4 1.066129e+03 -0.9647245 0.27994042 4.664545e-05 6.363676e-04
## CCNB1IP1 8.888195e+02 -0.5495541 0.18804736 7.388178e-04 6.213563e-03
## CCNO 8.153337e+01 -0.7348227 0.66359673 1.347024e-02 6.679065e-02
## CCPG1 6.949127e+03 -0.5184161 0.32299933 1.827274e-02 6.550503e-02
## CD109 1.006309e+04 -0.6028288 0.14038291 2.658997e-06 4.100195e-05
## CD248 9.628926e+02 -1.6261465 0.49169085 3.215136e-05 4.432622e-04
## CD72 5.050589e+01 -0.9796143 0.36559998 5.728603e-04 4.802004e-03
## CD79B 5.936361e+01 -0.9018403 1.23724087 6.779333e-03 4.349960e-02
## CD8B2 6.012792e+01 -1.9530921 0.89545953 4.430554e-04 4.482179e-03
## CDC42EP3 3.582192e+03 -0.5081711 0.32982596 1.944292e-02 7.476800e-02
## CDH11 6.101555e+03 -0.5645357 0.32713967 1.268158e-02 5.003670e-02
## CDH15 1.191109e+01 -0.9255215 0.78113895 1.014619e-02 9.644259e-02
## CDHR4 1.992001e+01 -0.5846016 1.15922717 1.229065e-02 7.786474e-02
## CDIN1 5.230650e+02 -0.9399205 0.27316953 5.009458e-05 7.156924e-04
## CEACAM19 1.005787e+03 -0.7865101 0.25360675 2.160296e-04 2.280213e-03
## CEBPG 1.912753e+03 -0.5669055 0.21181884 1.473353e-03 1.031984e-02
## CELF6 5.909456e+01 -0.8728019 0.44788713 3.489889e-03 1.968064e-02
## CEP112 3.824885e+02 -0.6111987 0.30874642 6.779100e-03 3.832813e-02
## CEP126 9.285768e+02 -1.0281242 0.21644849 1.763273e-07 5.115181e-06
## CEP162 1.999083e+02 -0.5895560 0.20530071 7.870360e-04 7.425609e-03
## CEP85L 2.458165e+02 -0.5213738 0.20649575 2.653230e-03 1.880188e-02
## CERS6 1.346058e+03 -0.6427258 0.22049510 5.786435e-04 5.662151e-03
## CFAP43 3.007400e+01 -1.2286663 0.56454603 1.440723e-03 1.150704e-02
## CFAP57 5.736345e+01 -1.4703260 0.52910492 1.850691e-04 2.295100e-03
## CFAP70 2.366751e+02 -0.5342642 0.28863301 1.192743e-02 6.572389e-02
## CGN 1.820259e+02 -2.9043643 0.77377837 2.993394e-06 7.601306e-05
## CHAD 2.963934e+01 -1.1891738 0.54895651 1.459899e-03 1.011106e-02
## CHADL 7.415237e+01 -0.7021332 0.41990245 8.306149e-03 5.085240e-02
## CHRD 3.833144e+02 -0.9040849 0.36073969 8.656537e-04 9.308653e-03
## CHRFAM7A 1.468565e+02 -1.1896732 0.54010273 1.197126e-03 1.122737e-02
## CHRNA7 1.223283e+02 -0.9528397 0.45592939 2.255659e-03 1.644266e-02
## CHRNE 2.792459e+01 -1.0078920 0.67086887 5.867386e-03 3.914000e-02
## CHST2 2.021434e+02 -0.6835772 0.35394816 5.904445e-03 5.099301e-02
## CHST5 1.355984e+01 -1.8528808 1.13900341 2.738841e-03 2.361682e-02
## CIB2 2.770754e+02 -0.7533041 0.35421072 3.314632e-03 2.277222e-02
## CILK1 9.344427e+02 -0.6738633 0.22018284 3.350338e-04 3.292020e-03
## CILP 8.276696e+02 -2.0264294 0.97374634 7.189262e-04 6.074168e-03
## CILP2 5.307043e+01 -2.6186853 0.68743032 2.693361e-06 5.054118e-05
## CLCNKB 6.881261e+01 -1.6017290 0.40627494 4.096877e-06 7.172565e-05
## CLEC18A 6.878054e+01 -1.4212130 0.42297601 4.280727e-05 6.469774e-04
## CLEC18B 1.495613e+01 -1.5667939 1.07030419 3.653382e-03 3.161685e-02
## CLEC3B 9.796319e+03 -1.4989610 0.96959978 2.621217e-03 1.604418e-02
## CLIC3 1.273627e+03 -0.7940663 0.54558494 6.474878e-03 3.773581e-02
## CLSTN2 1.072812e+02 -3.0280031 0.47183497 5.145505e-12 5.477424e-10
## CLXN 2.579196e+01 -0.8404539 0.88746809 1.152204e-02 7.429508e-02
## CLYBL 7.621829e+01 -0.6812277 0.32371510 4.303368e-03 2.307485e-02
## CMKLR1 1.722551e+03 -1.2637941 0.39738936 7.104156e-05 1.005729e-03
## CMYA5 2.073941e+02 -1.2604863 0.22446462 1.398087e-09 7.847360e-08
## CNKSR2 1.044087e+02 -1.1917593 0.67664498 1.990162e-03 1.686166e-02
## COL12A1 1.983395e+05 -0.5514819 0.23619664 3.699266e-03 1.965622e-02
## COL15A1 1.724857e+04 -1.8902753 0.33659490 9.483753e-10 3.834960e-08
## COL21A1 2.203438e+02 -2.3889290 0.88964971 1.230549e-04 1.555143e-03
## COL25A1 1.663257e+01 -2.1217242 0.81318887 2.881469e-04 3.929133e-03
## COL8A2 8.563854e+03 -0.8972690 0.35235469 8.819041e-04 6.699462e-03
## COL9A2 4.386041e+02 -2.6829815 0.77389347 5.999348e-06 1.517859e-04
## COLGALT2 4.796543e+02 -1.3230826 0.31412089 1.461611e-06 3.385418e-05
## CORIN 9.909387e+01 -2.1298454 0.44964114 8.348957e-08 3.504110e-06
## CORO2B 4.668203e+02 -2.9658103 0.42270980 3.508555e-14 4.369065e-12
## CPA1 2.169562e+01 -1.9844286 1.38649471 2.960846e-03 2.611674e-02
## CPAMD8 2.853610e+02 -1.2915692 0.58618609 9.084664e-04 9.678947e-03
## CPE 3.742463e+03 -0.5092572 0.38267203 2.666290e-02 9.248318e-02
## CRABP2 2.036557e+02 -2.2623730 0.51817534 4.384959e-07 1.316902e-05
## CRACD 1.107873e+02 -1.2509108 0.73264488 2.792078e-03 2.213622e-02
## CRACR2B 2.233532e+02 -1.1351696 0.51848664 1.475605e-03 1.173956e-02
## CRIP1 5.657937e+02 -2.6121283 0.43275521 3.317077e-11 2.526737e-09
## CRIP2 3.549026e+03 -2.0946575 0.20906011 3.881360e-25 1.351125e-22
## CRYAB 4.445123e+03 -0.9335626 0.29269361 1.137947e-04 1.163169e-03
## CRYZ 1.034401e+03 -0.5178636 0.28324002 1.310671e-02 6.382631e-02
## CSDC2 3.600248e+02 -0.9539083 0.19572419 1.026338e-07 3.704148e-06
## CSPG4 1.481527e+04 -1.3274584 0.30090874 6.457337e-07 1.258152e-05
## CSPG4P13 5.873288e+01 -5.6266518 1.39221184 2.352848e-06 6.239426e-05
## CSPG4P5 5.076419e+01 -1.0418989 0.42632140 8.980599e-04 7.905979e-03
## CST6 2.111409e+02 -2.7790601 0.41212768 3.339262e-13 3.882484e-11
## CTAGE4 6.684836e+01 -0.7101468 0.81216959 1.212052e-02 6.728880e-02
## CTC1 5.701828e+02 -0.5887253 0.17231769 1.302972e-04 1.465767e-03
## CXCL12 4.965626e+02 -0.7461990 0.97547333 1.184187e-02 5.917787e-02
## CYBRD1 2.825413e+04 -1.1450374 0.29610757 7.067391e-06 9.530443e-05
## CYP27C1 2.437640e+02 -0.7162883 0.37751614 5.871263e-03 4.118186e-02
## CYP2A7 1.114125e+01 -2.4258611 1.37395426 8.899119e-04 1.532619e-02
## CYP2E1 8.093980e+01 -0.8050190 0.24574231 1.253109e-04 1.579974e-03
## CYS1 6.112371e+02 -1.4163659 0.56592023 4.634200e-04 4.502645e-03
## CYSRT1 4.991069e+01 -1.4683292 0.43484611 3.338871e-05 5.215779e-04
## CYTH3 4.762049e+03 -0.5660325 0.19790102 8.592724e-04 5.328397e-03
## DACT3 1.317436e+02 -1.4115010 0.24887099 9.737971e-10 6.533584e-08
## DALRD3 8.754070e+02 -0.5023692 0.10231789 2.711252e-07 7.851850e-06
## DBH 2.443996e+01 -1.3908444 0.52326144 4.169777e-04 5.275411e-03
## DBNDD2 3.532755e+02 -0.7599031 0.34935034 2.892798e-03 2.108350e-02
## DCST2 2.297349e+01 -1.7126846 0.52464175 5.543758e-05 1.000247e-03
## DCT 2.228520e+01 -1.6147828 0.87247531 2.089888e-03 2.016322e-02
## DCUN1D4 1.674844e+03 -0.5146821 0.14742357 1.289777e-04 1.479442e-03
## DDAH1 4.344903e+03 -0.9914504 0.19295586 2.573835e-08 7.370769e-07
## DDAH2 2.382585e+03 -0.6468546 0.10130905 3.362508e-11 2.042104e-09
## DDIT3 1.653581e+03 -0.9389844 0.31109268 2.036986e-04 2.163454e-03
## DEGS2 1.512655e+01 -2.9062728 0.83238237 1.600107e-05 3.833691e-04
## DENND6B 3.980747e+02 -0.7816774 0.19343877 6.747314e-06 1.426706e-04
## DEPDC4 4.486410e+01 -0.7673284 0.47023216 7.875405e-03 4.270212e-02
## DEPP1 7.380245e+02 -0.7791991 0.38176940 3.658593e-03 2.442090e-02
## DEPTOR 1.508831e+03 -0.9481625 0.48483149 2.252012e-03 1.330507e-02
## DES 6.313858e+01 -2.9489090 0.37432694 1.327035e-16 2.168605e-14
## DGKA 2.272773e+03 -0.5218297 0.18530814 1.089808e-03 7.398296e-03
## DGKH 4.288805e+02 -0.9118011 0.29676311 1.838744e-04 2.579065e-03
## DHRS1 5.423584e+02 -0.5127388 0.17373323 7.964966e-04 6.947435e-03
## DHRS3 1.159001e+03 -0.5687198 0.32703225 1.139151e-02 5.228053e-02
## DIRAS1 6.925033e+02 -1.9552341 0.29731382 1.895121e-12 1.510937e-10
## DLC1 1.523521e+03 -0.8243237 0.20588441 8.017923e-06 1.380054e-04
## DLEC1 7.757412e+01 -0.6242258 0.42506588 1.525255e-02 7.328967e-02
## DMGDH 3.000508e+02 -0.8377633 0.39691765 2.346211e-03 2.073692e-02
## DMPK 3.186580e+03 -1.1709533 0.26054138 5.081352e-07 1.080548e-05
## DNAAF4 1.134099e+02 -0.6642282 0.21415048 3.049675e-04 3.778777e-03
## DNAH12 2.184242e+01 -1.2127924 0.57282625 1.621276e-03 1.638499e-02
## DNAJC22 1.117129e+03 -1.3314703 0.64905841 1.445037e-03 1.177066e-02
## DOC2B 3.541342e+01 -2.5905788 1.04050618 3.969929e-04 4.290863e-03
## DOC2GP 1.288337e+01 -1.6290121 1.34164296 4.172320e-03 5.016683e-02
## DOP1A 6.757249e+02 -0.5623473 0.26166893 5.410620e-03 3.058008e-02
## DRC1 1.380868e+01 -1.4661686 0.77519435 2.441578e-03 2.167472e-02
## DSTN 2.843109e+04 -0.8135195 0.22737657 3.616003e-05 4.418411e-04
## DSTNP1 6.366156e+01 -0.7877324 0.27538409 4.777195e-04 3.994647e-03
## DUSP15 3.435069e+01 -0.9329935 0.75652186 8.109980e-03 3.724105e-02
## DYRK2 1.796952e+03 -0.9961967 0.16847621 3.260330e-10 1.641993e-08
## DYSF 2.423550e+02 -1.5180797 0.46296151 4.825591e-05 7.485841e-04
## DZIP1L 6.313020e+02 -0.5177208 0.19444908 1.943603e-03 1.492065e-02
## ECRG4 1.079408e+03 -1.4955076 0.60631427 2.824989e-04 3.172760e-03
## EEF2K 1.518948e+03 -0.6077642 0.25771251 2.976508e-03 2.095307e-02
## EEPD1 6.863628e+01 -0.7765171 0.57313345 9.658890e-03 5.228053e-02
## EFCAB12 9.096856e+01 -0.5974875 0.33032129 9.938923e-03 5.747583e-02
## EFCAB13 7.917264e+01 -1.4054104 0.30005308 1.888524e-07 5.124101e-06
## EFHD1 5.709965e+02 -2.4142516 0.35756765 2.697360e-13 2.882652e-11
## EGFL8 5.039241e+02 -0.7096520 0.19549015 4.028588e-05 6.291698e-04
## EGR1 1.981169e+03 -1.2457713 0.36960165 3.558396e-05 5.042758e-04
## EHD1 4.965091e+03 -0.6048649 0.16588187 4.731452e-05 5.586259e-04
## EIF4EBP3 1.561155e+02 -0.7980791 0.33874044 1.663043e-03 1.353840e-02
## ELAPOR2 2.449213e+02 -1.0055182 0.52665970 3.076522e-03 2.213622e-02
## ELF2 9.216567e+02 -0.5442752 0.13027955 7.583585e-06 1.375038e-04
## ELFN1 6.434206e+01 -3.9058844 0.94911410 7.481900e-07 2.349742e-05
## ELL3 8.074925e+01 -1.5048440 0.34080963 6.066941e-07 1.484833e-05
## ELMO1 7.617338e+01 -0.7743330 0.78042312 1.204805e-02 5.013194e-02
## EML3 1.947804e+03 -0.6008872 0.10821531 7.257518e-09 3.245891e-07
## EML6 2.171362e+02 -0.5799020 0.26875226 5.188754e-03 3.287475e-02
## EMP1 1.383396e+04 -0.9919024 0.26909822 1.830847e-05 2.716484e-04
## ENHO 4.460018e+01 -0.9321892 0.47151332 3.105527e-03 2.227486e-02
## ENO4 5.490708e+01 -0.6827244 0.32870782 4.621746e-03 2.430370e-02
## EPB41 8.080566e+02 -0.9798859 0.21256036 3.505035e-07 9.781030e-06
## EPHB1 3.653662e+02 -1.1496926 0.35690976 8.211365e-05 1.142874e-03
## EPPK1 2.288546e+01 -1.7821870 0.61150709 1.686159e-04 2.650615e-03
## EPYC 3.927134e+01 -0.9560689 1.48168235 5.542650e-03 3.455097e-02
## ERICH2 1.985570e+02 -1.1612063 0.43068576 3.958153e-04 4.641387e-03
## ESR1 1.617666e+02 -0.5801260 0.49233697 2.012224e-02 9.644259e-02
## ETNK2 3.463707e+02 -0.7678549 0.24357419 1.827548e-04 2.204960e-03
## ETV2 4.473850e+01 -0.5868482 0.48677944 2.115670e-02 8.907893e-02
## EVI2A 4.697363e+01 -0.6881026 0.58039063 1.499900e-02 6.921754e-02
## EXD3 2.637121e+02 -0.5437836 0.36617297 1.965501e-02 8.804294e-02
## EXPH5 3.394540e+02 -2.3665387 0.72044819 1.159971e-05 2.190414e-04
## F2R 4.342510e+02 -0.9456127 0.74929829 6.177674e-03 4.141700e-02
## FABP3 1.656386e+02 -1.8330708 0.40254452 2.282745e-07 8.446010e-06
## FAHD2CP 1.642262e+01 -1.0256933 0.67728205 6.096482e-03 4.492995e-02
## FAIM2 1.839983e+02 -2.3418856 0.59369596 1.448740e-06 4.085370e-05
## FAM102B 9.040544e+02 -0.6606740 0.22997594 5.773483e-04 4.887138e-03
## FAM107A 3.278595e+02 -2.1400947 0.89673973 2.980747e-04 3.407459e-03
## FAM131B 4.228416e+01 -0.7166277 0.55840492 1.333725e-02 5.407181e-02
## FAM161A 1.215291e+02 -0.6214847 0.22291248 9.234639e-04 1.221605e-02
## FAM167B 4.996971e+01 -0.8214693 0.60027499 9.216268e-03 4.084398e-02
## FAM229A 1.686659e+02 -0.8414330 0.26732522 1.765123e-04 2.094575e-03
## FAM90A1 7.899265e+01 -0.5809038 0.41440059 1.819736e-02 6.795705e-02
## FAM90A20P 1.721163e+01 -0.9125523 0.84895654 1.108431e-02 6.731754e-02
## FAT2 4.652735e+01 -1.0255447 0.69277060 4.960927e-03 3.458283e-02
## FAXDC2 6.031384e+02 -0.6967574 0.16005786 2.064064e-06 4.699862e-05
## FBLN7 4.588832e+02 -0.7324014 0.42422983 6.991373e-03 3.818946e-02
## FBXL16 5.325394e+01 -0.8605248 1.29806781 7.197310e-03 4.006638e-02
## FCHSD1 1.087528e+03 -0.5042095 0.16412477 5.512327e-04 5.322932e-03
## FCHSD2 1.327270e+03 -0.7631667 0.09999896 3.278176e-15 4.700301e-13
## FCRLB 6.113323e+01 -0.7133135 0.97286666 1.304482e-02 7.101497e-02
## FEM1B 4.043317e+03 -1.4310442 0.22366333 1.019194e-11 5.902250e-10
## FERMT1 1.626681e+02 -0.9664434 0.34115863 3.683158e-04 4.380858e-03
## FES 3.505086e+02 -0.7518520 0.23911473 2.012387e-04 2.469000e-03
## FGD4 9.901291e+02 -0.7248156 0.44218166 7.812019e-03 3.928823e-02
## FGF17 9.758976e+00 -2.2278804 1.18741848 1.953632e-03 1.814471e-02
## FGF18 3.653824e+01 -2.0168649 0.85269089 3.997339e-04 4.741594e-03
## FGF22 1.031967e+01 -0.8571745 0.93931838 1.227321e-02 7.249353e-02
## FGF9 2.572848e+02 -2.2288906 0.77375757 6.739549e-05 1.163169e-03
## FGFR2 7.388717e+03 -0.7127539 0.40594151 6.854628e-03 2.847757e-02
## FGFR3 2.163749e+03 -1.3819483 0.60232983 6.766231e-04 5.559747e-03
## FHIP1B 1.209745e+03 -0.5292748 0.11909916 2.663645e-06 5.985658e-05
## FHL1 2.678319e+04 -1.4017968 0.20235462 2.311551e-13 2.395568e-11
## FLI1 4.777935e+02 -0.8987377 0.24743156 2.690869e-05 4.229311e-04
## FMO5 1.423889e+02 -0.5409896 0.22017744 2.944176e-03 2.301078e-02
## FOS 5.042175e+02 -2.6948159 0.38357184 6.539774e-14 8.299345e-12
## FOSB 3.735135e+01 -1.9699738 0.41424540 1.031228e-07 3.657036e-06
## FOXC2 6.470504e+02 -1.7875738 0.24780467 3.066221e-14 3.885824e-12
## FOXD2 3.346448e+01 -1.5428368 0.65839817 8.755382e-04 6.478994e-03
## FOXL1 2.920967e+02 -1.1407773 0.38224926 1.694870e-04 2.068834e-03
## FOXN2 3.304968e+02 -0.6750644 0.14634047 6.939917e-07 2.276624e-05
## FOXO1 5.863708e+02 -1.7786969 0.24912104 3.414031e-14 4.603926e-12
## FOXO6 6.681548e+01 -1.0385271 0.37019774 3.626458e-04 3.329806e-03
## FPGT-TNNI3K 8.207412e+01 -0.8099493 0.73444399 1.142375e-02 4.998866e-02
## FRAS1 7.678785e+00 -2.0166555 1.18167430 1.907283e-03 7.249353e-02
## FRMD4B 1.281839e+03 -2.0360620 0.42165857 3.479808e-08 1.455709e-06
## FRMD7 1.192192e+01 -6.7840193 2.67426800 2.644951e-06 7.916201e-05
## FRMPD3 1.613338e+02 -1.2187839 0.33111767 1.616020e-05 3.261941e-04
## FRZB 1.930024e+02 -3.2098035 0.79482689 1.166885e-06 2.963174e-05
## FSCN2 3.820308e+01 -0.6171921 0.48877377 1.876889e-02 9.273585e-02
## FTCD 2.579479e+01 -0.7394316 0.84807502 1.231928e-02 7.288369e-02
## FXYD1 1.831642e+02 -2.2951009 0.68167471 8.999774e-06 2.693898e-04
## FYB1 1.679592e+01 -2.4086876 0.90618189 2.371648e-04 5.330230e-03
## GAB1 5.802793e+02 -0.9943983 0.17957348 2.755167e-09 1.526235e-07
## GADD45B 2.343450e+03 -0.6404003 0.27909635 3.050062e-03 1.681707e-02
## GAL3ST2 7.590008e+00 -3.1872405 1.30185051 8.474253e-04 4.755831e-02
## GALM 2.448788e+02 -0.8846094 0.32226523 5.133107e-04 5.299059e-03
## GALNT16 4.026949e+02 -1.2088472 0.57959183 1.613850e-03 1.288652e-02
## GALNT8 1.815377e+01 -3.7610869 1.00918591 8.545114e-06 2.229282e-04
## GAP43 7.511508e+02 -1.3279362 0.74917811 2.319832e-03 1.372611e-02
## GARIN1A 1.314000e+02 -0.5004307 0.27156708 1.307584e-02 6.536114e-02
## GARNL3 1.909443e+02 -1.0495206 0.29266460 2.536297e-05 4.714956e-04
## GCNA 1.143864e+02 -0.9106743 0.28614006 1.301321e-04 1.849813e-03
## GCNT3 7.090237e+01 -1.2607180 0.45896370 3.290023e-04 2.936996e-03
## GDF15 5.985245e+02 -1.0195895 0.50542587 2.061089e-03 1.490528e-02
## GDF5 1.918673e+03 -0.8533680 0.75425500 9.768807e-03 4.634059e-02
## GDF7 4.690289e+01 -2.5875676 0.65781028 2.693618e-06 5.054118e-05
## GFOD1 1.272002e+02 -0.5266898 0.30128696 1.516862e-02 7.822252e-02
## GFRA1 8.660596e+03 -0.6184153 0.23205948 1.104664e-03 7.470495e-03
## GJA3 7.596339e+00 -2.7580123 1.08423672 4.640652e-04 3.289137e-02
## GJC2 1.031227e+02 -0.7302331 0.30053725 1.798269e-03 2.085020e-02
## GLIS2 1.704752e+03 -1.2280289 0.23189811 7.378003e-09 2.847597e-07
## GLTPD2 4.213185e+01 -0.6016484 0.34657666 1.151886e-02 5.700784e-02
## GLYATL2 3.544248e+01 -0.8932315 0.49956419 4.867061e-03 2.517176e-02
## GNG7 1.863409e+02 -0.8395280 0.92428281 8.593241e-03 4.554749e-02
## GOLGA2P5 5.704017e+01 -0.9715271 0.40000547 1.084496e-03 9.608531e-03
## GOLGA8T 2.761860e+01 -2.4886963 0.81142641 1.061174e-04 1.200890e-03
## GP1BB 2.224570e+02 -1.2295696 0.27973638 8.319963e-07 2.551040e-05
## GPD1L 6.771785e+02 -0.5367888 0.27289962 9.122148e-03 4.335669e-02
## GPER1 3.965658e+02 -0.7855650 0.30408911 9.836195e-04 1.030023e-02
## GPLD1 2.211188e+02 -0.5658432 0.31789902 1.128276e-02 5.612924e-02
## GPNMB 1.083557e+03 -2.4491664 1.02952649 1.325692e-04 1.687374e-03
## GPR132 2.895375e+01 -2.0046473 0.47922467 1.320445e-06 3.306695e-05
## GPR137C 1.206003e+02 -0.9422608 0.32565074 3.273075e-04 5.325202e-03
## GPR153 5.022688e+02 -1.2058066 0.37596509 8.314698e-05 1.095705e-03
## GPR35 1.006424e+02 -0.5089328 0.31554634 1.951079e-02 8.751055e-02
## GPRASP1 8.920283e+02 -0.5558440 0.20843864 1.549279e-03 1.244349e-02
## GRIN3A 2.027335e+01 -1.2565542 0.95299778 4.682386e-03 3.544600e-02
## GSDMB 3.603695e+02 -0.9358546 0.22144077 2.350302e-06 5.418838e-05
## GSN 1.186433e+04 -0.7354432 0.21051080 6.454970e-05 7.257005e-04
## GSTM2 1.580056e+03 -0.9307021 0.13449675 5.582940e-13 4.836952e-11
## GSTM4 5.465413e+02 -0.6527526 0.19270007 1.164892e-04 1.439364e-03
## GVQW3 2.364858e+02 -0.7029786 0.20661394 9.923091e-05 1.368488e-03
## H1-9P 2.692610e+01 -1.7458595 0.83525732 1.063775e-03 7.901788e-03
## HAPLN3 1.284471e+03 -0.7488180 0.41567083 5.985606e-03 3.231415e-02
## HAUS7 7.585894e+02 -0.8464331 0.16580345 3.860146e-08 1.431720e-06
## HAVCR2 1.303890e+01 -0.6793463 0.60943092 1.813885e-02 9.663189e-02
## HCAR1 3.973079e+01 -0.7803481 0.40635314 4.903810e-03 2.628461e-02
## HCFC1R1 1.198799e+03 -1.3553534 0.20836131 5.506385e-12 5.037145e-10
## HCG9P5 4.924576e+01 -1.2585423 0.38836163 7.750880e-05 8.837506e-04
## HCN3 2.623504e+02 -0.5579394 0.23447286 3.305283e-03 2.668467e-02
## HDAC10 7.016036e+02 -0.5443402 0.12951813 6.284980e-06 1.163511e-04
## HDAC5 2.209414e+03 -0.5397445 0.26969417 8.324861e-03 4.088416e-02
## HEATR4 3.130571e+01 -0.5465837 0.83773378 2.028376e-02 7.374799e-02
## HECA 8.964658e+02 -0.6094746 0.11775922 4.380194e-08 1.521008e-06
## HHLA1 3.905485e+01 -0.9212326 0.37486340 1.155159e-03 8.109067e-03
## HLF 3.876394e+01 -2.3272383 1.17944479 6.066560e-04 5.025710e-03
## HOXA2 1.013668e+02 -0.6188127 0.30022806 5.835359e-03 3.850098e-02
## HOXA3 6.989720e+02 -0.8773577 0.26008080 7.119930e-05 8.673855e-04
## HOXA5 6.792552e+02 -0.5884022 0.33786105 1.153499e-02 5.553984e-02
## HOXA6 3.063569e+02 -0.6909124 0.28460520 2.023067e-03 1.777563e-02
## HOXA9 1.246650e+03 -0.6920100 0.22611679 2.996261e-04 3.337319e-03
## HOXC4 1.387675e+03 -0.5248130 0.12109730 2.920618e-06 5.703848e-05
## HOXD3 2.137137e+02 -0.5911442 0.43447086 1.843450e-02 8.423819e-02
## HOXD8 4.082621e+02 -0.7211416 0.66977697 1.190863e-02 6.101175e-02
## HRCT1 7.783285e+02 -1.5822033 0.78645048 6.696286e-04 6.365673e-03
## HRH1 2.241631e+03 -0.8711488 0.15841378 4.296791e-09 1.601256e-07
## HS3ST5 2.481376e+02 -0.8592872 0.82201609 1.055419e-02 5.434854e-02
## HSF4 3.198151e+02 -0.5180851 0.24702183 7.761521e-03 5.100319e-02
## HSPB1 7.641931e+03 -1.1778855 0.25665455 3.131004e-07 8.316729e-06
## HSPB2 3.481193e+02 -0.6962464 0.26992284 1.242145e-03 1.071364e-02
## HSPB6 1.075357e+03 -2.0285633 0.47620300 8.467274e-07 2.274831e-05
## HSPB7 4.860624e+03 -1.6735363 0.47857906 2.049927e-05 3.005246e-04
## HYDIN 5.134519e+01 -0.6195732 0.50312172 1.902815e-02 8.263883e-02
## HYI 7.356300e+02 -0.5039044 0.14428486 1.280025e-04 1.304568e-03
## IFFO1 1.717849e+03 -0.7935136 0.19492073 6.104086e-06 1.240091e-04
## IFI16 9.757831e+02 -0.6800282 0.32725247 4.551641e-03 2.342195e-02
## IFIT1 6.340084e+02 -0.5639147 0.32499412 1.250011e-02 6.173781e-02
## IFIT5 9.323085e+02 -0.5063838 0.22844632 6.099936e-03 2.909534e-02
## IFNLR1 3.072251e+01 -0.7167242 0.43618059 9.222464e-03 5.045659e-02
## IGFBP6 1.038328e+04 -1.3320947 0.35306114 8.926424e-06 1.479687e-04
## IL11RA 7.294686e+02 -0.5607859 0.16016014 1.033561e-04 1.188433e-03
## IL16 5.352627e+02 -0.8038896 0.25190497 1.567556e-04 1.843907e-03
## IL17RB 1.833404e+02 -0.5071990 0.30841872 1.848533e-02 8.069046e-02
## IL17RD 1.708890e+02 -1.3397539 0.30982376 9.830885e-07 2.696105e-05
## IL17RE 1.331021e+02 -1.2520935 0.34461280 1.697215e-05 4.563248e-04
## IL21R 8.672342e+01 -0.7302435 0.69485402 1.384703e-02 6.535079e-02
## IL27RA 7.248592e+01 -0.6449584 0.45218530 1.466803e-02 7.113491e-02
## IL34 5.272760e+01 -0.5349808 0.36563319 2.126335e-02 8.941199e-02
## IL3RA 1.200871e+02 -0.7495530 0.35890415 3.388064e-03 3.371632e-02
## INAFM1 2.547208e+02 -0.5554475 0.16325817 1.443584e-04 2.175515e-03
## INF2 7.420729e+03 -0.5434563 0.13446094 1.336225e-05 1.654249e-04
## INHA 6.019379e+01 -0.8405658 0.33497670 1.165817e-03 8.467323e-03
## INKA1 7.952110e+01 -0.9328359 0.38252220 1.111358e-03 9.781215e-03
## INSYN2B 1.158596e+02 -1.1569487 0.49906740 1.066408e-03 1.370222e-02
## INTU 6.607170e+02 -0.7242918 0.26474706 7.885367e-04 7.241856e-03
## IRAK1BP1 2.264147e+02 -0.6826076 0.18963426 4.974582e-05 7.655011e-04
## IRX5 3.023596e+02 -0.5663361 0.39070497 1.660413e-02 8.927477e-02
## ISLR 1.025657e+04 -0.9979630 0.32032098 1.426844e-04 1.267561e-03
## ISYNA1 7.045499e+02 -0.7830181 0.31380372 1.163381e-03 8.889425e-03
## ITGA10 1.571372e+03 -1.6894554 0.64567847 1.973424e-04 2.100522e-03
## ITGA11 3.534217e+04 -1.7225567 0.36383531 7.819625e-08 1.978437e-06
## ITIH5 5.996771e+03 -2.7133003 0.33085185 1.160491e-17 1.657114e-15
## ITM2A 1.268251e+03 -1.7480915 0.47710006 1.027091e-05 1.920358e-04
## ITPK1 8.549525e+02 -0.9464367 0.23474712 4.862749e-06 1.042179e-04
## IZUMO4 5.945515e+01 -0.6972690 0.48038584 1.180823e-02 4.933814e-02
## JAG2 7.209744e+01 -0.6480374 0.84798375 1.674936e-02 8.532633e-02
## JMY 1.266264e+03 -0.5192524 0.25231782 7.584294e-03 4.132238e-02
## KALRN 3.697920e+02 -0.5206149 0.16634905 4.360707e-04 4.513373e-03
## KANSL1 1.391641e+03 -0.5270295 0.14684141 8.821422e-05 1.038333e-03
## KANTR 3.297056e+02 -0.6068154 0.18162823 1.568784e-04 1.936189e-03
## KAT6B 1.026637e+03 -0.6991395 0.14478869 2.254124e-07 6.353801e-06
## KAZALD1 2.664081e+03 -0.6472956 0.51610348 1.503240e-02 6.196571e-02
## KBTBD8 7.077837e+01 -0.6483159 0.58117757 1.625443e-02 7.665191e-02
## KCNA1 9.700727e+01 -3.3833885 0.93628293 4.016577e-06 8.602600e-05
## KCNA4 7.306338e+02 -2.0220162 0.55239597 4.024428e-06 6.823102e-05
## KCNA6 3.777964e+01 -3.7413007 1.15596243 1.742377e-05 3.190701e-04
## KCND3 3.695268e+02 -1.1985492 0.45515592 3.581770e-04 3.860534e-03
## KCNMA1 6.885825e+03 -0.5713294 0.27803144 6.238908e-03 2.560403e-02
## KCNMB4 2.686105e+01 -1.1608329 0.96200313 7.754759e-03 3.732469e-02
## KCNN4 3.971055e+02 -1.1635772 0.37309233 1.116619e-04 1.437954e-03
## KCNS3 2.191068e+02 -0.6521214 0.48647578 1.477868e-02 7.689431e-02
## KHDRBS3 7.153332e+02 -1.1117626 0.28578581 7.598137e-06 1.317572e-04
## KHK 5.306890e+01 -1.3579069 0.33804130 3.805173e-06 7.011252e-05
## KIAA0040 1.311912e+03 -0.6533428 0.40538230 9.201495e-03 4.270212e-02
## KIAA1549L 1.354916e+02 -0.5554338 0.34872088 1.645777e-02 7.418753e-02
## KIAA1614 8.428670e+02 -0.5786062 0.20020676 7.541558e-04 6.309765e-03
## KIAA1671 1.803308e+03 -0.5094281 0.28868995 1.376620e-02 6.605244e-02
## KIAA1958 8.508933e+01 -0.5585495 0.45418911 2.389266e-02 9.749622e-02
## KIF26A 4.038996e+01 -1.0468806 0.69808496 5.548852e-03 3.455373e-02
## KIF5C 9.766671e+01 -0.8872290 0.25353929 4.656446e-05 7.282390e-04
## KIFC2 7.111938e+02 -0.5581695 0.20516852 1.326409e-03 9.879261e-03
## KIZ 4.956336e+02 -0.5051906 0.25056198 9.428552e-03 4.432750e-02
## KLF13 2.400377e+03 -1.0244842 0.20169518 2.974112e-08 9.076425e-07
## KLF2 1.538176e+03 -1.6007273 0.33855104 8.060620e-08 2.952822e-06
## KLF5 5.283355e+02 -1.4676752 0.41428191 1.917693e-05 3.187926e-04
## KLHDC9 1.200251e+02 -1.3748446 0.40548179 3.646698e-05 5.934564e-04
## KLHL4 5.516927e+00 -2.7302931 1.35058257 2.136065e-03 8.173260e-02
## KLHL41 2.867672e+01 -0.6403278 0.52243172 1.732191e-02 7.692989e-02
## KRT14 3.079235e+01 -4.3086445 0.86120958 3.099286e-08 1.499945e-06
## KRT16 1.292644e+02 -5.2347390 0.91346433 1.196075e-10 8.970684e-09
## KRT4 4.648189e+02 -5.7355580 1.13593783 1.982936e-10 1.291110e-08
## KY 2.257296e+02 -3.8537171 0.43275087 2.810178e-20 8.778199e-18
## L3MBTL1 4.603924e+02 -0.6213457 0.17844073 8.991873e-05 1.169970e-03
## LAMA2 2.911613e+02 -1.1383769 0.65318748 2.603583e-03 2.242092e-02
## LAMA3 6.277867e+01 -0.7881645 0.52621014 8.409967e-03 3.824261e-02
## LAMP3 1.054337e+02 -2.8411908 0.66523423 3.631149e-07 1.281331e-05
## LAPTM5 2.551753e+01 -1.1327623 1.27322387 9.331603e-03 5.913581e-02
## LDHD 1.079702e+02 -1.0338065 0.23936593 1.454475e-06 3.576313e-05
## LDLRAD2 1.201881e+02 -0.7823856 0.28503878 6.642311e-04 6.213563e-03
## LDLRAD4 4.304150e+02 -0.5831708 0.26951364 5.116094e-03 3.250600e-02
## LETM2 3.403769e+02 -0.6411647 0.17362881 4.319949e-05 6.669524e-04
## LFNG 3.290033e+01 -1.3002029 0.76117238 2.927274e-03 1.770950e-02
## LGI4 3.225898e+01 -0.6457756 0.76356226 2.004168e-02 9.728650e-02
## LGR5 8.875676e+03 -0.8343946 1.35991419 9.325343e-03 4.234153e-02
## LINC00672 7.782073e+01 -0.9887414 0.32989147 2.185972e-04 2.175515e-03
## LINC01667 4.713911e+01 -0.9804069 0.42662424 1.501537e-03 9.952934e-03
## LINGO1 1.604475e+02 -2.6561804 0.96588881 4.412980e-05 7.520970e-04
## LIPC 4.989827e+01 -0.6351882 0.39706240 1.211102e-02 5.913581e-02
## LLGL2 7.490782e+01 -1.0498452 0.66150683 4.239395e-03 2.675715e-02
## LMCD1 1.081073e+03 -0.5009494 1.19738860 6.996150e-03 3.618039e-02
## LMNA 3.388758e+04 -0.5528935 0.12628022 2.878171e-06 5.078775e-05
## LMNTD2 6.147229e+01 -1.0317790 0.38129845 4.967940e-04 5.653868e-03
## LMO7 2.046667e+04 -0.8869808 0.27785503 1.152042e-04 1.021161e-03
## LMOD1 2.247307e+02 -0.5925865 0.57386929 1.927977e-02 8.688098e-02
## LOX 3.247409e+04 -0.6064568 0.17908482 1.293497e-04 1.398145e-03
## LOXL4 1.332917e+03 -1.3347580 0.22323090 1.528618e-10 9.214456e-09
## LPCAT4 1.030067e+03 -0.5270762 0.21992670 3.536438e-03 2.340996e-02
## LPIN1 2.302130e+03 -1.1715066 0.28824730 3.273409e-06 5.695936e-05
## LRAT 3.279785e+01 -0.5316023 0.44345299 2.844980e-02 9.430594e-02
## LRATD2 4.581136e+02 -1.1406464 0.45967905 5.553769e-04 4.846602e-03
## LRRC2 5.584945e+02 -1.4055272 0.53371492 2.523622e-04 2.729495e-03
## LRRC24 7.321533e+01 -0.5479692 0.35327676 1.838487e-02 9.123432e-02
## LRRC3 1.608833e+02 -0.6357679 0.23283456 9.968230e-04 9.697893e-03
## LRRC32 1.023246e+02 -1.4376783 0.47923882 1.198515e-04 2.345248e-03
## LRRC37A4P 1.505184e+02 -0.8119850 0.44114854 5.015294e-03 3.454981e-02
## LRRC37A7P 6.379126e+01 -0.7870430 0.35639791 2.705083e-03 1.598243e-02
## LRRC56 1.158395e+02 -0.5664167 0.28686831 8.447502e-03 4.495066e-02
## LRRC66 7.394101e+01 -1.1639706 0.34150123 4.423200e-05 7.645259e-04
## LRRC73 6.610135e+01 -0.7724295 0.29098381 9.065817e-04 8.314057e-03
## LSP1 2.833608e+03 -1.3440894 0.52804506 4.525511e-04 4.162122e-03
## LTC4S 4.486598e+01 -2.9152200 0.46502639 2.779932e-11 2.599785e-09
## LTK 1.489147e+01 -1.1385712 1.08140565 8.250678e-03 8.299549e-02
## LUM 1.739164e+05 -0.5759171 0.30555652 9.076247e-03 3.424198e-02
## LURAP1L 1.022082e+03 -1.1766749 0.42148290 2.413769e-04 2.501855e-03
## LY75 4.695504e+02 -0.7062006 0.48972563 1.043005e-02 5.398883e-02
## LYSMD4 3.208757e+02 -0.5574664 0.28323069 8.516111e-03 5.459584e-02
## LZTS2 3.245388e+03 -0.5612368 0.10234278 1.039517e-08 4.388361e-07
## MAB21L3 1.258474e+02 -0.7783687 0.20500220 1.893463e-05 3.423761e-04
## MACROD1 2.735315e+02 -0.5289508 0.16599990 3.439037e-04 3.658749e-03
## MAF 1.976384e+03 -1.3012860 0.22463232 4.379055e-10 2.170127e-08
## MAMDC2 5.205646e+02 -0.8685651 0.33696348 8.505050e-04 7.703055e-03
## MAMLD1 6.577793e+02 -1.6181368 0.46224076 2.098826e-05 3.346990e-04
## MAMSTR 7.939379e+01 -0.9656779 0.58285338 4.965172e-03 2.653064e-02
## MANEAL 4.896934e+01 -0.9930378 0.50034442 2.589791e-03 1.933123e-02
## MAP1B 1.228145e+04 -0.6029938 0.23275840 1.626388e-03 9.213685e-03
## MAP1LC3C 1.513292e+02 -3.6438454 0.61260321 5.578467e-11 4.889463e-09
## MAP2 1.375615e+02 -0.7329967 0.54891033 1.205951e-02 6.629834e-02
## MAP2K6 3.507605e+01 -0.9419542 1.24156964 7.002227e-03 4.445825e-02
## MAP3K14 8.620753e+02 -0.7977918 0.20637325 1.308127e-05 2.086499e-04
## MAP3K6 9.833275e+02 -0.5761639 0.19468567 6.005953e-04 4.658458e-03
## MAP3K7CL 1.044952e+02 -1.1709644 0.34995185 5.051573e-05 1.149943e-03
## MAP6D1 1.598076e+02 -0.7286265 0.41466608 7.142786e-03 4.141700e-02
## MAP7D3 1.128064e+03 -0.6599931 0.12498176 2.601003e-08 9.984112e-07
## MAPK11 5.370460e+02 -0.7987453 0.18344720 1.641636e-06 3.833357e-05
## MAPK15 4.875743e+01 -1.5083673 0.43616402 2.851590e-05 5.287619e-04
## MAT2A 1.060728e+04 -0.8647348 0.19248183 7.546050e-07 1.422421e-05
## MATN2 7.825869e+02 -1.4127080 0.68498729 1.141868e-03 7.800486e-03
## MBNL1 6.713877e+03 -0.6057691 0.13953431 2.768850e-06 5.347125e-05
## MBOAT1 2.366652e+02 -0.8442349 0.36991417 1.782758e-03 1.544067e-02
## MCF2 1.745798e+01 -0.7726013 0.63132991 1.271401e-02 7.787596e-02
## MDFI 4.374706e+02 -0.6893105 0.53036746 1.384392e-02 7.815741e-02
## MDH1B 7.011507e+01 -0.7907835 0.36452553 2.714284e-03 1.601149e-02
## MDM1 3.658934e+02 -0.6338914 0.12371382 6.250208e-08 2.865800e-06
## MED13L 3.210839e+03 -0.5853479 0.12625963 8.113465e-07 1.960475e-05
## MEF2A 2.651087e+03 -0.8320394 0.17011967 1.150782e-07 3.520078e-06
## MEF2C 4.372230e+02 -1.7216966 0.50514481 2.167897e-05 3.839499e-04
## MEIS2 1.741599e+03 -1.9687572 0.30353946 4.166109e-12 3.994909e-10
## MEOX2 3.895143e+02 -1.4467949 1.02215635 1.664849e-03 1.354671e-02
## MEST 1.554546e+03 -0.6187465 0.26216263 2.480194e-03 1.568379e-02
## METTL7B 9.520955e+00 -1.3742840 0.75361333 2.762553e-03 2.375366e-02
## MFAP5 1.030120e+03 -1.4142612 0.55003097 4.307413e-04 4.466531e-03
## MFGE8 2.640871e+04 -0.8402262 0.23688967 4.195487e-05 4.355397e-04
## MFNG 8.393073e+00 -6.4288375 2.76173094 2.504541e-05 3.250053e-03
## MFSD4A 2.480505e+01 -1.1968471 0.74074346 3.847801e-03 3.289137e-02
## MIA 3.954499e+02 -0.9106314 0.77751245 6.798126e-03 4.009205e-02
## MICAL1 1.887619e+03 -0.5090946 0.18840878 1.684248e-03 1.331148e-02
## MISP3 4.358192e+01 -0.7624362 0.43109303 6.441552e-03 3.849724e-02
## MITF 4.228587e+02 -0.5143431 0.26546105 1.075640e-02 5.418979e-02
## MKNK2 3.147124e+03 -0.5122550 0.34552989 2.243689e-02 8.304751e-02
## MKS1 4.102909e+02 -0.5259044 0.15033452 1.186958e-04 1.847684e-03
## MKX 3.965740e+03 -0.5461807 0.22126387 2.813833e-03 1.429573e-02
## MMP24 2.062161e+02 -0.6780993 0.23695692 6.048791e-04 6.508058e-03
## MMP25 1.178685e+02 -1.2497058 0.45097672 2.432310e-04 4.191991e-03
## MMRN2 2.897094e+02 -0.6485737 0.28307874 3.065870e-03 2.108350e-02
## MNS1 1.227890e+02 -0.5317709 0.28357211 1.147252e-02 6.382631e-02
## MORC4 1.484664e+03 -0.5296430 0.10593293 1.504802e-07 4.458249e-06
## MRAP2 3.750748e+02 -3.1783474 0.38013540 1.026867e-18 2.643835e-16
## MROH6 6.335116e+01 -0.8775578 0.73028270 7.569796e-03 3.538169e-02
## MROH7 2.154694e+02 -1.0625384 0.33951080 1.210507e-04 1.538174e-03
## MSANTD1 1.256488e+01 -0.9044581 0.74537545 1.007428e-02 6.567634e-02
## MSH5-SAPCD1 8.589630e+01 -0.8874081 0.29039981 2.085461e-04 2.419533e-03
## MSS51 8.203216e+01 -0.5231637 0.25675536 8.680443e-03 5.261149e-02
## MST1 3.428932e+02 -0.5930186 0.16714509 7.845633e-05 1.271190e-03
## MSTN 6.425546e+00 -4.0328209 1.75063317 8.904340e-04 5.347291e-02
## MTAPP2 1.641431e+01 -0.9782293 0.67395730 6.594743e-03 4.916391e-02
## MTMR11 9.702976e+02 -1.1775285 0.17220046 6.273701e-13 6.973848e-11
## MTND5P1 9.647996e+00 -1.8480051 0.86537261 1.461290e-03 2.277022e-02
## MTNR1B 2.126048e+01 -1.4378193 0.68306135 1.410320e-03 2.220482e-02
## MTSS1 1.129865e+02 -1.1637613 0.48881437 8.310811e-04 7.778806e-03
## MYADM 5.025812e+03 -0.6440424 0.16501902 1.593885e-05 2.221264e-04
## MYH7B 8.785164e+01 -1.3268873 0.30973421 1.206311e-06 3.532902e-05
## MYL3 7.901990e+01 -0.5914770 0.71192029 1.874381e-02 8.162176e-02
## MYL5 6.002761e+02 -0.5694402 0.16993786 1.698872e-04 1.969309e-03
## MYLK 1.419174e+04 -0.5020900 0.25480576 1.030280e-02 4.261900e-02
## MYO15B 7.419585e+02 -1.1866774 0.37027283 7.442590e-05 9.011746e-04
## MYO18A 3.256799e+03 -0.8920319 0.18225141 1.074219e-07 2.801329e-06
## MYO1D 2.647558e+03 -1.3496567 0.35246978 4.961433e-06 9.042665e-05
## MYO5B 3.090853e+02 -1.0216258 0.60132215 3.101797e-03 2.543684e-02
## MYO5C 1.346701e+02 -1.2006293 0.75473099 3.158623e-03 2.251528e-02
## MYOC 3.977447e+02 -3.8472989 1.01284109 5.291678e-07 1.863459e-05
## MYORG 4.008577e+02 -0.5912754 0.29792791 7.309147e-03 4.705719e-02
## N4BP2L1 3.196810e+02 -0.6521486 0.24601481 1.170399e-03 9.739854e-03
## NAAA 4.178865e+02 -0.6897323 0.24838340 7.923097e-04 8.379034e-03
## NAALADL1 3.387172e+02 -0.7009105 0.14001275 9.520822e-08 3.504110e-06
## NANOS1 6.940586e+02 -1.1059515 0.44878541 6.835446e-04 5.821119e-03
## NAP1L2 4.062855e+01 -2.4597159 0.56702497 4.632478e-07 1.576067e-05
## NAP1L3 7.242302e+02 -1.0940319 0.10739074 2.638264e-25 8.745833e-23
## NBEAL2 3.590095e+02 -1.0026948 0.22188509 5.506236e-07 1.576067e-05
## NCAM1 6.059634e+02 -1.0523214 0.91952261 6.825048e-03 3.752524e-02
## NDRG2 2.414753e+02 -0.8447759 0.47466770 4.523448e-03 2.942899e-02
## NEIL1 5.757098e+02 -0.8709186 0.18349284 2.439685e-07 7.992009e-06
## NEK10 4.117983e+02 -0.9145379 0.33725990 5.261959e-04 5.256916e-03
## NEK11 3.087340e+02 -1.2651098 0.21473930 2.738357e-10 1.804598e-08
## NEK3 2.745261e+02 -0.7795617 0.23628986 1.138057e-04 1.457490e-03
## NFATC1 6.458887e+02 -0.6169429 0.15527588 1.240633e-05 2.131487e-04
## NGEF 9.335651e+02 -3.4094416 0.33395152 5.278199e-26 2.086304e-23
## NHS 5.270348e+02 -0.6083423 0.27788854 4.426439e-03 2.510448e-02
## NHSL2 4.531701e+01 -2.4213871 0.81365476 8.464175e-05 9.930617e-04
## NIBAN1 5.222706e+03 -2.1093770 0.26383236 6.236711e-17 8.406495e-15
## NIPAL2 1.119240e+03 -0.5713651 0.23949762 3.317773e-03 1.985259e-02
## NKX6-1 2.931879e+02 -1.0028838 0.27335471 2.074720e-05 4.175673e-04
## NLGN3 4.870325e+01 -1.2243340 0.38664299 1.023932e-04 1.402943e-03
## NMNAT3 2.861588e+02 -0.5255198 0.18768565 1.292207e-03 1.104055e-02
## NOC2LP1 1.462896e+01 -0.7303237 0.93615521 1.501363e-02 8.407342e-02
## NOS1AP 2.867339e+01 -0.7064806 0.47395501 1.144509e-02 5.672875e-02
## NOXA1 8.056090e+01 -1.3398344 0.47863777 2.731512e-04 2.522795e-03
## NPAS1 8.698573e+01 -1.9920156 0.53888669 9.461167e-06 1.566634e-04
## NPIPA9 1.702070e+03 -0.7774960 0.20844139 2.309175e-05 3.072537e-04
## NPIPB7 2.627801e+02 -0.8841787 0.18769438 2.674480e-07 8.625589e-06
## NPIPP1 5.562380e+02 -0.6585316 0.22885005 6.216371e-04 5.319632e-03
## NPR1 1.227771e+01 -1.8970276 0.93059780 1.655905e-03 1.584515e-02
## NPTX1 2.071293e+01 -1.2632320 0.96918481 4.329487e-03 3.584354e-02
## NPTX2 3.655302e+01 -0.5599926 1.44456082 8.752548e-03 5.284995e-02
## NPW 5.846405e+01 -0.7955069 0.39119593 3.624863e-03 2.710399e-02
## NR3C2 1.010599e+02 -1.0894928 0.58712360 2.896580e-03 2.276015e-02
## NREP 2.212754e+03 -0.5666780 0.45058355 2.116333e-02 6.821865e-02
## NRIP2 9.845780e+01 -0.5607745 0.28229693 8.362534e-03 4.461518e-02
## NRTN 3.344839e+01 -1.5676146 0.97159247 2.288649e-03 1.663843e-02
## NT5DC3 6.282682e+02 -0.8315938 0.21043785 8.782323e-06 1.640597e-04
## NTNG2 9.059199e+01 -1.5296769 0.47458605 6.370408e-05 1.028695e-03
## NUDT17 1.378044e+02 -0.7104483 0.30673855 2.391173e-03 1.808342e-02
## NXNL2 1.104834e+02 -0.5156865 0.28662234 1.411006e-02 6.914793e-02
## NXPH3 3.668132e+02 -0.8260808 0.43073038 4.180472e-03 2.768296e-02
## OCLN 8.357967e+01 -0.5559927 0.98994399 1.511304e-02 7.902949e-02
## ODAD3 3.071588e+01 -0.5934922 0.56012969 2.271931e-02 7.993641e-02
## OFD1 6.934537e+02 -0.5502874 0.33911483 1.593603e-02 7.385141e-02
## OLFML1 1.211241e+02 -2.6854503 0.75115084 3.528111e-06 1.213815e-04
## OPRL1 8.345442e+01 -0.6946212 0.26380588 1.180514e-03 9.798212e-03
## OR2A1 3.085340e+01 -0.5584389 0.74009738 2.377995e-02 8.567682e-02
## OR2S1P 1.629056e+01 -1.2422722 0.64350292 2.427932e-03 2.259210e-02
## OR5A2 8.291558e+01 -0.6781144 0.23684381 6.440709e-04 6.345157e-03
## OR6Y1 1.783964e+01 -0.6754142 0.75736447 1.856783e-02 9.815138e-02
## OSBPL7 4.152429e+02 -0.8727267 0.18272741 1.848687e-07 6.429490e-06
## OSBPL9 2.130127e+03 -1.1813964 0.22300466 7.292457e-09 3.251574e-07
## OXTR 3.217114e+02 -0.9200484 0.97661357 7.295861e-03 4.042146e-02
## P2RX6 1.729568e+02 -0.7670988 0.42131234 5.355490e-03 3.608232e-02
## P2RX7 2.139009e+02 -0.7536822 0.28833372 1.026847e-03 1.332553e-02
## P2RY6 2.229076e+02 -0.9710234 0.76260714 7.333320e-03 5.985159e-02
## PAIP2B 1.040889e+02 -0.7317174 0.25079029 4.626102e-04 4.860008e-03
## PALD1 3.091282e+02 -0.9824119 0.29285561 6.669914e-05 9.367508e-04
## PALM3 1.546224e+01 -0.7207362 0.68521118 1.690700e-02 9.147563e-02
## PAN2 1.454558e+03 -0.6088953 0.12688308 3.376242e-07 8.201780e-06
## PAQR8 2.593244e+02 -0.5670915 0.24193777 3.608704e-03 2.380090e-02
## PARD6A 3.074017e+01 -1.1336616 0.48428925 1.115529e-03 7.898709e-03
## PCDHGC5 2.082884e+02 -0.5738111 0.68317032 1.859091e-02 9.097164e-02
## PCK2 2.446811e+03 -0.7047552 0.26870229 1.123924e-03 8.315720e-03
## PCMTD2 1.634124e+03 -0.6451891 0.12892128 8.551639e-08 2.475438e-06
## PCOLCE 6.703506e+03 -0.6448993 0.33384581 6.619455e-03 2.675715e-02
## PCSK6 4.064915e+02 -1.1748892 0.80955123 4.592690e-03 3.343160e-02
## PDCD4 3.617685e+03 -0.6954302 0.18982132 3.731460e-05 4.226131e-04
## PDE3B 8.135816e+01 -0.6305395 0.31518165 6.268289e-03 4.099500e-02
## PDE4DIP 8.250172e+03 -0.6748939 0.29367040 2.698465e-03 1.519034e-02
## PDE4DIPP2 1.020277e+03 -0.5972777 0.23649093 2.149646e-03 1.577802e-02
## PDE5A 2.797476e+03 -1.5005888 0.28672843 1.067458e-08 3.936010e-07
## PDIA5 3.198490e+03 -1.6338912 0.25844569 1.412646e-11 1.025576e-09
## PDP1 7.884972e+02 -0.5686737 0.14809600 3.067547e-05 4.437451e-04
## PDZD2 2.076567e+02 -1.7800339 0.40427659 5.230444e-07 1.712255e-05
## PDZD7 9.303563e+01 -1.6422583 0.43779684 8.453126e-06 1.639995e-04
## PDZD8 1.831191e+03 -0.5757614 0.15654919 4.857726e-05 7.156924e-04
## PDZK1 8.496078e+01 -1.1145207 0.29373950 1.128647e-05 1.736526e-04
## PEG3 1.271058e+02 -1.8799060 0.64841688 1.433221e-04 1.849169e-03
## PELI1 4.827367e+02 -0.8653030 0.24456647 4.087999e-05 5.857310e-04
## PER2 4.520990e+02 -0.9142825 0.29438777 1.729441e-04 2.001326e-03
## PER3 1.550557e+03 -0.6661203 0.32476845 4.573010e-03 2.318172e-02
## PGAM1P8 2.168333e+01 -1.2467213 0.52219555 8.934732e-04 9.697893e-03
## PGM5 1.679040e+02 -0.7877763 0.25898253 2.792972e-04 4.686439e-03
## PHC3 1.967166e+03 -0.5538055 0.18903481 7.324328e-04 6.785502e-03
## PHGDH 5.585941e+03 -0.5945241 0.22926994 1.658245e-03 9.007558e-03
## PHKA2 1.339019e+03 -0.8237686 0.23551239 5.174133e-05 7.520444e-04
## PHKG1 5.206991e+01 -0.8375558 0.45147238 4.656406e-03 2.438790e-02
## PHLPP1 3.654556e+02 -0.6270807 0.27033549 3.051597e-03 2.438790e-02
## PIFO 6.882276e+01 -1.0856401 0.42662180 7.081517e-04 5.480015e-03
## PIK3R1 2.054176e+03 -0.5518414 0.44510758 2.167850e-02 8.405259e-02
## PKD1P1 2.994175e+03 -0.5181720 0.33685062 1.898785e-02 7.356657e-02
## PKD1P6 1.655043e+03 -0.5795879 0.11992596 2.912448e-07 7.983202e-06
## PKMP3 2.517528e+01 -1.2059830 0.62126461 2.275714e-03 2.055974e-02
## PLA2G6 3.972631e+02 -0.8249445 0.25776079 1.485235e-04 1.903465e-03
## PLA2R1 1.362451e+03 -1.1488058 0.25707089 5.823299e-07 1.648697e-05
## PLAC8 7.022507e+01 -1.2496288 0.43247372 2.099934e-04 2.099484e-03
## PLAC9 7.311090e+02 -0.6558389 0.35442726 6.911675e-03 3.460877e-02
## PLAGL1 6.737481e+03 -0.8618796 0.54210762 6.441727e-03 3.229460e-02
## PLB1 5.875292e+01 -0.5335264 0.35450631 2.092523e-02 7.801245e-02
## PLCD1 1.845751e+03 -1.3879379 0.20786987 1.361933e-12 1.268673e-10
## PLCD3 5.793626e+03 -1.0054952 0.28685228 3.088741e-05 3.880826e-04
## PLCL1 3.640185e+01 -1.8463207 0.87294844 9.119333e-04 6.696399e-03
## PLCXD2 1.723343e+02 -0.6562821 0.35112001 6.967881e-03 5.759172e-02
## PLD2 8.566997e+02 -0.5668966 0.14277821 1.617670e-05 2.605539e-04
## PLD5P1 5.659671e+01 -0.5166458 0.34245478 2.205604e-02 8.106145e-02
## PLEC 6.228332e+04 -0.8859257 0.21849606 4.770481e-06 7.823843e-05
## PLEKHA4 1.042420e+03 -0.9623905 0.16899013 1.135983e-09 6.533584e-08
## PLEKHA7 1.262630e+02 -1.6841807 0.32886086 1.630197e-08 7.683408e-07
## PLEKHB1 3.816714e+01 -1.0053814 0.54701692 3.121858e-03 1.869718e-02
## PLEKHF1 5.186490e+02 -1.3024684 0.38998959 3.960356e-05 5.685210e-04
## PLIN4 6.165778e+01 -0.5407351 0.39901051 2.403106e-02 9.798729e-02
## PLP2 3.174564e+03 -0.6924130 0.20761181 1.314959e-04 1.218908e-03
## PLXDC1 1.750304e+02 -2.3400848 0.46025075 1.806384e-08 9.252699e-07
## PLXNA2 1.939857e+03 -1.3369537 0.33545297 3.500902e-06 6.587656e-05
## PLXNA3 3.298539e+03 -0.5670102 0.20953119 1.376393e-03 9.781215e-03
## PNMA8B 2.883082e+02 -0.6445418 0.27235346 2.720855e-03 1.958875e-02
## PNPLA7 2.819458e+02 -2.0124564 0.29858248 7.382766e-13 9.500097e-11
## PODN 1.806972e+02 -3.0894460 0.71174459 1.541312e-07 6.055504e-06
## PODXL 4.025087e+02 -1.8657466 0.89311611 5.752840e-04 6.699462e-03
## PPDPF 3.500650e+03 -0.6316727 0.17420825 5.106138e-05 6.442530e-04
## PPFIBP1 3.767674e+03 -0.7481825 0.26295531 5.383023e-04 4.202368e-03
## PPFIBP2 8.107030e+02 -1.1332522 0.42001805 3.164008e-04 2.991007e-03
## PPIL6 1.144826e+02 -0.8623311 0.51584725 5.288815e-03 3.582531e-02
## PPL 2.745991e+03 -0.8396366 0.55196008 5.930222e-03 3.187242e-02
## PPM1E 6.291658e+01 -1.1649264 0.46513961 6.772333e-04 6.309765e-03
## PPM1K 5.266662e+02 -0.6047156 0.15583842 2.080379e-05 3.414824e-04
## PPM1M 9.117993e+02 -0.5261881 0.13813222 3.612540e-05 5.089895e-04
## PPP1R12B 9.838912e+02 -0.8507768 0.40439642 2.625542e-03 1.705078e-02
## PPP1R15A 2.532711e+03 -0.6948501 0.15380610 9.983343e-07 2.349742e-05
## PPT2 9.996318e+02 -0.6452862 0.15976138 1.000542e-05 1.527735e-04
## PRAM1 1.161797e+01 -1.8856118 0.93265682 1.176565e-03 1.927088e-02
## PRDM16 1.442541e+02 -0.8283420 0.42517259 3.924891e-03 3.755366e-02
## PRIMA1 1.911647e+02 -3.5483605 0.58316621 1.264664e-11 1.130349e-09
## PRKCZ 1.637479e+02 -0.7471194 0.32223507 2.261955e-03 1.874637e-02
## PROCA1 8.002720e+01 -0.6635984 0.26165664 1.620601e-03 1.331148e-02
## PRODH 2.483975e+01 -1.5979018 1.31371720 3.219346e-03 2.654313e-02
## PROS1 1.674558e+03 -1.1005662 0.47660728 9.303307e-04 8.237770e-03
## PROSER2 1.144439e+03 -0.5428120 0.24393786 4.462376e-03 2.474719e-02
## PROSER3 5.235972e+02 -0.6326390 0.21621719 6.465204e-04 6.201831e-03
## PRPH 1.063989e+02 -1.5464475 0.79222628 1.190361e-03 1.117495e-02
## PRPSAP1 1.594645e+03 -0.6134187 0.17482232 8.530236e-05 1.010895e-03
## PRR33 5.335670e+02 -1.8131978 1.14152644 2.141022e-03 1.527916e-02
## PRR5 3.444524e+02 -0.7033517 0.26053412 8.815531e-04 9.450305e-03
## PRRT2 4.117208e+02 -1.8059443 0.48809808 9.543786e-06 2.228025e-04
## PRSS16 3.798761e+01 -1.4596759 0.55446522 3.816746e-04 4.164436e-03
## PRSS27 8.020819e+01 -1.0612617 0.29208869 2.165468e-05 3.172365e-04
## PRSS35 6.242155e+01 -0.8339389 0.54127116 7.152732e-03 3.987277e-02
## PRSS53 3.337052e+02 -0.5631353 0.32065589 1.183156e-02 5.809591e-02
## PRUNE2 3.491476e+03 -0.6638271 0.43923763 1.216536e-02 5.284995e-02
## PSD2 4.830915e+01 -0.9088071 0.44820629 2.759196e-03 2.222810e-02
## PTGDS 3.615366e+01 -0.6524025 1.43794980 9.799520e-03 4.270212e-02
## PTGIS 2.527087e+03 -1.4742003 0.25472455 3.246471e-10 1.508567e-08
## PTH1R 1.612905e+02 -1.0951986 0.65303458 3.332456e-03 2.510448e-02
## PTPN13 1.237045e+03 -1.1110704 0.24208493 3.576575e-07 1.094295e-05
## QRICH2 3.272392e+02 -1.3163631 0.16106770 2.484540e-17 6.624460e-15
## RAB23 1.851858e+03 -0.5612019 0.18516175 5.210519e-04 4.683678e-03
## RAB37 2.168476e+01 -1.2970643 0.68938335 2.193583e-03 1.997090e-02
## RAB39B 5.275190e+01 -2.4182095 0.59695716 2.341825e-06 5.689722e-05
## RAB40B 4.385838e+02 -0.6465001 0.21372740 3.896410e-04 4.923046e-03
## RAB7B 9.443636e+02 -0.9076914 0.24662795 2.241508e-05 3.042699e-04
## RABGAP1 7.183864e+03 -1.4598034 0.51778101 1.448654e-04 1.423294e-03
## RABGAP1L 6.425382e+02 -0.7639542 0.16678220 6.098006e-07 1.653221e-05
## RAET1E 1.936444e+02 -0.7545956 0.32137838 2.053505e-03 1.525600e-02
## RAI2 2.680283e+02 -0.8424458 0.36720923 1.752326e-03 1.349265e-02
## RAMP1 4.916454e+02 -0.9166633 0.48370560 3.564907e-03 2.400698e-02
## RANP4 1.280347e+01 -1.5927472 0.65662100 7.391216e-04 8.306497e-03
## RAPGEF3 5.289718e+02 -1.1075900 0.20847265 8.376162e-09 3.602126e-07
## RARB 8.544477e+01 -0.5068574 1.28147143 7.412244e-03 4.085766e-02
## RARG 2.677427e+03 -0.6081418 0.19976825 4.180978e-04 3.790263e-03
## RASA4 1.356313e+03 -1.9509402 0.48073477 1.303357e-06 2.867835e-05
## RASA4B 8.847698e+02 -1.8826896 0.58591328 2.872871e-05 4.222665e-04
## RASGEF1A 7.667103e+01 -1.8339764 0.46869808 4.678150e-06 1.150729e-04
## RASL12 1.714779e+01 -1.0005215 0.74647607 8.393513e-03 5.742676e-02
## RAVER2 5.614484e+02 -0.5030644 0.19317521 2.311019e-03 1.628852e-02
## RBFOX1 2.242845e+01 -1.0239747 0.56155301 3.733048e-03 2.980222e-02
## RCAN2 9.310854e+02 -1.2362370 0.47730066 4.856130e-04 3.929901e-03
## RCOR3 1.158842e+03 -0.5999958 0.18194419 1.774244e-04 2.094575e-03
## RDH5 5.125059e+02 -0.9016370 0.35883862 9.781783e-04 8.588419e-03
## REEP1 7.445111e+01 -0.8632215 0.72295299 9.430939e-03 5.590007e-02
## REEP6 7.177189e+01 -0.9347423 0.35840563 6.972663e-04 7.398296e-03
## REV1 9.808264e+02 -0.5561094 0.12020225 8.286505e-07 1.778279e-05
## RFLNA 1.327302e+02 -2.2978701 0.42139346 2.180521e-09 1.927670e-07
## RFX2 7.173149e+02 -0.6745210 0.28677582 2.393597e-03 1.584707e-02
## RGL2 1.416559e+03 -0.9324553 0.14655507 2.264522e-11 1.608804e-09
## RGL3 2.280148e+02 -0.9866496 0.18606574 1.108535e-08 5.916742e-07
## RGMA 9.636408e+02 -1.9739826 0.46502054 5.073584e-07 1.363860e-05
## RGS20 2.190280e+02 -0.6587503 0.45343151 1.270064e-02 6.130914e-02
## RGS5 3.155037e+02 -1.1427220 0.55320356 1.823976e-03 1.455993e-02
## RGS9 8.542925e+01 -0.8909777 0.45470083 3.288431e-03 2.517176e-02
## RHOJ 3.356498e+02 -1.3297680 0.43040168 1.079885e-04 1.710680e-03
## RHPN1 1.510055e+02 -0.7711200 0.40263904 4.636093e-03 4.234153e-02
## RIN1 8.817658e+02 -0.7236779 0.27649740 1.087706e-03 8.430112e-03
## RINL 1.558007e+02 -1.0058427 0.27379466 1.919681e-05 5.061742e-04
## RNASE4 1.559590e+03 -0.6134992 0.22780504 1.055303e-03 7.934491e-03
## RNASET2 8.826153e+02 -0.5666816 0.20207288 9.941882e-04 7.540126e-03
## RNF128 2.212636e+01 -1.4631996 1.17945875 5.034491e-03 5.759172e-02
## RNF180 6.768655e+01 -1.4309659 0.63727074 9.939875e-04 8.547076e-03
## RNF224 4.137589e+01 -1.2431049 0.48538942 5.071623e-04 5.248150e-03
## RNH1 9.227816e+03 -0.5748036 0.17245665 1.773282e-04 1.815559e-03
## ROBO2 2.317881e+02 -1.5412385 0.54003502 1.852074e-04 2.501855e-03
## ROBO4 5.756975e+01 -0.7583975 1.08325147 1.284835e-02 5.441841e-02
## ROCK2 3.897000e+03 -0.5893118 0.22712898 1.578478e-03 8.985332e-03
## ROGDI 5.115346e+02 -0.6659397 0.17843554 3.172824e-05 5.091789e-04
## ROM1 1.937561e+02 -1.3693635 0.26809430 2.003033e-08 9.263477e-07
## RPL41P2 1.512850e+01 -0.7225685 0.57907576 1.431604e-02 8.700605e-02
## RSPH9 8.873287e+01 -1.0068264 0.29228031 4.860620e-05 6.264978e-04
## RSPO2 1.314811e+02 -1.2166954 0.46070488 4.650592e-04 4.658458e-03
## RTL5 3.884185e+02 -0.9641392 0.41404591 1.429918e-03 1.349265e-02
## RUBCNL 1.309127e+02 -2.6812455 0.50491058 3.246219e-09 1.995342e-07
## S100A5 1.987073e+01 -1.1212213 0.65120193 3.972062e-03 3.287475e-02
## SALL4 2.753941e+01 -4.2002725 0.79392645 4.425107e-09 2.301265e-07
## SAMD11 1.431853e+03 -1.6126875 0.28233068 5.967715e-10 3.699097e-08
## SARDH 1.781234e+02 -0.5981151 0.32258129 9.092316e-03 4.761906e-02
## SARM1 1.225517e+03 -0.5168543 0.19137828 1.623464e-03 1.294102e-02
## SARS1 8.370231e+03 -0.6139549 0.19289192 2.597373e-04 2.296577e-03
## SCART1 1.560997e+02 -0.8247765 0.38233640 2.459582e-03 2.624766e-02
## SCGB3A1 1.632009e+01 -0.8209124 0.70990606 1.199616e-02 7.121541e-02
## SCGB3A2 6.245755e+01 -0.8910947 0.36606515 1.244039e-03 8.575484e-03
## SCHIP1 1.209550e+02 -1.6558029 0.37400871 4.702859e-07 1.394366e-05
## SCIN 1.188515e+03 -0.9280834 0.40350091 1.516268e-03 1.099965e-02
## SCNN1A 8.655512e+01 -1.2166161 0.32635867 1.368600e-05 2.602940e-04
## SCNN1D 2.648525e+02 -0.7711581 0.26907221 4.651784e-04 5.667626e-03
## SCRG1 2.080787e+03 -1.9364956 0.46847740 9.384167e-07 1.940947e-05
## SEC14L5 2.468002e+01 -1.4194317 0.68557426 1.332289e-03 1.401758e-02
## SEC16B 4.313274e+02 -0.7091825 0.20346687 7.399736e-05 1.042088e-03
## SEMA3B 5.352389e+03 -1.0254302 0.38318106 3.980682e-04 2.847944e-03
## SEMA3D 7.619060e+01 -1.1843844 0.69637964 2.614153e-03 2.130791e-02
## SEMA4A 1.015520e+02 -1.1189112 0.56596382 2.227799e-03 2.438790e-02
## SEMA5B 6.156478e+01 -2.7360863 0.89680424 5.253735e-05 7.642323e-04
## SENP7 5.706038e+02 -0.8507014 0.18724279 5.998028e-07 1.589138e-05
## SEPTIN11 1.058024e+04 -0.5716521 0.15585938 5.073256e-05 5.911663e-04
## SEPTIN4 9.120393e+01 -0.5225342 0.34356563 2.068976e-02 9.141985e-02
## SEPTIN5 2.054688e+03 -0.9547223 0.16817538 1.337474e-09 6.831084e-08
## SEPTIN8 4.354656e+03 -0.6517133 0.15286003 3.591959e-06 6.138159e-05
## SERINC5 1.088481e+03 -0.6315385 0.25568262 2.017996e-03 1.501594e-02
## SERPINF1 1.693025e+02 -2.2752315 0.73336129 3.626691e-05 5.913162e-04
## SERPINI1 3.046632e+02 -0.8195697 0.47987388 5.439574e-03 3.906299e-02
## SERTAD2 2.161764e+03 -0.7971004 0.24381173 1.189634e-04 1.504854e-03
## SERTAD4 7.952552e+01 -1.0519977 1.35011919 7.719023e-03 3.721794e-02
## SESN2 1.918392e+03 -0.7622740 0.25859222 3.671597e-04 3.847575e-03
## SESN3 1.569384e+03 -1.8529229 0.27153371 5.860377e-13 4.992255e-11
## SEZ6L 1.999872e+01 -2.3593151 1.43716616 9.342977e-04 9.993020e-03
## SFXN3 2.114529e+03 -0.5692674 0.13776817 7.885422e-06 1.417275e-04
## SGCA 1.078704e+02 -1.0811166 0.60131230 3.000964e-03 2.172359e-02
## SGCD 9.224305e+02 -0.5090220 0.33072377 1.933858e-02 6.916477e-02
## SGCG 8.044194e+01 -1.6197954 1.42924231 3.231891e-03 2.488657e-02
## SGK2 4.371515e+01 -2.1113131 0.42240802 3.054592e-08 1.281471e-06
## SH3TC1 1.677892e+03 -0.5987290 0.20790848 7.280886e-04 6.641665e-03
## SH3TC2 2.918870e+02 -0.8604723 0.42483670 2.951153e-03 2.048053e-02
## SHF 3.937582e+02 -1.2747518 0.26165074 7.049127e-08 2.656066e-06
## SHISA6 2.461109e+01 -4.1149471 0.91764922 2.020615e-07 1.394366e-05
## SHOX 1.703151e+01 -0.7240980 0.55918198 1.343691e-02 7.733478e-02
## SHROOM3 1.979132e+03 -0.5783511 0.25937461 4.527304e-03 2.861018e-02
## SIAH2 1.369672e+03 -0.5833731 0.18915353 4.029975e-04 4.141237e-03
## SIM2 9.164213e+01 -1.2248834 1.28504861 5.322080e-03 4.695818e-02
## SIPA1L1 3.250837e+03 -0.7764622 0.29160320 7.320874e-04 5.000913e-03
## SIRT2 1.466187e+03 -0.5405705 0.12923847 7.705919e-06 1.390692e-04
## SIX1 2.804810e+03 -1.2995368 0.29029100 6.078972e-07 1.503503e-05
## SIX4 1.749118e+03 -0.9495088 0.21590996 9.983108e-07 2.047734e-05
## SLC12A6 3.567805e+03 -0.6804029 0.30705543 3.332826e-03 1.675569e-02
## SLC17A7 3.861463e+01 -0.7845352 0.40932445 5.148148e-03 2.724322e-02
## SLC1A4 3.587726e+03 -0.8459629 0.22032235 1.287655e-05 1.712581e-04
## SLC22A15 3.393793e+02 -1.0830716 0.22469708 1.150408e-07 4.820426e-06
## SLC23A3 9.573713e+01 -1.2891347 0.31317156 2.508818e-06 5.711502e-05
## SLC26A4 2.486066e+01 -1.3947368 0.92163701 3.519727e-03 2.842021e-02
## SLC27A3 5.914562e+02 -0.8861347 0.16472009 7.645434e-09 3.317770e-07
## SLC29A1 1.474445e+03 -1.5532763 0.19248587 4.237679e-17 7.375998e-15
## SLC29A2 1.218576e+02 -1.6110854 0.23423462 3.779901e-13 4.992255e-11
## SLC34A3 6.522717e+01 -0.9574462 0.44966992 2.091178e-03 1.622001e-02
## SLC35A1 7.376258e+02 -0.5309800 0.15241935 1.194753e-04 1.550297e-03
## SLC38A1 1.011230e+04 -0.7101307 0.26445980 8.967724e-04 5.715697e-03
## SLC38A2 2.881470e+04 -0.6064653 0.16535889 4.730454e-05 4.801377e-04
## SLC38A4 2.546387e+02 -2.0738004 0.61898226 2.181844e-05 3.852334e-04
## SLC38A6 9.909862e+02 -0.8759422 0.20479027 1.894432e-06 4.604630e-05
## SLC39A10 1.511036e+03 -0.8811476 0.12223529 7.029470e-14 8.567121e-12
## SLC66A3 1.103043e+03 -0.5281579 0.12842342 9.803799e-06 1.863380e-04
## SLC7A8 3.898740e+02 -1.2143508 0.61558873 1.907688e-03 1.752387e-02
## SLC9A3 2.203582e+03 -0.5516361 0.20359334 1.312164e-03 7.991670e-03
## SLC9A9 4.789983e+02 -0.8506606 0.26127823 1.057380e-04 1.237199e-03
## SMAD9 1.496518e+03 -0.8332000 0.26225553 1.543072e-04 1.495892e-03
## SMAGP 2.064125e+02 -0.6473593 0.21135661 3.593737e-04 5.720840e-03
## SMG1P7 7.703438e+01 -0.5996083 0.42540362 1.743143e-02 7.731329e-02
## SMIM38 2.704278e+01 -4.3827805 1.06314947 1.318103e-06 3.305917e-05
## SMIM5 4.745831e+01 -1.6092232 0.62890610 4.392911e-04 4.449629e-03
## SMOC2 2.303628e+03 -2.7702412 0.48335020 2.388116e-10 1.374114e-08
## SNAI2 1.834871e+03 -0.5150363 0.29511693 1.541745e-02 7.031940e-02
## SNX30 9.954851e+02 -0.6505579 0.33602287 6.410984e-03 3.400803e-02
## SOCS5 3.828284e+03 -0.5389710 0.30628756 1.320446e-02 5.794059e-02
## SOWAHC 7.820106e+02 -0.5121510 0.15001053 1.674560e-04 1.840452e-03
## SOX15 7.333051e+01 -1.7422351 0.36358354 9.357606e-08 2.819793e-06
## SOX5 5.740068e+02 -0.6276239 0.50135838 1.650133e-02 7.556804e-02
## SOX6 8.682711e+02 -0.5249860 0.29777376 1.298814e-02 5.757644e-02
## SOX9 3.473549e+03 -0.6456028 0.25131342 1.223176e-03 8.726223e-03
## SPACA9 2.492808e+02 -0.8374028 0.16282683 3.361178e-08 1.647168e-06
## SPAG8 5.211399e+01 -0.9842824 0.39199364 8.337657e-04 6.252299e-03
## SPATA20 2.756654e+03 -0.5195615 0.16193668 3.287991e-04 2.601752e-03
## SPEG 2.069213e+03 -0.5300877 0.29550449 1.292694e-02 6.314582e-02
## SPEGNB 2.625505e+01 -0.9218651 0.65831204 7.114505e-03 7.439436e-02
## SPON2 4.403648e+02 -0.9392909 0.69448056 6.566351e-03 3.909943e-02
## SPTB 9.229994e+01 -1.3057861 0.39743633 5.675941e-05 1.263642e-03
## SPTBN5 1.327198e+02 -1.9623369 0.63109738 5.847500e-05 8.390818e-04
## SPTSSB 3.750225e+02 -1.5946190 0.56076088 1.418735e-04 1.840452e-03
## SRD5A1 9.074872e+02 -0.5797915 0.27650561 5.793850e-03 3.468822e-02
## SRGAP2 2.040693e+03 -0.6548996 0.16208678 9.429296e-06 1.785683e-04
## SRPK3 2.849052e+02 -0.9259009 0.34866190 6.038085e-04 5.724218e-03
## SRSF12 8.153322e+01 -0.6787907 0.32283713 4.335607e-03 2.722267e-02
## SSBP4 1.055338e+03 -0.8284372 0.19562418 2.498769e-06 5.707189e-05
## SSPN 8.879019e+02 -1.0888743 0.22039051 6.006265e-08 2.367577e-06
## SSTR5 6.649022e+01 -5.0108554 1.14799787 1.460270e-07 4.962321e-06
## STAG1 2.222759e+03 -0.6179031 0.12316722 1.052488e-07 3.267669e-06
## STARD5 2.253121e+02 -1.1288847 0.30231946 1.290775e-05 2.693898e-04
## STARD9 5.354155e+02 -0.7050837 0.20519977 8.758579e-05 1.057565e-03
## STEAP4 4.257188e+01 -1.8772425 1.21305315 1.124957e-03 9.443768e-03
## STING1 2.810643e+03 -0.7992199 0.25204353 1.686837e-04 1.840452e-03
## STK32A 8.778956e+01 -0.5720823 1.01925003 1.336565e-02 5.416680e-02
## STMN3 3.564164e+02 -0.6386287 1.07110828 1.205088e-02 6.845866e-02
## STON2 2.725227e+01 -1.8106967 0.90320669 8.365084e-04 7.436767e-03
## STRC 1.298518e+01 -1.3011113 1.05681233 6.872387e-03 7.256818e-02
## STXBP5 3.279869e+03 -0.6419601 0.21920582 5.051318e-04 4.547782e-03
## SULT4A1 1.001676e+01 -2.9276332 1.10515899 3.564845e-04 5.018121e-03
## SVIL2P 1.822676e+01 -0.7660164 0.71697203 1.392138e-02 8.532633e-02
## SWT1 9.996428e+01 -0.5489803 0.26533748 7.147488e-03 5.868558e-02
## SYNE3 2.188476e+03 -1.5990185 0.23772488 9.169335e-13 8.290865e-11
## SYNM 4.284872e+03 -0.6923845 0.24502727 6.088465e-04 4.647657e-03
## SYT17 2.485211e+01 -1.9612319 0.70994938 1.826412e-04 2.687496e-03
## SYTL1 1.566948e+01 -0.9430020 0.72486771 7.722274e-03 5.528740e-02
## TACC1 3.773833e+03 -0.5241461 0.10802728 2.623370e-07 6.095123e-06
## TAMALIN 5.232581e+01 -1.5155231 0.48923147 8.570893e-05 9.638035e-04
## TAS2R20 2.197890e+01 -0.7749423 0.46902926 7.693736e-03 7.873394e-02
## TBC1D10C 1.453058e+02 -0.7261237 0.57182888 1.122555e-02 6.296708e-02
## TBC1D19 6.332892e+02 -0.5164923 0.23519529 5.966590e-03 3.398415e-02
## TBC1D2 2.480158e+03 -0.6309263 0.27835735 3.434710e-03 2.108350e-02
## TBC1D8 1.671258e+03 -0.5698082 0.20960800 1.298660e-03 9.343837e-03
## TBCK 1.069297e+03 -0.5320596 0.15631199 1.645266e-04 1.735581e-03
## TBX18 1.537116e+03 -1.2162470 0.26974814 4.286408e-07 1.285260e-05
## TBX4 3.169206e+01 -1.9793937 0.63183897 6.732103e-05 8.185293e-04
## TBX6 3.722193e+01 -0.7934034 0.57799369 1.033104e-02 5.978903e-02
## TBXA2R 1.216442e+02 -1.1145717 0.34153658 7.645719e-05 1.050237e-03
## TCEA1 7.475817e+03 -0.7084506 0.24857023 4.761328e-04 3.808073e-03
## TCEA3 1.084678e+03 -1.4089915 0.21787026 7.309766e-12 6.539070e-10
## TCEANC 8.634956e+01 -0.5390246 0.38320352 2.258949e-02 9.356234e-02
## TCTE1 9.299801e+00 -1.4730407 0.98840198 4.170272e-03 3.482488e-02
## TDRD3 5.452190e+02 -0.5139601 0.13955172 5.481183e-05 7.155266e-04
## TENT5B 4.805638e+02 -0.6110432 0.37440091 1.193021e-02 5.696820e-02
## TENT5C 2.034975e+02 -1.1801327 0.30650610 7.952180e-06 1.638912e-04
## TESK2 2.575607e+02 -0.6209590 0.30028639 4.940201e-03 3.162638e-02
## TFAP2E 4.827440e+01 -0.5672744 0.31009055 1.109852e-02 6.314582e-02
## TFEB 3.205316e+02 -0.6599565 0.21522435 3.525199e-04 4.547782e-03
## TFF3 2.238227e+01 -1.0918379 0.82832806 5.905046e-03 4.186652e-02
## TGFB2 4.940057e+03 -0.8555437 0.34623526 1.181485e-03 8.482284e-03
## THBD 9.598294e+01 -1.9793289 0.52578777 6.005290e-06 1.900877e-04
## THBS2 3.095013e+03 -2.9194942 0.49189309 2.942617e-11 1.686657e-09
## THBS3 3.281663e+03 -0.6546703 0.20989654 2.761216e-04 2.618454e-03
## THBS4 1.052076e+02 -2.0908751 1.03937772 5.490718e-04 5.325202e-03
## THRB 3.100677e+02 -1.6910764 0.29163819 3.570349e-10 2.288043e-08
## THSD1 2.612738e+02 -0.8549982 0.37415255 1.701458e-03 1.598243e-02
## TIMP2 3.644368e+04 -0.5023428 0.23574873 7.264589e-03 3.287475e-02
## TIMP3 1.945685e+04 -1.5859715 0.51817635 7.297752e-05 6.971286e-04
## TIMP4 1.721681e+02 -1.1309372 0.46042035 6.809296e-04 9.568344e-03
## TJP2 1.395943e+03 -1.3319017 0.25942868 1.855182e-08 8.162626e-07
## TLCD2 4.290964e+02 -0.7931787 0.19464388 5.598344e-06 1.426706e-04
## TLE2 5.183150e+02 -0.7320508 0.24146579 2.881503e-04 2.836052e-03
## TLE6 5.252380e+01 -0.6023754 0.39225002 1.488571e-02 7.200837e-02
## TMEM119 7.716966e+01 -3.6080456 0.76170358 6.841188e-08 2.241274e-06
## TMEM121 3.614192e+02 -0.7420220 0.22291900 1.196387e-04 1.856803e-03
## TMEM150C 6.808887e+01 -1.2681931 0.53473020 8.620463e-04 8.012121e-03
## TMEM151A 3.279615e+01 -1.0286500 0.69113936 5.703328e-03 3.833624e-02
## TMEM198B 6.249733e+02 -0.6218850 0.18904141 1.809983e-04 1.922838e-03
## TMEM225B 3.552899e+01 -0.6054797 1.16615714 1.347723e-02 6.401669e-02
## TMEM231 6.115191e+02 -0.5321697 0.21320364 2.639525e-03 1.809376e-02
## TMEM26 7.976999e+02 -1.6464375 0.60693306 1.701520e-04 1.788150e-03
## TMEM266 9.686011e+01 -1.4331413 0.32486234 5.852296e-07 1.731620e-05
## TMEM30B 1.917311e+03 -1.3963349 0.28390935 5.474437e-08 1.662356e-06
## TMEM37 4.777122e+01 -0.7980755 0.50812972 7.882366e-03 4.892320e-02
## TMEM43 1.048811e+04 -0.6298157 0.17366624 5.078220e-05 6.413267e-04
## TMEM47 8.948537e+03 -0.8398040 0.32367889 8.581032e-04 5.538380e-03
## TMIE 2.915378e+01 -1.9280451 0.43621529 5.571299e-07 1.394366e-05
## TMOD4 2.568534e+01 -0.9801163 0.62587104 5.506179e-03 3.985439e-02
## TMPRSS9 8.370675e+01 -0.6618717 0.50251078 1.538964e-02 6.009736e-02
## TNNC1 7.589457e+01 -2.0673098 0.64173771 4.234055e-05 6.413267e-04
## TNNC2 2.697610e+01 -1.7685010 0.67322106 3.261178e-04 2.913235e-03
## TNNI1 9.352788e+00 -4.6639255 1.46147493 3.737693e-05 7.179114e-04
## TNNT2 4.938192e+01 -4.1771511 1.26144023 1.517377e-06 4.313403e-05
## TNNT3 6.881633e+01 -4.4216583 1.21814124 3.998043e-06 9.038945e-05
## TNS2 3.758402e+03 -0.9377101 0.24727618 1.366999e-05 2.228025e-04
## TNXB 2.780828e+03 -2.5783827 0.58888925 2.674004e-07 6.652388e-06
## TOP1MT 5.439801e+02 -0.5188945 0.21346010 3.762952e-03 2.237231e-02
## TOX 5.978073e+02 -1.8326933 0.25505381 3.092682e-14 4.256985e-12
## TPD52L1 9.564930e+02 -1.7275353 0.36756676 1.150466e-07 3.657712e-06
## TREX2 8.223925e+01 -1.8121914 0.40210026 3.411894e-07 1.236881e-05
## TRIB3 1.726802e+03 -1.7661243 0.43980601 2.287277e-06 5.392204e-05
## TRIM29 3.692935e+02 -1.0824093 0.80170459 3.632078e-03 2.491220e-02
## TRIM7 9.867595e+01 -1.2814879 0.36205801 2.414507e-05 4.528941e-04
## TRMT9B 1.371062e+02 -1.1301668 0.41682826 3.956117e-04 4.281300e-03
## TRO 1.526454e+03 -0.6786505 0.12342131 6.735145e-09 2.624005e-07
## TSC22D3 2.094003e+03 -1.3906656 0.24345417 6.999684e-10 3.650479e-08
## TSHR 5.949928e+01 -1.6252851 0.48180017 3.592829e-05 4.615630e-04
## TSPAN12 1.146033e+03 -0.6314897 0.43601809 1.259383e-02 5.422732e-02
## TSPAN32 2.023104e+02 -0.6829337 0.50040246 1.220044e-02 8.700605e-02
## TSPAN5 2.182055e+03 -0.8710367 0.15932182 5.043950e-09 1.861267e-07
## TSPOAP1 3.886534e+02 -1.0428307 0.21685926 1.314401e-07 4.643291e-06
## TTC21A 2.009301e+02 -1.0560954 0.27444688 9.482389e-06 2.818597e-04
## TTC22 1.008894e+01 -2.2073973 1.19758546 3.083984e-03 2.760174e-02
## TTC8 1.061314e+03 -0.5522009 0.15766185 1.021358e-04 1.178293e-03
## TTC9 5.646560e+02 -1.1841136 0.29042498 2.895816e-06 6.560441e-05
## TTLL3 2.678801e+03 -0.6590584 0.14462579 9.965788e-07 2.349742e-05
## TTLL9 1.295220e+01 -3.0076659 0.92461300 8.037530e-05 1.360717e-03
## TUBA3FP 6.136030e+01 -0.8658599 0.42318868 2.971955e-03 1.722841e-02
## TXLNB 2.186072e+01 -1.7641672 1.11096457 1.751452e-03 1.747335e-02
## TXNDC16 4.324953e+02 -0.7643288 0.26017729 3.783480e-04 4.141237e-03
## UACA 2.215541e+03 -0.7277462 0.23006695 1.908267e-04 1.652421e-03
## UBE2D4 6.007138e+02 -0.5154425 0.19582618 1.969407e-03 1.432900e-02
## UBE3D 1.016037e+02 -0.6728479 0.71355266 1.376722e-02 6.512886e-02
## UGDH 4.933784e+03 -0.5510860 0.19045669 8.239461e-04 5.345139e-03
## ULBP1 1.065216e+02 -1.2876401 0.53159691 7.541028e-04 6.838382e-03
## UNC13D 8.286107e+01 -0.8234190 0.41672260 3.772028e-03 2.092386e-02
## UNC5B 2.677758e+03 -0.6324048 0.40875444 1.219047e-02 5.291380e-02
## UNC5CL 3.039015e+01 -1.5652378 0.63216711 4.662200e-04 4.076324e-03
## USP27X 1.435944e+02 -0.5709447 0.28443945 7.585198e-03 4.339848e-02
## UTRN 3.209239e+03 -0.6241630 0.21977717 7.333524e-04 5.395298e-03
## VAT1 5.064255e+03 -0.9203342 0.11771095 6.116087e-16 8.100067e-14
## VPS13C 1.720731e+03 -0.5919776 0.15025843 1.722965e-05 3.072537e-04
## VPS36 1.529772e+03 -0.5252991 0.11865188 2.665361e-06 5.985658e-05
## VSIG10L 5.474387e+01 -0.7606065 0.33565988 2.445830e-03 1.477442e-02
## VSIR 3.607233e+03 -1.1858128 0.24263631 6.120407e-08 1.689726e-06
## VWA3A 1.341740e+01 -1.7207294 1.40937384 3.532259e-03 3.075140e-02
## VWA7 1.244403e+02 -1.1438201 0.47788298 8.398994e-04 7.848568e-03
## WARS1 7.342074e+03 -0.7399816 0.19404883 1.783747e-05 2.198082e-04
## WAS 1.919226e+01 -1.0990565 0.70748626 4.645520e-03 5.428146e-02
## WDR17 6.767772e+01 -0.5094971 0.37409253 2.717857e-02 9.118573e-02
## WDR91 7.262817e+02 -0.6200453 0.21067441 5.538425e-04 4.359957e-03
## WEE1 1.475960e+03 -0.6002131 0.24620780 2.480323e-03 1.628852e-02
## WNT9A 3.053656e+02 -1.3082392 0.32404789 2.792862e-06 6.236045e-05
## WSCD2 2.210082e+02 -3.5420041 0.88478383 2.516624e-07 8.445981e-06
## XNDC1N 5.757722e+01 -0.7932872 0.36486964 2.760880e-03 2.035291e-02
## XPOT 1.011739e+04 -0.6223898 0.22469635 9.172515e-04 5.821119e-03
## YPEL1 1.783982e+02 -0.6704804 0.63932290 1.672401e-02 8.433454e-02
## YPEL2 5.396862e+02 -0.8065811 0.19078298 2.795798e-06 5.654974e-05
## ZBTB46 2.842379e+02 -0.9847173 0.38589949 7.361317e-04 6.699462e-03
## ZC2HC1A 3.605420e+02 -0.5329308 0.12745130 7.222579e-06 1.760224e-04
## ZC3H7A 3.316384e+03 -0.5273381 0.11135165 5.932022e-07 1.350979e-05
## ZEB1 2.083077e+03 -0.6096108 0.18401864 1.674180e-04 2.000572e-03
## ZFAND2B 7.122642e+02 -0.6287626 0.19463934 2.143344e-04 2.260003e-03
## ZFHX2 6.863905e+01 -0.6196155 0.33132043 8.436761e-03 4.492288e-02
## ZFP36 1.341135e+03 -1.5996920 0.19882746 4.894174e-17 9.547561e-15
## ZFP69 1.297168e+02 -0.5553524 0.31990278 1.288934e-02 6.936975e-02
## ZFP69B 7.697576e+01 -0.6443213 0.38355063 1.057140e-02 5.347291e-02
## ZFP90 1.101629e+03 -0.5279596 0.11979089 2.393145e-06 5.035908e-05
## ZFYVE21 2.066867e+03 -0.5567163 0.12012889 7.963879e-07 1.941185e-05
## ZIC1 1.490958e+03 -0.7616012 0.47215360 6.820394e-03 3.910190e-02
## ZIC4 7.466933e+02 -0.7665164 0.29503748 9.192853e-04 6.535113e-03
## ZKSCAN8P1 6.431091e+01 -0.7948263 0.47081781 6.724008e-03 3.975006e-02
## ZMAT1 2.835547e+02 -0.9737313 0.24044978 4.573287e-06 1.157558e-04
## ZNF185 1.985576e+02 -1.4430928 0.29340678 5.474695e-08 2.450062e-06
## ZNF253 7.982117e+01 -0.9143306 0.30499255 2.464898e-04 2.763247e-03
## ZNF257 3.960938e+01 -0.8121203 0.53067440 7.527059e-03 4.316605e-02
## ZNF296 3.183520e+01 -0.9835560 0.41396075 1.297926e-03 9.231455e-03
## ZNF334 2.642193e+02 -0.6613247 0.24245769 9.471294e-04 8.377953e-03
## ZNF34 1.519140e+02 -0.5009802 0.23774302 8.084801e-03 6.431316e-02
## ZNF391 1.665552e+02 -0.6902643 0.33648692 4.629276e-03 2.998144e-02
## ZNF423 7.532769e+01 -0.7107746 0.36555084 5.400087e-03 3.243536e-02
## ZNF441 1.766397e+02 -0.8200000 0.32865963 1.155070e-03 1.092996e-02
## ZNF442 6.735068e+01 -1.0108529 0.42220636 1.095673e-03 9.236041e-03
## ZNF471 3.648561e+02 -0.9075793 0.26914193 7.281520e-05 1.237199e-03
## ZNF483 2.799376e+02 -0.5529183 0.24117918 4.212570e-03 2.786342e-02
## ZNF501 1.755036e+02 -0.6243300 0.25779074 2.444504e-03 2.612527e-02
## ZNF518A 4.178764e+02 -0.5405156 0.18915079 9.249989e-04 8.090626e-03
## ZNF540 6.572794e+01 -0.9819896 0.69962439 6.625298e-03 3.772060e-02
## ZNF541 4.940331e+01 -0.9822312 0.62117784 4.701394e-03 3.328908e-02
## ZNF575 8.054267e+01 -0.6268444 0.38534200 1.249558e-02 6.055272e-02
## ZNF577 3.594129e+02 -0.5063102 0.27936962 1.371381e-02 7.522720e-02
## ZNF608 5.056537e+02 -0.9363009 0.36586902 7.666094e-04 6.699462e-03
## ZNF667 2.143570e+02 -0.7559373 0.53349438 9.823517e-03 5.063399e-02
## ZNF676 1.282693e+01 -0.9527621 1.05170131 1.092345e-02 6.960155e-02
## ZNF699 1.687560e+02 -0.5196514 0.17554985 7.749368e-04 1.060563e-02
## ZNF70 3.842673e+02 -0.5745603 0.14553981 1.723482e-05 3.569613e-04
## ZNF703 1.146750e+03 -0.6444805 0.21871583 4.958556e-04 4.886579e-03
## ZNF704 6.838779e+02 -1.3011010 0.46051827 2.063401e-04 2.315377e-03
## ZNF736 3.217845e+02 -0.5072742 0.14846835 1.684326e-04 2.057470e-03
## ZNF774 1.209892e+02 -0.7606331 0.23690222 1.609808e-04 2.216355e-03
## ZNF778 4.715418e+02 -0.5415644 0.34292012 1.730134e-02 7.822252e-02
## ZNF821 1.587928e+02 -0.8993807 0.20049617 7.939230e-07 2.259959e-05
## ZNF83 1.779406e+03 -0.6620378 0.18388678 5.184800e-05 6.969420e-04
## ZNF836 1.087423e+02 -0.6216911 0.24841441 1.964183e-03 1.667041e-02
## ZNF860 4.241749e+01 -0.8015104 0.44427687 5.439730e-03 2.737242e-02
## ZNF91 3.382839e+02 -0.5419926 0.26377071 7.599018e-03 5.023401e-02
## remove NA values from results
library(EnhancedVolcano)
res <- results(dds, alpha=0.1, c('condition','healthy_cytokine','healthy_control'))
res1 <- na.omit(res)
## calculate min/max axis values for plot (optional)
min_width <- min(res1$log2FoldChange)
max_width <- max(res1$log2FoldChange)
max_height <- -log10(min(res1[res1$pvalue>0, 5]))
## Grab top 10 up-reg genes for plot
up <- subset(res1, res1$log2FoldChange > 1 & res1$pvalue <= 0.05)
up <- up[order(-up$log2FoldChange),]
up_list <- head(rownames(up), n=10L)
## Grab top 10 down-reg genes for plot
down <- subset(res1, res1$log2FoldChange < -1 & res1$pvalue <= 0.05)
down <- down[order(down$log2FoldChange),]
down_list <- head(rownames(down), n=10L)
## place top 20 DE genes in vector (optinal...)
plot_top_20 <- c(up_list, down_list)
EnhancedVolcano(res1,
lab=rownames(res1),
x="log2FoldChange",
y="pvalue",
selectLab=plot_top_20,
drawConnectors=TRUE,
legendPosition = "none",
FCcutoff=1.0,
pCutoff=0.05,
title="Volcano Plot",
subtitle="Healthy Cytokine vs Healthy Control",
caption = paste0('Total Genes = ', nrow(res1)),
xlim=c(min_width, max_width),
ylim=c(0, max_height))
## Warning: ggrepel: 4 unlabeled data points (too many overlaps). Consider
## increasing max.overlaps
## remove NA values from results
library(EnhancedVolcano)
res <- results(dds, alpha=0.1, c('condition','healthy_cytokine','healthy_control'))
res1 <- na.omit(h_con_v_h_cyto)
## calculate min/max axis values for plot (optional)
min_width <- min(res1$log2FoldChange)
max_width <- max(res1$log2FoldChange)
max_height <- -log10(min(res1[res1$pvalue>0, 5]))
## Grab top 10 up-reg genes for plot
up <- subset(res1, res1$log2FoldChange > 1 & res1$pvalue <= 0.05)
up <- up[order(-up$log2FoldChange),]
up_list <- head(rownames(up), n=10L)
## Grab top 10 down-reg genes for plot
down <- subset(res1, res1$log2FoldChange < -1 & res1$pvalue <= 0.05)
down <- down[order(down$log2FoldChange),]
down_list <- head(rownames(down), n=10L)
## place top 20 DE genes in vector (optinal...)
plot_top_20 <- c(up_list, down_list)
EnhancedVolcano(res1,
lab=rownames(res1),
x="log2FoldChange",
y="pvalue",
selectLab=plot_top_20,
drawConnectors=TRUE,
legendPosition = "none",
FCcutoff=1.0,
pCutoff=0.05,
title="Volcano Plot",
subtitle="Healthy Cytokine vs Healthy Control",
caption = paste0('Total Genes = ', nrow(res1)),
xlim=c(min_width, max_width),
ylim=c(0, max_height))
# without apeglm - not shrinkage
plotMA(h_con_v_h_cyto, ylim=c(-10,10))
# with shrinkage estimator - keep this plot
plotMA(res1, ylim=c(-10,12))
heatmap
# index must match samples you qre plotting
subset <- rld[, 7:12]
# now select de_up, de_down, i.e DE genes that passed the filtering our function produced
up <- rownames(de_up)
down <- rownames(de_down)
# subset matrix to include only DE genes
key <- c(up, down)
subset <- subset[which(rownames(subset) %in% key),]
# scale and center the values
mat <- as.matrix(scale(t(subset), center = T))
# basic plot to check we're plotting something sensible
#pheatmap(t(mat))
# spruce it up a bit..
ann <- data.frame(Condition = c(rep("Healthy_control", 3), rep("Healthy_cytokine", 3)))
rownames(ann) <- rownames(mat)
col <- c("blue", "forestgreen")
names(col) <- c("Healthy_control", "Healthy_cytokine")
ann_col <- list(Condition = col)
pheatmap(t(mat),
show_rownames = TRUE,
annotation_col = ann,
annotation_colors = ann_col,
labels_row = FALSE, # figure out remove row labels
color = hcl.colors(100, "PRGn",rev=F))
subset <- rld[, 7:12]
# now select de_up, de_down, i.e DE genes that passed the filtering our function produced
up <- rownames(de_up)
down <- rownames(de_down)
# subset matrix to include only DE genes
key <- c(up, down)
subset <- subset[which(rownames(subset) %in% key),]
mat <- t(subset)
mat <- scale(mat, center=T, scale=T)
mat <- t(mat)
mat <- na.omit(mat)
top_genes <- mat[which(rownames(mat) %in% plot_top_20),]
#hm1 <- Heatmap(top_genes, col= colorRamp2(c(-2.6,-1,0,1,2.6),c(“blue”,“skyblue”,“white”,“lightcoral”,“red”)), heatmap_legend_param=list(at=c(-2.6,-1,0,1,2.6),color_bar=“continuous”, legend_direction=“vertical”, legend_width=unit(5,“cm”), title_position=“topcenter”, title_gp=gpar(fontsize=10, fontface=“bold”)), name = “Z-score”,
#Row annotation configurations
cluster_rows=T,
show_row_dend=T,
row_title_side="right",
row_title_gp=gpar(fontsize=8),
show_row_names=TRUE,
row_names_side="right",
#Column annotation configuratiions
cluster_columns=T,
show_column_dend=T,
column_title="Lung vs. Control top 20 DE genes",
column_title_side="top",
column_title_gp=gpar(fontsize=15, fontface="bold"),
show_column_names = T,
column_names_gp = gpar(fontsize = 12, fontface="bold"),
#Dendrogram configurations: columns
clustering_distance_columns="euclidean",
clustering_method_columns="complete",
column_dend_height=unit(10,"mm"),
#Dendrogram configurations: rows
clustering_distance_rows="euclidean",
clustering_method_rows="complete",
row_dend_width=unit(4,"cm"),
row_dend_side = "left",
row_dend_reorder = TRUE,
#Splits
border=T,
row_km = 1,
column_km = 1,
#plot params
width = unit(5, "inch"),
height = unit(4, "inch"),
#height = unit(0.4, "cm")*nrow(mat),
#Annotations
top_annotation = ha_col)
# read in gmt file
pathway <- gmtPathways("/Users/aungphyo/Downloads/c5.go.bp.v2023.1.Hs.symbols.gmt.txt")
head(pathway, 1)
## $GOBP_MITOCHONDRIAL_GENOME_MAINTENANCE
## [1] "AKT3" "PPARGC1A" "POLG2" "PARP1" "DNA2" "TYMP"
## [7] "FLCN" "PRIMPOL" "ENDOG" "STOX1" "SLC25A4" "LIG3"
## [13] "MEF2A" "MPV17" "OPA1" "RRM2B" "POLG" "SLC25A36"
## [19] "TWNK" "RRM1" "METTL4" "SSBP1" "TOP3A" "TP53"
## [25] "TEFM" "PIF1" "SESN2" "SLC25A33" "DNAJA3" "MGME1"
## [31] "LONP1"
Extract the gene names and associated log2FoldChanges from our healthy cytokine vs healthy control study to generate a ranked gene list.
## convert result object to dataframe
res <- as.data.frame(res1)
res$hgnc_symbol <- rownames(res)
# compute summary stat
fgsea_rank <- res %>%
dplyr::select(hgnc_symbol, log2FoldChange) %>%
na.omit() %>%
distinct() %>%
group_by(hgnc_symbol) %>%
summarize(log2foldchange=mean(log2FoldChange))
fgsea_rank
## # A tibble: 23,094 × 2
## hgnc_symbol log2foldchange
## <chr> <dbl>
## 1 "" -0.0811
## 2 "A1BG" 0.178
## 3 "A1CF" 0.807
## 4 "A2M" 0.690
## 5 "A2ML1" -0.669
## 6 "A2MP1" 0.232
## 7 "A3GALT2" 0.793
## 8 "A4GALT" 0.921
## 9 "A4GNT" -0.651
## 10 "AAAS" -0.282
## # ℹ 23,084 more rows
rank <- deframe(fgsea_rank)
head(rank, 20)
## A1BG A1CF A2M A2ML1 A2MP1
## -0.08106658 0.17779131 0.80699938 0.69022080 -0.66934621 0.23223054
## A3GALT2 A4GALT A4GNT AAAS AACS AACSP1
## 0.79261887 0.92105758 -0.65100877 -0.28201115 0.12395885 0.00000000
## AADAC AADACL3 AADACL4 AADACP1 AADAT AAGAB
## 0.83960225 1.11006695 1.63800752 0.00000000 -0.68486107 0.36251058
## AAK1 AAMDC
## 0.06013558 -0.29388262
# run fgsea
fgsea <- fgsea(pathways=pathway, stats=rank, nperm=1000)
fgseaResTidy <- fgsea %>%
as_tibble() %>%
arrange(desc(NES))
# Show in a nice table:
fgseaResTidy %>%
dplyr::select(-leadingEdge, -ES, -nMoreExtreme) %>%
arrange(padj) %>%
DT::datatable()
amp writes
DT::datatable(as.data.frame(res1))
## Warning in instance$preRenderHook(instance): It seems your data is too big for
## client-side DataTables. You may consider server-side processing:
## https://rstudio.github.io/DT/server.html
I will show you can example of a pathway enriched in our lung samples, and a pathway that is enriched in Control (i.e negative NES score)
# subset pathways you want to plot
filtered_pathway <- subset(fgsea, fgsea$pathway == "GOBP_NEUTROPHIL_CHEMOTAXIS")
filt_up <- as.vector(filtered_pathway$pathway)
for (i in filt_up){
plt <- plotEnrichment(pathway = pathway[[i]],
gseaParam = 1, ticksSize = 0.5, stats= rank) +
labs(title=i) + theme(plot.title = element_text(hjust = 0.5, face="bold"))
print(plt)
}
filtered_pathway <- subset(fgsea, NES < -2.556)
filt_down <- as.vector(filtered_pathway$pathway)
for (i in filt_down){
plt <- plotEnrichment(pathway = pathway[[i]],
gseaParam = 1, ticksSize = 0.5, stats= rank) +
labs(title=i) + theme(plot.title = element_text(hjust = 0.5, face="bold"))
print(plt)
}
filtered_pathway <- subset(fgsea, NES > 2.3)
filt_p <- as.vector(filtered_pathway$pathway)
for (i in filt_p){
plt <- plotEnrichment(pathway = pathway[[i]],
gseaParam = 1, ticksSize = 0.5, stats= rank) +
labs(title=i) + theme(plot.title = element_text(hjust = 0.5, face="bold"))
print(plt)
}
go_bp_neutrophil_genes = subset(fgsea, fgsea$pathway=="GOBP_NEUTROPHIL_CHEMOTAXIS")
go_bp_neutrophil_genes = unlist(go_bp_neutrophil_genes$leadingEdge)
subset <- rld[go_bp_neutrophil_genes, 7:12]
# scale and center the values
mat <- as.matrix(scale(t(subset), center = T))
# basic plot to check we're plotting something sensible
#pheatmap(t(mat))
# spruce it up a bit..
ann <- data.frame(Condition = c(rep("Healthy_control", 3), rep("Healthy_cytokine", 3)))
rownames(ann) <- rownames(mat)
col <- c("blue", "forestgreen")
names(col) <- c("Healthy_control", "Healthy_cytokine")
ann_col <- list(Condition = col)
pheatmap(t(mat),
show_rownames = TRUE,
annotation_col = ann,
annotation_colors = ann_col,
main = "GOBP_NEUTROPHIL_CHEMOTAXIS",
labels_row = rownames(subset), # figure out remove row labels
fontsize_row = 6,
color = hcl.colors(100, "PRGn",rev=F))
go_bp_neutrophil_migration = subset(fgsea, fgsea$pathway=="GOBP_NEUTROPHIL_MIGRATION")
go_bp_neutrophil_migration = unlist(go_bp_neutrophil_migration$leadingEdge)
subset <- rld[go_bp_neutrophil_migration, 7:12]
# scale and center the values
mat <- as.matrix(scale(t(subset), center = T))
# basic plot to check we're plotting something sensible
#pheatmap(t(mat))
# spruce it up a bit..
ann <- data.frame(Condition = c(rep("Healthy_control", 3), rep("Healthy_cytokine", 3)))
rownames(ann) <- rownames(mat)
col <- c("blue", "forestgreen")
names(col) <- c("Healthy_control", "Healthy_cytokine")
ann_col <- list(Condition = col)
pheatmap(t(mat),
show_rownames = TRUE,
annotation_col = ann,
annotation_colors = ann_col,
main = "GOBP_NEUTROPHIL_MIGRATION",
labels_row = rownames(subset), # figure out remove row labels
fontsize_row = 6,
color = hcl.colors(100, "PRGn",rev=F))
go_bp_granulocyte_chemotaxis = subset(fgsea, fgsea$pathway=="GOBP_GRANULOCYTE_CHEMOTAXIS")
go_bp_granulocyte_chemotaxis = unlist(go_bp_granulocyte_chemotaxis$leadingEdge)
subset <- rld[go_bp_granulocyte_chemotaxis, 7:12]
# scale and center the values
mat <- as.matrix(scale(t(subset), center = T))
# basic plot to check we're plotting something sensible
#pheatmap(t(mat))
# spruce it up a bit..
ann <- data.frame(Condition = c(rep("Healthy_control", 3), rep("Healthy_cytokine", 3)))
rownames(ann) <- rownames(mat)
col <- c("blue", "forestgreen")
names(col) <- c("Healthy_control", "Healthy_cytokine")
ann_col <- list(Condition = col)
pheatmap(t(mat),
show_rownames = TRUE,
annotation_col = ann,
annotation_colors = ann_col,
main = "GOBP_GRANULOCYTE_CHEMOTAXIS",
labels_row = rownames(subset), # figure out remove row labels
fontsize_row = 6,
color = hcl.colors(100, "PRGn",rev=F))
another 6 graphs ??
Cluster Profiler
df <- as.data.frame(res1)
df$hgnc_symbol <- rownames(df)
info <- getBM(attributes=c("hgnc_symbol",
"entrezgene_id"),
filters = c("hgnc_symbol"),
values = df$hgnc_symbol,
mart = mart,
useCache=FALSE)
tmp <- merge(df, info, by="hgnc_symbol")
# subset the dataframe to include only stat sig genes
tmp <- tmp[tmp$padj < 0.01,]
OrgDb <- org.Hs.eg.db
geneList <- as.vector(tmp$log2FoldChange)
names(geneList) <- as.character(tmp$entrezgene_id)
gene <- na.omit(as.character(tmp$entrezgene_id))
# GO over-representation test
ego <- clusterProfiler::enrichGO(gene = gene,
OrgDb = OrgDb,
ont = "BP",
pAdjustMethod = "BH",
pvalueCutoff = 0.001,
qvalueCutoff = 0.01,
readable = TRUE)
head(summary(ego))
## Warning in summary(ego): summary method to convert the object to data.frame is
## deprecated, please use as.data.frame instead.
## ID Description
## GO:0006091 GO:0006091 generation of precursor metabolites and energy
## GO:0045333 GO:0045333 cellular respiration
## GO:0046034 GO:0046034 ATP metabolic process
## GO:0009060 GO:0009060 aerobic respiration
## GO:0015980 GO:0015980 energy derivation by oxidation of organic compounds
## GO:0006119 GO:0006119 oxidative phosphorylation
## GeneRatio BgRatio pvalue p.adjust qvalue
## GO:0006091 112/1802 494/18800 2.046407e-18 1.217203e-14 9.650425e-15
## GO:0045333 68/1802 231/18800 1.034199e-17 3.075708e-14 2.438533e-14
## GO:0046034 74/1802 273/18800 5.965832e-17 1.182826e-13 9.377869e-14
## GO:0009060 58/1802 187/18800 1.885697e-16 2.290958e-13 1.816355e-13
## GO:0015980 81/1802 321/18800 1.925822e-16 2.290958e-13 1.816355e-13
## GO:0006119 47/1802 139/18800 3.406953e-15 3.377426e-12 2.677745e-12
## geneID
## GO:0006091 ACO1/ACO2/ADPGK/AIFM2/AK4/AKR1B1/ALDH2/ALDOA/AOC2/ARL2/ASPH/ATP5F1A/ATP5F1B/ATP5F1E/ATP5IF1/ATP5MF/ATP5MG/ATP5PD/ATP5PF/BID/BNIP3/CHCHD2/CISD1/COQ10B/COX17/COX4I1/COX5A/COX5B/COX7A2/COX7C/CYCS/DDIT4/DLAT/DNAJC15/DYRK2/ENO1/ENO2/GAPDH/GFPT2/GPD2/GPI/GYS1/HDAC4/HIF1A/IDH3A/IRS1/KHK/LDHA/MAOB/MDH1/MDH2/MRAP2/MYBBP1A/NDUFA1/NDUFA13/NDUFA2/NDUFA3/NDUFA4/NDUFA7/NDUFA8/NDUFAB1/NDUFB1/NDUFB2/NDUFB3/NDUFB4/NDUFB5/NDUFB6/NDUFB8/NDUFC1/NDUFC2/NDUFS1/NDUFS5/NDUFS6/NDUFS8/NDUFV2/NOS2/NR1D1/NR4A3/OGT/PARK7/PDHB/PDIA5/PER2/PFKL/PFKP/PGAM1/PGK1/PHGDH/PHKA2/PHKG2/PID1/PKM/PLEC/PPIF/PRKAA2/RUBCNL/SDHA/SDHAF2/SDHC/SIRT3/SLC25A25/SLC2A6/SOD2/STEAP4/TALDO1/TPI1/UGP2/UQCC2/UQCR11/UQCRC1/UQCRFS1/UQCRQ
## GO:0045333 ACO1/ACO2/AIFM2/AK4/ARL2/ATP5F1A/ATP5F1B/ATP5F1E/ATP5MF/ATP5MG/ATP5PD/ATP5PF/BID/BNIP3/CHCHD2/CISD1/COQ10B/COX4I1/COX5A/COX5B/COX7A2/COX7C/CYCS/DLAT/DNAJC15/GPD2/HIF1A/IDH3A/MDH1/MDH2/MYBBP1A/NDUFA1/NDUFA2/NDUFA3/NDUFA4/NDUFA7/NDUFA8/NDUFAB1/NDUFB1/NDUFB2/NDUFB3/NDUFB4/NDUFB5/NDUFB6/NDUFB8/NDUFC1/NDUFC2/NDUFS1/NDUFS5/NDUFS6/NDUFS8/NDUFV2/NOS2/NR4A3/PARK7/PDHB/PLEC/PPIF/SDHA/SDHAF2/SDHC/SIRT3/SLC25A25/SOD2/UQCC2/UQCRC1/UQCRFS1/UQCRQ
## GO:0046034 ADPGK/AK4/ALDOA/ARL2/ATP1A2/ATP5F1A/ATP5F1B/ATP5F1E/ATP5IF1/ATP5MC1/ATP5MC3/ATP5MF/ATP5MG/ATP5PD/ATP5PF/ATP6V0C/BID/CHCHD2/COX4I1/COX5A/COX5B/COX7A2/COX7C/CYCS/DDIT4/DNAJC15/ENO1/ENO2/GAPDH/GPI/HDAC4/HIF1A/LDHA/NDUFA1/NDUFA2/NDUFA3/NDUFA4/NDUFA7/NDUFA8/NDUFAB1/NDUFB1/NDUFB2/NDUFB3/NDUFB4/NDUFB5/NDUFB6/NDUFB8/NDUFC1/NDUFC2/NDUFS1/NDUFS5/NDUFS6/NDUFS8/NDUFV2/OGT/PARK7/PFKL/PFKP/PGAM1/PGK1/PID1/PKM/PPIF/PRKAA2/SDHA/SDHAF2/SDHC/SLC25A25/SLC2A6/TPI1/UQCC2/UQCRC1/UQCRFS1/UQCRQ
## GO:0009060 ACO1/ACO2/AK4/ARL2/ATP5F1A/ATP5F1B/ATP5F1E/ATP5MF/ATP5MG/ATP5PD/ATP5PF/BID/BNIP3/CHCHD2/COX4I1/COX5A/COX5B/COX7A2/COX7C/CYCS/DLAT/DNAJC15/HIF1A/IDH3A/MDH1/MDH2/NDUFA1/NDUFA2/NDUFA3/NDUFA4/NDUFA7/NDUFA8/NDUFAB1/NDUFB1/NDUFB2/NDUFB3/NDUFB4/NDUFB5/NDUFB6/NDUFB8/NDUFC1/NDUFC2/NDUFS1/NDUFS5/NDUFS6/NDUFS8/NDUFV2/PARK7/PDHB/PPIF/SDHA/SDHAF2/SDHC/SIRT3/UQCC2/UQCRC1/UQCRFS1/UQCRQ
## GO:0015980 ACO1/ACO2/AIFM2/AK4/ARL2/ATP5F1A/ATP5F1B/ATP5F1E/ATP5MF/ATP5MG/ATP5PD/ATP5PF/BID/BNIP3/CHCHD2/CISD1/COQ10B/COX4I1/COX5A/COX5B/COX7A2/COX7C/CYCS/DLAT/DNAJC15/DYRK2/GFPT2/GPD2/GYS1/HIF1A/IDH3A/IRS1/KHK/MDH1/MDH2/MRAP2/MYBBP1A/NDUFA1/NDUFA2/NDUFA3/NDUFA4/NDUFA7/NDUFA8/NDUFAB1/NDUFB1/NDUFB2/NDUFB3/NDUFB4/NDUFB5/NDUFB6/NDUFB8/NDUFC1/NDUFC2/NDUFS1/NDUFS5/NDUFS6/NDUFS8/NDUFV2/NOS2/NR1D1/NR4A3/PARK7/PDHB/PER2/PHKA2/PHKG2/PID1/PLEC/PPIF/RUBCNL/SDHA/SDHAF2/SDHC/SIRT3/SLC25A25/SOD2/UGP2/UQCC2/UQCRC1/UQCRFS1/UQCRQ
## GO:0006119 AK4/ATP5F1A/ATP5F1B/ATP5F1E/ATP5MF/ATP5MG/ATP5PD/ATP5PF/BID/CHCHD2/COX4I1/COX5A/COX5B/COX7A2/COX7C/CYCS/DNAJC15/NDUFA1/NDUFA2/NDUFA3/NDUFA4/NDUFA7/NDUFA8/NDUFAB1/NDUFB1/NDUFB2/NDUFB3/NDUFB4/NDUFB5/NDUFB6/NDUFB8/NDUFC1/NDUFC2/NDUFS1/NDUFS5/NDUFS6/NDUFS8/NDUFV2/PARK7/PPIF/SDHA/SDHAF2/SDHC/UQCC2/UQCRC1/UQCRFS1/UQCRQ
## Count
## GO:0006091 112
## GO:0045333 68
## GO:0046034 74
## GO:0009060 58
## GO:0015980 81
## GO:0006119 47
ego <- setReadable(ego, OrgDb = org.Hs.eg.db)
ego
## #
## # over-representation test
## #
## #...@organism Homo sapiens
## #...@ontology BP
## #...@keytype ENTREZID
## #...@gene chr [1:1963] "51166" "16" "19" "20" "21" "10057" "10061" "26090" "7920" ...
## #...pvalues adjusted by 'BH' with cutoff <0.001
## #...97 enriched terms found
## 'data.frame': 97 obs. of 9 variables:
## $ ID : chr "GO:0006091" "GO:0045333" "GO:0046034" "GO:0009060" ...
## $ Description: chr "generation of precursor metabolites and energy" "cellular respiration" "ATP metabolic process" "aerobic respiration" ...
## $ GeneRatio : chr "112/1802" "68/1802" "74/1802" "58/1802" ...
## $ BgRatio : chr "494/18800" "231/18800" "273/18800" "187/18800" ...
## $ pvalue : num 2.05e-18 1.03e-17 5.97e-17 1.89e-16 1.93e-16 ...
## $ p.adjust : num 1.22e-14 3.08e-14 1.18e-13 2.29e-13 2.29e-13 ...
## $ qvalue : num 9.65e-15 2.44e-14 9.38e-14 1.82e-13 1.82e-13 ...
## $ geneID : chr "ACO1/ACO2/ADPGK/AIFM2/AK4/AKR1B1/ALDH2/ALDOA/AOC2/ARL2/ASPH/ATP5F1A/ATP5F1B/ATP5F1E/ATP5IF1/ATP5MF/ATP5MG/ATP5P"| __truncated__ "ACO1/ACO2/AIFM2/AK4/ARL2/ATP5F1A/ATP5F1B/ATP5F1E/ATP5MF/ATP5MG/ATP5PD/ATP5PF/BID/BNIP3/CHCHD2/CISD1/COQ10B/COX4"| __truncated__ "ADPGK/AK4/ALDOA/ARL2/ATP1A2/ATP5F1A/ATP5F1B/ATP5F1E/ATP5IF1/ATP5MC1/ATP5MC3/ATP5MF/ATP5MG/ATP5PD/ATP5PF/ATP6V0C"| __truncated__ "ACO1/ACO2/AK4/ARL2/ATP5F1A/ATP5F1B/ATP5F1E/ATP5MF/ATP5MG/ATP5PD/ATP5PF/BID/BNIP3/CHCHD2/COX4I1/COX5A/COX5B/COX7"| __truncated__ ...
## $ Count : int 112 68 74 58 81 47 40 35 35 33 ...
## #...Citation
## T Wu, E Hu, S Xu, M Chen, P Guo, Z Dai, T Feng, L Zhou, W Tang, L Zhan, X Fu, S Liu, X Bo, and G Yu.
## clusterProfiler 4.0: A universal enrichment tool for interpreting omics data.
## The Innovation. 2021, 2(3):100141
#{r} install.packages('ggnewscale') library(ggnewscale)
dotplot(ego,showCategory=20)
subset <- ego[ego$Count == 10, asis=T]
cnetplot(subset, foldChange=geneList)
## Scale for size is already present.
## Adding another scale for size, which will replace the existing scale.
GO Cellular Component Ontology
# read in gmt file
pathway_cc <- gmtPathways("/Users/aungphyo/Downloads/c5.go.cc.v2023.1.Hs.symbols.gmt.txt")
head(pathway, 1)
## $GOBP_MITOCHONDRIAL_GENOME_MAINTENANCE
## [1] "AKT3" "PPARGC1A" "POLG2" "PARP1" "DNA2" "TYMP"
## [7] "FLCN" "PRIMPOL" "ENDOG" "STOX1" "SLC25A4" "LIG3"
## [13] "MEF2A" "MPV17" "OPA1" "RRM2B" "POLG" "SLC25A36"
## [19] "TWNK" "RRM1" "METTL4" "SSBP1" "TOP3A" "TP53"
## [25] "TEFM" "PIF1" "SESN2" "SLC25A33" "DNAJA3" "MGME1"
## [31] "LONP1"
## convert result object to dataframe
res <- as.data.frame(res1)
res$hgnc_symbol <- rownames(res)
# compute summary stat
fgsea_rank <- res %>%
dplyr::select(hgnc_symbol, log2FoldChange) %>%
na.omit() %>%
distinct() %>%
group_by(hgnc_symbol) %>%
summarize(log2foldchange=mean(log2FoldChange))
fgsea_rank
## # A tibble: 23,094 × 2
## hgnc_symbol log2foldchange
## <chr> <dbl>
## 1 "" -0.0811
## 2 "A1BG" 0.178
## 3 "A1CF" 0.807
## 4 "A2M" 0.690
## 5 "A2ML1" -0.669
## 6 "A2MP1" 0.232
## 7 "A3GALT2" 0.793
## 8 "A4GALT" 0.921
## 9 "A4GNT" -0.651
## 10 "AAAS" -0.282
## # ℹ 23,084 more rows
# create named list
rank <- deframe(fgsea_rank)
head(rank, 20)
## A1BG A1CF A2M A2ML1 A2MP1
## -0.08106658 0.17779131 0.80699938 0.69022080 -0.66934621 0.23223054
## A3GALT2 A4GALT A4GNT AAAS AACS AACSP1
## 0.79261887 0.92105758 -0.65100877 -0.28201115 0.12395885 0.00000000
## AADAC AADACL3 AADACL4 AADACP1 AADAT AAGAB
## 0.83960225 1.11006695 1.63800752 0.00000000 -0.68486107 0.36251058
## AAK1 AAMDC
## 0.06013558 -0.29388262
# run fgsea
fgsea <- fgsea(pathways=pathway_cc, stats=rank, nperm=1000)
fgseaResTidy <- fgsea %>%
as_tibble() %>%
arrange(desc(NES))
# Show in a nice table:
fgseaResTidy %>%
dplyr::select(-leadingEdge, -ES, -nMoreExtreme) %>%
arrange(padj) %>%
DT::datatable()
go_cc_innermito = subset(fgsea, fgsea$pathway=="GOCC_INNER_MITOCHONDRIAL_MEMBRANE_PROTEIN_COMPLEX")
go_cc_innermito = unlist(go_cc_innermito$leadingEdge)
subset <- rld[go_cc_innermito, 7:12]
# scale and center the values
mat <- as.matrix(scale(t(subset), center = T))
# basic plot to check we're plotting something sensible
#pheatmap(t(mat))
# spruce it up a bit..
ann <- data.frame(Condition = c(rep("Healthy_control", 3), rep("Healthy_cytokine", 3)))
rownames(ann) <- rownames(mat)
col <- c("blue", "forestgreen")
names(col) <- c("Healthy_control", "Healthy_cytokine")
ann_col <- list(Condition = col)
pheatmap(t(mat),
show_rownames = TRUE,
annotation_col = ann,
annotation_colors = ann_col,
main = "GOCC_INNER_MITOCHONDRIA",
labels_row = rownames(subset), # figure out remove row labels
fontsize_row = 1,
color = hcl.colors(100, "PRGn",rev=F))
KEGG
# read in gmt file
pathway_kegg <- gmtPathways("/Users/aungphyo/Downloads/c2.cp.kegg.v2023.1.Hs.symbols.gmt.txt")
head(pathway, 1)
## $GOBP_MITOCHONDRIAL_GENOME_MAINTENANCE
## [1] "AKT3" "PPARGC1A" "POLG2" "PARP1" "DNA2" "TYMP"
## [7] "FLCN" "PRIMPOL" "ENDOG" "STOX1" "SLC25A4" "LIG3"
## [13] "MEF2A" "MPV17" "OPA1" "RRM2B" "POLG" "SLC25A36"
## [19] "TWNK" "RRM1" "METTL4" "SSBP1" "TOP3A" "TP53"
## [25] "TEFM" "PIF1" "SESN2" "SLC25A33" "DNAJA3" "MGME1"
## [31] "LONP1"
## convert result object to dataframe
res <- as.data.frame(res1)
res$hgnc_symbol <- rownames(res)
# compute summary stat
fgsea_rank <- res %>%
dplyr::select(hgnc_symbol, log2FoldChange) %>%
na.omit() %>%
distinct() %>%
group_by(hgnc_symbol) %>%
summarize(log2foldchange=mean(log2FoldChange))
fgsea_rank
## # A tibble: 23,094 × 2
## hgnc_symbol log2foldchange
## <chr> <dbl>
## 1 "" -0.0811
## 2 "A1BG" 0.178
## 3 "A1CF" 0.807
## 4 "A2M" 0.690
## 5 "A2ML1" -0.669
## 6 "A2MP1" 0.232
## 7 "A3GALT2" 0.793
## 8 "A4GALT" 0.921
## 9 "A4GNT" -0.651
## 10 "AAAS" -0.282
## # ℹ 23,084 more rows
rank <- deframe(fgsea_rank)
head(rank, 20)
## A1BG A1CF A2M A2ML1 A2MP1
## -0.08106658 0.17779131 0.80699938 0.69022080 -0.66934621 0.23223054
## A3GALT2 A4GALT A4GNT AAAS AACS AACSP1
## 0.79261887 0.92105758 -0.65100877 -0.28201115 0.12395885 0.00000000
## AADAC AADACL3 AADACL4 AADACP1 AADAT AAGAB
## 0.83960225 1.11006695 1.63800752 0.00000000 -0.68486107 0.36251058
## AAK1 AAMDC
## 0.06013558 -0.29388262
# run fgsea
fgsea <- fgsea(pathways=pathway_kegg, stats=rank, nperm=1000)
fgseaResTidy <- fgsea %>%
as_tibble() %>%
arrange(desc(NES))
# Show in a nice table:
fgseaResTidy %>%
dplyr::select(-leadingEdge, -ES, -nMoreExtreme) %>%
arrange(padj) %>%
DT::datatable()
filtered_pathway <- subset(fgsea, NES > 2.3)
filt_p <- as.vector(filtered_pathway$pathway)
for (i in filt_p){
plt <- plotEnrichment(pathway = pathway_kegg[[i]],
gseaParam = 1, ticksSize = 0.5, stats= rank) +
labs(title=i) + theme(plot.title = element_text(hjust = 0.5, face="bold"))
print(plt)
}
#```{r} kegg_nod= subset(fgsea, fgsea\(pathway=="KEGG_NOD_LIKE_RECEPTOR_SIGNALLING_PATHWAY") kegg_nod = unlist(kegg_nod\)leadingEdge)
subset <- rld[kegg_nod, 7:12]
mat <- as.matrix(scale(t(subset), center = T))
#pheatmap(t(mat))
ann <- data.frame(Condition = c(rep(“Healthy_control”, 3), rep(“Healthy_cytokine”, 3))) rownames(ann) <- rownames(mat) col <- c(“blue”, “forestgreen”) names(col) <- c(“Healthy_control”, “Healthy_cytokine”) ann_col <- list(Condition = col)
#pheatmap(t(mat), show_rownames = TRUE, annotation_col = ann, annotation_colors = ann_col, main = “KEGG_NOD_LIKE_RECEPTOR_SIGNALLING_PATHWAY”, labels_row = rownames(subset), # figure out remove row labels fontsize_row = 1, color = hcl.colors(100, “PRGn”,rev=F)) #```