ParProx

This package aims to perform penalized logistic regression and Cox proportional hazard regression using the proximal gradient method. It supports $\ell_1$ penalty (lasso) and the group lasso penalty. The groups may overlap, as postulated by the latent group lasso (Obozinski,Jacob, and Vert, 2011). This package also supports computation on a single Nvidia GPU via the package CUDA.jl.

Installation

Julia

Download Julia from https://julialang.org/downloads/ according to your OS and hardware, and follow platform-specific instruction here.

You can also run Julia from the Jupyter Notebook after installing the package IJulia:

using Pkg
pkg"add IJulia"

The Package

The ParProx package is installed by using the command:

using Pkg
pkg"add https://github.com/kose-y/ParProx.jl"

To install the other packages used in this tutoral, use the command:

pkg"add Printf Statistics CSV Mmap CodecZlib ROCAnalysis DataFrames"

For optional CUDA support, the following is also needed:

pkg"add CUDA Adapt"

It requires a CUDA-capable GPU with compute capability 5.0 (Maxwell) or higher, and an accompanying Nvidia driver with support for CUDA 10.1 or newer. CUDA is automatically downloaded before the first use, unless configured otherwise through an environment variable. See this page for further information.

The following shows the version of Julia and system information.

versioninfo()
Julia Version 1.5.2
Commit 539f3ce943 (2020-09-23 23:17 UTC)
Platform Info:
  OS: Linux (x86_64-pc-linux-gnu)
  CPU: Intel(R) Xeon(R) Silver 4114 CPU @ 2.20GHz
  WORD_SIZE: 64
  LIBM: libopenlibm
  LLVM: libLLVM-9.0.1 (ORCJIT, skylake-avx512)

Example 1: Cox regression with nonoverlapping groups

In this example, we perform the Cox regression on somatic mutation count data of Glioblastoma patients. We use count of mutations in protein units as the covariates, and the group lasso penalty is applied, where the variables are grouped by the gene where the unit belongs to.

Loading packages

using ParProx, Printf, Statistics # load the packages
using CSV, DataFrames, CodecZlib, Mmap # packages for data reading. GZip is used to read the gzipped text file.

Reading data files

The file "somaticsumtable_GBM.tsv.gz" contains the information the mutations and the count of mutations. Columns 1-9 contains the information of the mutations, and the tenth column and later contains the mutation count for each subject.

somatic = DataFrame!(CSV.File(transcode(GzipDecompressor, Mmap.mmap(
            ParProx.datadir("somatic_sum_table_GBM.tsv.gz")))));

For regular tab- or comma-delimited files, DataFrame!(CSV.File("test.txt")) should be enough.

We print first six rows and five columns of the dataframe:

first(somatic[!, 1:5], 6)

<table class="data-frame"><thead><tr><th></th><th>uniprotaccession</th><th>startposition</th><th>endposition</th><th>centerposition</th><th>unitname</th></tr><tr><th></th><th>String</th><th>String</th><th>String</th><th>String</th><th>String</th></tr></thead><tbody><p>6 rows × 5 columns</p><tr><th>1</th><td>Q9H2S6</td><td>NA</td><td>NA</td><td>NA</td><td>NCU</td></tr><tr><th>2</th><td>O60762</td><td>28</td><td>199</td><td>113</td><td>Glycostransf_2</td></tr><tr><th>3</th><td>Q8IZE3</td><td>26</td><td>245</td><td>135</td><td>Pkinase</td></tr><tr><th>4</th><td>Q8IZE3</td><td>NA</td><td>NA</td><td>NA</td><td>LU</td></tr><tr><th>5</th><td>Q8IZE3</td><td>NA</td><td>NA</td><td>NA</td><td>NCU</td></tr><tr><th>6</th><td>Q9NSG2</td><td>176</td><td>728</td><td>452</td><td>DUF4487</td></tr></tbody></table>

and next four columns are:

first(somatic[!, 6:9], 6)

<table class="data-frame"><thead><tr><th></th><th>genename</th><th>geneid</th><th>unit_label</th><th>sum</th></tr><tr><th></th><th>String?</th><th>String</th><th>String</th><th>Int64</th></tr></thead><tbody><p>6 rows × 4 columns</p><tr><th>1</th><td>TNMD</td><td>ENSG00000000005</td><td>NCU</td><td>1</td></tr><tr><th>2</th><td>DPM1</td><td>ENSG00000000419</td><td>PIU</td><td>1</td></tr><tr><th>3</th><td>SCYL3</td><td>ENSG00000000457</td><td>PIU</td><td>1</td></tr><tr><th>4</th><td>SCYL3</td><td>ENSG00000000457</td><td>LU</td><td>2</td></tr><tr><th>5</th><td>SCYL3</td><td>ENSG00000000457</td><td>NCU</td><td>1</td></tr><tr><th>6</th><td>C1orf112</td><td>ENSG00000000460</td><td>PIU</td><td>1</td></tr></tbody></table>

The actual count data starts at column 10.

first(somatic[!, 10:15], 6)

<table class="data-frame"><thead><tr><th></th><th>TCGA-02-0003</th><th>TCGA-02-0033</th><th>TCGA-02-0047</th><th>TCGA-02-0055</th><th>TCGA-02-2466</th><th>TCGA-02-2470</th></tr><tr><th></th><th>Int64</th><th>Int64</th><th>Int64</th><th>Int64</th><th>Int64</th><th>Int64</th></tr></thead><tbody><p>6 rows × 6 columns</p><tr><th>1</th><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr><tr><th>2</th><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr><tr><th>3</th><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr><tr><th>4</th><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr><tr><th>5</th><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr><tr><th>6</th><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td><td>0</td></tr></tbody></table>

The file "primaryTCGACDR_GBM.tsv" contains the clinical information of the subjects.

# read data
cdr = CSV.read("primary_TCGA_CDR_GBM.tsv", DataFrame);
first(cdr, 6)

<table class="data-frame"><thead><tr><th></th><th>V1</th><th>bcrpatientbarcode</th><th>type</th><th>ageatinitialpathologicdiagnosis</th><th>gender</th></tr><tr><th></th><th>Int64</th><th>String</th><th>String</th><th>Int64</th><th>String</th></tr></thead><tbody><p>6 rows × 34 columns (omitted printing of 29 columns)</p><tr><th>1</th><td>2647</td><td>TCGA-02-0003</td><td>GBM</td><td>50</td><td>MALE</td></tr><tr><th>2</th><td>2664</td><td>TCGA-02-0033</td><td>GBM</td><td>54</td><td>MALE</td></tr><tr><th>3</th><td>2671</td><td>TCGA-02-0047</td><td>GBM</td><td>78</td><td>MALE</td></tr><tr><th>4</th><td>2676</td><td>TCGA-02-0055</td><td>GBM</td><td>62</td><td>FEMALE</td></tr><tr><th>5</th><td>2734</td><td>TCGA-02-2466</td><td>GBM</td><td>61</td><td>MALE</td></tr><tr><th>6</th><td>2735</td><td>TCGA-02-2470</td><td>GBM</td><td>57</td><td>MALE</td></tr></tbody></table>

We take the survival outcome and survival time from the clinical data:

survival_event = convert(Vector, cdr[!, :OS])
survival_time = convert(Vector, cdr[!, Symbol("OS.time")]);

We will also add age at inital pathologic diagnosis and gender as unpenalized covariates. We will code males to 1 and females to 0.

# age at initial pathological diagnosis
age_at_diagnosis = cdr[!, :age_at_initial_pathologic_diagnosis]

# gender: 1: male, 0: not male
gender = map(x -> x == "MALE", cdr[!, :gender]) 

# we will adjust for these two covariates by adding them as nonpenalized variables. 
clinical = hcat(age_at_diagnosis, gender);

We take the predictors in a single matrix:

somatic_predictors = hcat(convert(Array{Float64}, transpose(convert(Array{Float64}, somatic[:, 10:end]))), clinical)
390×25309 Array{Float64,2}:
 0.0  0.0  0.0  0.0  0.0  0.0  0.0  …  0.0  0.0  0.0  0.0  0.0  50.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  54.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  78.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  62.0  0.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  61.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0  …  0.0  0.0  0.0  0.0  0.0  57.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  43.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  53.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  64.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  81.0  0.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0  …  0.0  0.0  0.0  0.0  0.0  84.0  0.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  67.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  63.0  0.0
 ⋮                        ⋮         ⋱                 ⋮               
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  73.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  54.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0  …  0.0  0.0  0.0  0.0  0.0  58.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  44.0  0.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  49.0  0.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  64.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  33.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0  …  0.0  0.0  0.0  0.0  0.0  50.0  0.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  68.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  72.0  0.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  51.0  1.0
 0.0  0.0  0.0  0.0  0.0  0.0  0.0     0.0  0.0  0.0  0.0  0.0  55.0  1.0

Unpenalized variables must be placed at the last columns of the matrix.

we normalize the input variables:

normalize(x) = (x .- mean(x; dims=1))./ std(x; dims=1)
somatic_predictors = normalize(somatic_predictors)
390×25309 Array{Float64,2}:
 -0.050637  -0.050637  -0.050637  …  -0.0879321  -0.748927    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321  -0.450504    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321   1.34003     0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321   0.146342   -1.30536
 -0.050637  -0.050637  -0.050637     -0.0879321   0.0717363   0.764111
 -0.050637  -0.050637  -0.050637  …  -0.0879321  -0.226687    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321  -1.27117     0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321  -0.52511     0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321   0.295553    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321   1.56385    -1.30536
 -0.050637  -0.050637  -0.050637  …  -0.0879321   1.78767    -1.30536
 -0.050637  -0.050637  -0.050637     -0.0879321   0.519371    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321   0.220948   -1.30536
  ⋮                               ⋱                          
 -0.050637  -0.050637  -0.050637     -0.0879321   0.967005    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321  -0.450504    0.764111
 -0.050637  -0.050637  -0.050637  …  -0.0879321  -0.152081    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321  -1.19656    -1.30536
 -0.050637  -0.050637  -0.050637     -0.0879321  -0.823532   -1.30536
 -0.050637  -0.050637  -0.050637     -0.0879321   0.295553    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321  -2.01722     0.764111
 -0.050637  -0.050637  -0.050637  …  -0.0879321  -0.748927   -1.30536
 -0.050637  -0.050637  -0.050637     -0.0879321   0.593976    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321   0.892399   -1.30536
 -0.050637  -0.050637  -0.050637     -0.0879321  -0.674321    0.764111
 -0.050637  -0.050637  -0.050637     -0.0879321  -0.375898    0.764111

We are considering 390 subjects and 25309 variables (25307 somatic mutations, age at diagnosis, and gender).

We check if the order of clinical data and the mutation data matches.

all(cdr[!, :bcr_patient_barcode] .== names(somatic)[10:end])
true

Sorting by nonincreasing order of observed time

The samples should be sorted in nonincreasing order of observed survival time.

sortorder = sortperm(survival_time; rev=true)
somatic_predictors = normalize(somatic_predictors[sortorder, :])
survival_event = survival_event[sortorder]
survival_time = survival_time[sortorder]
390-element Array{Int64,1}:
 3881
 3667
 2883
 2791
 2246
 2126
 1818
 1788
 1481
 1458
 1448
 1426
 1417
    ⋮
   15
   13
   12
    6
    6
    6
    5
    4
    4
    3
    3
    0

The following code creates a vector of String to be used as the name of each variable. We will use the first eight columns of somatic data frame to make a variable name.

somatic_variable_names = map(x -> "$(x[1])\t$(x[2])\t$(x[3])\t" * 
    "$(x[4])\t$(x[5])\t$(x[6])\t$(x[7])\t$(x[8])", eachrow(somatic))
somatic_variable_names = vcat(somatic_variable_names, map(x -> "$x\t\t\t\t\t\t\t", 
        ["age_at_diagnosis", "gender"]));

Group definition

We figure out unique group names (somatic_groups), size of each group (somatic_group_sizes), and which group each variable belongs to (somatic_grpidx).

somatic_groups = unique(somatic[!, :gene_id])
somatic_group_sizes = map(somatic_groups) do x
    count(y -> y == x, somatic[!, :gene_id])
end
somatic_grpidx = map(somatic[!, :gene_id]) do x 
    findfirst(y -> y .== x, somatic_groups)
end;

somatic_grpidx gives the group index each variable belongs. Note that Julia uses 1-based indexing.

somatic_grpidx
25307-element Array{Int64,1}:
     1
     2
     3
     3
     3
     4
     5
     5
     5
     5
     5
     5
     5
     ⋮
 14247
 14248
 14249
 14250
 14251
 14252
 14253
 14253
 14253
 14253
 14253
 14254

Cross validation

For the cross validation, we create a COXUpdate object specifying the update rules: maximum number of iterations, steps between intermediate evaluation, relative tolerance for stopping, and whether to print the intermediate output.

For cross validation in Cox regression, "C-index" is used as the metric (the higher, the better). Stratified k-fold cross validation is implemented (k=5 here), i.e., we ensure that the proportion of event and censored subject as equal as possible across the folds.

using Random
Random.seed!(222);

We perform 5-fold corss validation using CPU only:

T = Float64
A = Array
U = ParProx.COXUpdate(; maxiter=10000, step=10, tol=5e-4, verbose=true)
lambdas = 10 .^ (range(-4, stop=-6, length=21)) # 21 values equally log-spaced in 10^-5 .. 10^-7
penalties = [GroupNormL2(l, somatic_grpidx) for l in lambdas]

score = ParProx.cross_validate(U, somatic_predictors, 
    survival_event, survival_time, penalties, 5; T=Float64, A=Array)
10	(-0.04472522319121207, Inf, 2.0)
20	(-0.044723958842517474, 1.2102227424703307e-6, 2.0)
  2.152296 seconds (4.96 M allocations: 269.527 MiB, 1.58% gc time)
10	(-0.04472269647652537, Inf, 2.0)
20	(-0.04472143608980039, 1.206433295455113e-6, 2.0)
  0.144078 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04472017767891388, Inf, 2.0)
20	(-0.044718921240443715, 1.202656948795527e-6, 2.0)
  0.180938 seconds (1.13 k allocations: 11.923 MiB, 24.44% gc time)
10	(-0.044717666770974385, Inf, 2.0)
20	(-0.044716414267097014, 1.1988936521584698e-6, 2.0)
  0.138394 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04471516372540919, Inf, 2.0)
20	(-0.04471391514251518, 1.1951433554350747e-6, 2.0)
  0.142427 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04471266851502568, Inf, 2.0)
20	(-0.04471142383955796, 1.1914060087008697e-6, 2.0)
  0.142674 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04470896951697031, Inf, 18.0)
20	(-0.044706614983195204, 2.2537751186168218e-6, 18.0)
  0.143495 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04470138327001969, Inf, 33.0)
20	(-0.044696496807664805, 4.6773990051827744e-6, 33.0)
  0.143554 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04468658542687126, Inf, 86.0)
20	(-0.04467769267372737, 8.512437095436579e-6, 86.0)
  0.148346 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04466003375328557, Inf, 253.0)
20	(-0.04464405307492299, 1.5297725876618767e-5, 257.0)
  0.143243 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04461391489614862, Inf, 571.0)
20	(-0.044586608612859714, 2.6140755647982982e-5, 566.0)
  0.142971 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04454070530336293, Inf, 1129.0)
20	(-0.044499102743396066, 3.9830153858051526e-5, 1120.0)
  0.142994 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.0444359367426291, Inf, 1993.0)
20	(-0.044378304335936966, 5.518345838175809e-5, 1966.0)
  0.143195 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04429430257069051, Inf, 3603.0)
20	(-0.04421655706140239, 7.44534347424172e-5, 3542.0)
  0.143710 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04410877973773569, Inf, 6161.0)
20	(-0.044007686937057984, 9.683147159030782e-5, 6158.0)
  0.142889 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04387425034923962, Inf, 9038.0)
20	(-0.04374794722856297, 0.00012100921588590414, 8951.0)
  0.143225 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04359180076784028, Inf, 11654.0)
20	(-0.04344347685670743, 0.00014214848664315083, 11594.0)
  0.143408 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.043270528052661954, Inf, 13458.0)
20	(-0.04310580241625465, 0.00015791843552757077, 13311.0)
  0.143476 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04292218240387635, Inf, 14866.0)
20	(-0.04274679808535906, 0.00016819454045730156, 14805.0)
  0.143404 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.042557491317130006, Inf, 15986.0)
20	(-0.04237618226649723, 0.00017393821320681256, 15949.0)
  0.143297 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.0421850028511839, Inf, 16848.0)
20	(-0.042001494853584107, 0.00017611106942373372, 16804.0)
  0.145417 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044742496326373074, Inf, 2.0)
20	(-0.04474173405657837, 7.29625102408861e-7, 2.0)
  0.187722 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04474097245421446, Inf, 2.0)
20	(-0.044740211518626574, 7.283490953040638e-7, 2.0)
  0.141278 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04473945124916076, Inf, 2.0)
20	(-0.044738691645163677, 7.270755866122941e-7, 2.0)
  0.144411 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044737932705982766, Inf, 2.0)
20	(-0.04473717443096619, 7.258045708850181e-7, 2.0)
  0.144196 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04473641681946284, Inf, 2.0)
20	(-0.044735659870822266, 7.245360426071808e-7, 2.0)
  0.144848 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04473490358439481, Inf, 2.0)
20	(-0.04473414795953149, 7.232699962901914e-7, 2.0)
  0.140962 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044733392995584056, Inf, 2.0)
20	(-0.04473263869190496, 7.220064264852073e-7, 2.0)
  0.140755 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04473188504784738, Inf, 2.0)
20	(-0.0447311320627652, 7.207453277366416e-7, 2.0)
  0.140944 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04473037973601308, Inf, 2.0)
20	(-0.04472962806694626, 7.194866945688804e-7, 2.0)
  0.140220 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044728253390876584, Inf, 22.0)
20	(-0.04472690086132244, 1.2946249905420974e-6, 22.0)
  0.140739 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04472373009152639, Inf, 39.0)
20	(-0.044720656987779564, 2.9415554543388813e-6, 39.0)
  0.140915 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044713775356280766, Inf, 150.0)
20	(-0.04470724827283103, 6.2477631513807764e-6, 150.0)
  0.143321 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04469427071710467, Inf, 358.0)
20	(-0.044682061407732704, 1.1687105410341173e-5, 347.0)
  0.141174 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04466094909379561, Inf, 659.0)
20	(-0.044641077167821695, 1.902273078116846e-5, 663.0)
  0.136989 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04460993191115597, Inf, 1287.0)
20	(-0.04458072447656041, 2.7960916673235717e-5, 1280.0)
  0.132896 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04453832823281901, Inf, 2421.0)
20	(-0.044498558954394266, 3.807499597180395e-5, 2391.0)
  0.133065 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04444348004142537, Inf, 4149.0)
20	(-0.044391472461146816, 4.979701735403522e-5, 4141.0)
  0.141535 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04432230190794509, Inf, 6890.0)
20	(-0.04425640768529825, 6.310157367661903e-5, 6859.0)
  0.314395 seconds (1.13 k allocations: 11.923 MiB, 54.62% gc time)
10	(-0.04417294020896406, Inf, 9699.0)
20	(-0.04409281798189799, 7.67386056930605e-5, 9659.0)
  0.134580 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04399669174074159, Inf, 12107.0)
20	(-0.04390401751597637, 8.877657639994945e-5, 12066.0)
  0.135770 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04379808000507563, Inf, 13987.0)
20	(-0.043695689766073874, 9.810353727215802e-5, 13913.0)
  0.132873 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044968504869533125, Inf, 2.0)
20	(-0.04496776242361163, 7.104964843797945e-7, 2.0)
  0.137316 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044967020696470024, Inf, 2.0)
20	(-0.04496627968733457, 7.091225332903057e-7, 2.0)
  0.137363 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044965539395432484, Inf, 2.0)
20	(-0.04496479981999196, 7.077515344522838e-7, 2.0)
  0.136929 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044964060960242046, Inf, 2.0)
20	(-0.04496332281541281, 7.06383480762029e-7, 2.0)
  0.136339 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04496258538473519, Inf, 2.0)
20	(-0.044961848667441046, 7.050183651024288e-7, 2.0)
  0.135159 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04496111266276322, Inf, 2.0)
20	(-0.04496037736993546, 7.036561803496007e-7, 2.0)
  0.136733 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04495964278819242, Inf, 2.0)
20	(-0.04495890891676969, 7.022969194990577e-7, 2.0)
  0.136662 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044958175754903774, Inf, 2.0)
20	(-0.04495744330183214, 7.009405754532193e-7, 2.0)
  0.135630 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044956711556793115, Inf, 2.0)
20	(-0.044955980519025995, 6.995871412272617e-7, 2.0)
  0.136098 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044954949359064446, Inf, 7.0)
20	(-0.04495392265138009, 9.825387149623499e-7, 7.0)
  0.143481 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04495189736078173, Inf, 29.0)
20	(-0.04494989405991017, 1.917126249732316e-6, 29.0)
  0.143345 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044945336917329354, Inf, 108.0)
20	(-0.04494086746507463, 4.277229835568766e-6, 108.0)
  0.148872 seconds (1.25 k allocations: 11.932 MiB, 4.03% gc time)
10	(-0.04493058197346925, Inf, 330.0)
20	(-0.044920653066667766, 9.502067714271671e-6, 330.0)
  0.136103 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04490191615910434, Inf, 764.0)
20	(-0.044884115498205056, 1.7036014458692033e-5, 750.0)
  0.135380 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04485467156918857, Inf, 1339.0)
20	(-0.044826976324422105, 2.650701541406773e-5, 1284.0)
  0.138166 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.0447863236448905, Inf, 2341.0)
20	(-0.04474809964413228, 3.658681051560311e-5, 2315.0)
  0.139249 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044694611030451685, Inf, 4222.0)
20	(-0.04464397359747082, 4.847338831284696e-5, 4190.0)
  0.138614 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04457622340581936, Inf, 6835.0)
20	(-0.044511550986214087, 6.191642356105398e-5, 6814.0)
  0.140459 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04442967365354533, Inf, 9378.0)
20	(-0.04435095714254198, 7.53736188634587e-5, 9368.0)
  0.138825 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044256691718612524, Inf, 11661.0)
20	(-0.04416559183479002, 8.724658668595498e-5, 11646.0)
  0.138446 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04406149165162268, Inf, 13501.0)
20	(-0.043960529919589035, 9.671029616552857e-5, 13434.0)
  0.135659 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04481815336799858, Inf, 2.0)
20	(-0.044817431344071214, 6.910527195548588e-7, 2.0)
  0.129559 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044816709907972166, Inf, 2.0)
20	(-0.044815989059193366, 6.899289313604393e-7, 2.0)
  0.137516 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044815268797227234, Inf, 2.0)
20	(-0.04481454912156663, 6.88807081804245e-7, 2.0)
  0.138640 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04481383003170485, Inf, 2.0)
20	(-0.04481311152713578, 6.876871673447968e-7, 2.0)
  0.137801 seconds (1.25 k allocations: 11.932 MiB, 1.57% gc time)
10	(-0.04481239360735362, Inf, 2.0)
20	(-0.04481167627185314, 6.865691844471885e-7, 2.0)
  0.129424 seconds (1.13 k allocations: 11.922 MiB)
10	(-0.044810959520129534, Inf, 2.0)
20	(-0.044810243351678485, 6.85453129510034e-7, 2.0)
  0.129120 seconds (1.13 k allocations: 11.922 MiB)
10	(-0.044809527765996136, Inf, 2.0)
20	(-0.04480881276257906, 6.843389990049328e-7, 2.0)
  0.129634 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044808098340924356, Inf, 2.0)
20	(-0.04480738450052954, 6.8322678936357e-7, 2.0)
  0.129960 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04480667124089261, Inf, 2.0)
20	(-0.04480595856151204, 6.821164970706939e-7, 2.0)
  0.129689 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.0448039798699814, Inf, 20.0)
20	(-0.04480206119712956, 1.8363984175546784e-6, 20.0)
  0.129103 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044798088435580204, Inf, 56.0)
20	(-0.04479435019260755, 3.5779701258558e-6, 56.0)
  0.131585 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04478702693278526, Inf, 143.0)
20	(-0.04478020886819209, 6.525836281446982e-6, 142.0)
  0.130500 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04476783337483107, Inf, 299.0)
20	(-0.04475633645757732, 1.1004400598070634e-5, 298.0)
  0.130818 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04473650033523201, Inf, 651.0)
20	(-0.04471796382696997, 1.7743074115557434e-5, 649.0)
  0.130865 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04468897883139499, Inf, 1207.0)
20	(-0.0446617471379284, 2.6067474511438026e-5, 1199.0)
  0.130695 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04462197819031586, Inf, 2343.0)
20	(-0.044584423465046076, 3.595183350064623e-5, 2311.0)
  0.130348 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044531480810833725, Inf, 4237.0)
20	(-0.04448122092144047, 4.811947633574315e-5, 4200.0)
  0.130240 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.0444133727178253, Inf, 6948.0)
20	(-0.0443485559478043, 6.206430760291117e-5, 6910.0)
  0.131164 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04426582689519002, Inf, 9796.0)
20	(-0.04418629176581599, 7.61694824010088e-5, 9768.0)
  0.129887 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.0440903256352258, Inf, 12427.0)
20	(-0.04399769207247592, 8.872966238650683e-5, 12391.0)
  0.130138 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04389136722286465, Inf, 14368.0)
20	(-0.04378849933416271, 9.855242586746056e-5, 14334.0)
  0.129935 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04464148445146234, Inf, 2.0)
20	(-0.044640648509612496, 8.002195310304967e-7, 2.0)
  0.129876 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.0446398132981281, Inf, 2.0)
20	(-0.04463897881632006, 7.988231580077852e-7, 2.0)
  0.130221 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04463814506350002, Inf, 2.0)
20	(-0.04463731203898035, 7.974294140841752e-7, 2.0)
  0.130546 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04463647974207405, Inf, 2.0)
20	(-0.04463564817209491, 7.960382939210487e-7, 2.0)
  0.131439 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044634817328357355, Inf, 2.0)
20	(-0.04463398721017653, 7.946497921663873e-7, 2.0)
  0.132413 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04463315781686829, Inf, 2.0)
20	(-0.04463232914774917, 7.932639034746993e-7, 2.0)
  0.131203 seconds (1.13 k allocations: 11.922 MiB)
10	(-0.04463150120213638, Inf, 2.0)
20	(-0.04463067397934789, 7.918806225933722e-7, 2.0)
  0.137526 seconds (1.13 k allocations: 11.922 MiB)
10	(-0.04462984747870232, Inf, 2.0)
20	(-0.04462902169951897, 7.904999441899702e-7, 2.0)
  0.142605 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04462819664111786, Inf, 2.0)
20	(-0.04462737230281972, 7.891218629717977e-7, 2.0)
  0.142203 seconds (1.13 k allocations: 11.922 MiB)
10	(-0.04462505193529776, Inf, 18.0)
20	(-0.04462280552459327, 2.1504515243284907e-6, 18.0)
  0.142215 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.044618512895741605, Inf, 57.0)
20	(-0.04461448773170049, 3.8532531267607995e-6, 57.0)
  0.133978 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04460675085660802, Inf, 139.0)
20	(-0.04459956102299732, 6.8828610301711e-6, 139.0)
  0.131403 seconds (1.13 k allocations: 11.922 MiB)
10	(-0.04458606908674168, Inf, 366.0)
20	(-0.04457354902824426, 1.1985808475689852e-5, 366.0)
  0.131845 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04455144114504943, Inf, 740.0)
20	(-0.04453082063901144, 1.9741405069668772e-5, 730.0)
  0.131894 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04449804645430065, Inf, 1424.0)
20	(-0.04446757668072422, 2.9172541356680534e-5, 1403.0)
  0.136770 seconds (1.13 k allocations: 11.922 MiB)
10	(-0.044422897677690074, Inf, 2656.0)
20	(-0.04438124364037832, 3.988393851900324e-5, 2649.0)
  0.140038 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.04432319313733679, Inf, 4468.0)
20	(-0.04426860153070437, 5.2277360970542764e-5, 4448.0)
  0.139833 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.044195477500831595, Inf, 7490.0)
20	(-0.04412604587097055, 6.64973641215221e-5, 7450.0)
  0.140417 seconds (1.13 k allocations: 11.922 MiB, 1.65% gc time)
10	(-0.044037961636219446, Inf, 10351.0)
20	(-0.04395363179551572, 8.077929721714024e-5, 10338.0)
  0.133562 seconds (1.25 k allocations: 11.932 MiB)
10	(-0.0438525146729659, Inf, 12655.0)
20	(-0.04375520256905728, 9.323268872729915e-5, 12607.0)
  0.132214 seconds (1.13 k allocations: 11.923 MiB)
10	(-0.04364413972280398, Inf, 14340.0)
20	(-0.043536931417231, 0.00010273551643963492, 14318.0)
  0.130919 seconds (1.13 k allocations: 11.922 MiB)





21×5 Array{Float64,2}:
 0.631647  0.653762  0.681115  0.644217  0.584255
 0.631218  0.653762  0.680672  0.644217  0.586466
 0.631647  0.653762  0.681115  0.644217  0.584255
 0.631647  0.652882  0.681115  0.644217  0.584255
 0.631218  0.652882  0.680672  0.644682  0.585139
 0.631218  0.654201  0.681115  0.644217  0.584255
 0.631218  0.653322  0.68023   0.645146  0.585139
 0.629503  0.653762  0.681115  0.644217  0.585139
 0.629931  0.653322  0.681115  0.644217  0.585582
 0.628216  0.653762  0.681115  0.644217  0.585139
 0.626501  0.654641  0.682441  0.644682  0.586908
 0.622213  0.654201  0.681557  0.642824  0.590004
 0.616209  0.656841  0.679345  0.640966  0.592658
 0.607633  0.661241  0.679345  0.63725   0.5931
 0.596484  0.66696   0.678903  0.635857  0.597966
 0.587479  0.671359  0.671827  0.627497  0.598408
 0.58705   0.67004   0.6705    0.619136  0.59885
 0.580617  0.663     0.67448   0.60288   0.593543
 0.577187  0.653322  0.669173  0.601022  0.589562
 0.577187  0.652442  0.670057  0.599628  0.584255
 0.580189  0.644083  0.659     0.588946  0.58337

The number of unpenalized variables are automatically detected from the penalty structure.

Simple lasso penalty could be used by replacing line 5 above with

penalties = [NormL1(l; unpen=2) for l in lambdas]

For lasso penalty, the user should provide the number of unpenalized variables at the last columns as a keyword argument.

The resulting c-index for each fold is listed as:

score 
21×5 Array{Float64,2}:
 0.631647  0.653762  0.681115  0.644217  0.584255
 0.631218  0.653762  0.680672  0.644217  0.586466
 0.631647  0.653762  0.681115  0.644217  0.584255
 0.631647  0.652882  0.681115  0.644217  0.584255
 0.631218  0.652882  0.680672  0.644682  0.585139
 0.631218  0.654201  0.681115  0.644217  0.584255
 0.631218  0.653322  0.68023   0.645146  0.585139
 0.629503  0.653762  0.681115  0.644217  0.585139
 0.629931  0.653322  0.681115  0.644217  0.585582
 0.628216  0.653762  0.681115  0.644217  0.585139
 0.626501  0.654641  0.682441  0.644682  0.586908
 0.622213  0.654201  0.681557  0.642824  0.590004
 0.616209  0.656841  0.679345  0.640966  0.592658
 0.607633  0.661241  0.679345  0.63725   0.5931
 0.596484  0.66696   0.678903  0.635857  0.597966
 0.587479  0.671359  0.671827  0.627497  0.598408
 0.58705   0.67004   0.6705    0.619136  0.59885
 0.580617  0.663     0.67448   0.60288   0.593543
 0.577187  0.653322  0.669173  0.601022  0.589562
 0.577187  0.652442  0.670057  0.599628  0.584255
 0.580189  0.644083  0.659     0.588946  0.58337

We select the penalty parameter that maximizes the mean c-index as following:

lambda_idx = argmax(mean(score; dims=2)[:])
lambda = lambdas[lambda_idx]
7.943282347242822e-5

Now we fit the model with the selected value of lambda.

p = GroupNormL2(lambda, somatic_grpidx)
U = ParProx.COXUpdate(; maxiter=20000, step=20, tol=1e-6, verbose=true)
V = ParProx.COXVariables{Float64, Array}(somatic_predictors, survival_event, survival_time, p; eval_obj=true)
@time ParProx.fit!(U, V)
20	(-0.0585762628073384, Inf, 2.0)
40	(-0.05857394142183881, 2.1929365618731874e-6, 2.0)
60	(-0.05857162508063111, 2.1881761732719335e-6, 2.0)
80	(-0.05856931377169719, 2.1834271066131557e-6, 2.0)
100	(-0.05856700748305059, 2.1786893321792244e-6, 2.0)
120	(-0.05856470620273639, 2.1739628203303116e-6, 2.0)
140	(-0.05856240991883119, 2.1692475414650616e-6, 2.0)
160	(-0.05856011861944299, 2.1645434660664837e-6, 2.0)
180	(-0.05855783229271107, 2.159850564774059e-6, 2.0)
200	(-0.05855555092680593, 2.155168808232982e-6, 2.0)
220	(-0.05855327450992917, 2.150498167238373e-6, 2.0)
240	(-0.058551003030313443, 2.1458386126172936e-6, 2.0)
260	(-0.05854873647622236, 2.141190115281191e-6, 2.0)
280	(-0.05854647483595033, 2.136552646284898e-6, 2.0)
300	(-0.058544218097822565, 2.1319261767086455e-6, 2.0)
320	(-0.05854196625019495, 2.1273106777170634e-6, 2.0)
340	(-0.05853971928145392, 2.1227061206116253e-6, 2.0)
360	(-0.05853747718001642, 2.11811247672577e-6, 2.0)
380	(-0.05853523993432983, 2.1135297174707935e-6, 2.0)
400	(-0.05853300753287181, 2.1089578143882923e-6, 2.0)
420	(-0.05853077996415027, 2.104396739045287e-6, 2.0)
440	(-0.058528557216703275, 2.0998464631325525e-6, 2.0)
460	(-0.05852633927909889, 2.0953069584384028e-6, 2.0)
480	(-0.058524126139935226, 2.0907781967503654e-6, 2.0)
500	(-0.05852191778784023, 2.086260150012512e-6, 2.0)
520	(-0.058519714211471646, 2.081752790240244e-6, 2.0)
540	(-0.05851751539951696, 2.077256089480966e-6, 2.0)
560	(-0.05851532134069325, 2.0727700199320815e-6, 2.0)
580	(-0.058513132023747125, 2.0682945538295627e-6, 2.0)
600	(-0.05851094743745469, 2.063829663474169e-6, 2.0)
620	(-0.058508767570621414, 2.0593753212642326e-6, 2.0)
640	(-0.05850659241208199, 2.054931499734994e-6, 2.0)
660	(-0.05850442195070035, 2.0504981714078294e-6, 2.0)
680	(-0.05850225617536961, 2.0460753088689215e-6, 2.0)
700	(-0.05850009507501179, 2.041662884939705e-6, 2.0)
720	(-0.058497938638577926, 2.0372608723622077e-6, 2.0)
740	(-0.058495786855047915, 2.0328692440088306e-6, 2.0)
760	(-0.05849363971343045, 2.0284879728233505e-6, 2.0)
780	(-0.058491497202762886, 2.0241170318537024e-6, 2.0)
800	(-0.05848935931211123, 2.019756394192984e-6, 2.0)
820	(-0.05848722603056995, 2.015406033077792e-6, 2.0)
840	(-0.058485097347262094, 2.0110659216587833e-6, 2.0)
860	(-0.05848297325133895, 2.0067360333808967e-6, 2.0)
880	(-0.058480853731980184, 2.0024163415834723e-6, 2.0)
900	(-0.058478738778393574, 1.998106819841141e-6, 2.0)
920	(-0.058476628379815175, 1.9938074415770527e-6, 2.0)
940	(-0.0584745225255089, 1.989518180606989e-6, 2.0)
960	(-0.05847242120476677, 1.9852390105165913e-6, 2.0)
980	(-0.058470324406908615, 1.9809699051595824e-6, 2.0)
1000	(-0.058468232121282125, 1.976710838356221e-6, 2.0)
1020	(-0.05846614433726264, 1.972461784116189e-6, 2.0)
1040	(-0.05846406104425319, 1.968222716409152e-6, 2.0)
1060	(-0.05846198223168438, 1.9639936093155407e-6, 2.0)
1080	(-0.05845990788901428, 1.959774437033111e-6, 2.0)
1100	(-0.05845783800572835, 1.9555651737851684e-6, 2.0)
1120	(-0.05845577257133943, 1.951365793873016e-6, 2.0)
1140	(-0.05845371157538756, 1.9471762716956264e-6, 2.0)
1160	(-0.058451655007439984, 1.942996581703753e-6, 2.0)
1180	(-0.05844960285709099, 1.9388266984589377e-6, 2.0)
1200	(-0.058447555113961956, 1.9346665965089523e-6, 2.0)
1220	(-0.05844551176770112, 1.9305162505975892e-6, 2.0)
1240	(-0.058443472807983655, 1.9263756353958762e-6, 2.0)
1260	(-0.05844143822451148, 1.9222447257839776e-6, 2.0)
1280	(-0.05843940800701321, 1.9181234966414157e-6, 2.0)
1300	(-0.05843738214524411, 1.9140119229257393e-6, 2.0)
1320	(-0.058435360628986, 1.909909979679087e-6, 2.0)
1340	(-0.05843334344804721, 1.9058176419691852e-6, 2.0)
1360	(-0.058431330592262395, 1.9017348850466926e-6, 2.0)
1380	(-0.05842932205149261, 1.8976616841026369e-6, 2.0)
1400	(-0.05842731781562511, 1.893598014491317e-6, 2.0)
1420	(-0.0584253178745734, 1.8895438515467426e-6, 2.0)
1440	(-0.058423322218277, 1.8854991707989807e-6, 2.0)
1460	(-0.05842133083670152, 1.8814639477315916e-6, 2.0)
1480	(-0.05841934371983849, 1.8774381579651951e-6, 2.0)
1500	(-0.05841736085770537, 1.8734217771329156e-6, 2.0)
1520	(-0.05841538224034536, 1.8694147810114995e-6, 2.0)
1540	(-0.058413407857827435, 1.8654171453836454e-6, 2.0)
1560	(-0.05841143770024621, 1.8614288461429026e-6, 2.0)
1580	(-0.05840947175772189, 1.857449859228115e-6, 2.0)
1600	(-0.058407510020400226, 1.8534801606103105e-6, 2.0)
1620	(-0.05840555247845238, 1.849519726404157e-6, 2.0)
1640	(-0.05840359912207484, 1.8455685328024055e-6, 2.0)
1660	(-0.058401649941489484, 1.8416265559119931e-6, 2.0)
1680	(-0.0583997049269433, 1.8376937721474062e-6, 2.0)
1700	(-0.058397764068708544, 1.8337701577258708e-6, 2.0)
1720	(-0.05839582735708247, 1.8298556891590562e-6, 2.0)
1740	(-0.05839389478238738, 1.8259503428924966e-6, 2.0)
1760	(-0.05839196633497051, 1.8220540954629411e-6, 2.0)
1780	(-0.058390042005203924, 1.8181669235508018e-6, 2.0)
1800	(-0.058388121783484535, 1.8142888037638082e-6, 2.0)
1820	(-0.05838620566023396, 1.8104197128861413e-6, 2.0)
1840	(-0.058384293625898455, 1.8065596277473143e-6, 2.0)
1860	(-0.05838238567094889, 1.802708525195951e-6, 2.0)
1880	(-0.058380481785880636, 1.7988663821915741e-6, 2.0)
1900	(-0.05837858196121349, 1.7950331757718282e-6, 2.0)
1920	(-0.058376686187491665, 1.7912088829672518e-6, 2.0)
1940	(-0.05837479445528365, 1.7873934809520723e-6, 2.0)
1960	(-0.05837290675518219, 1.783586946919642e-6, 2.0)
1980	(-0.058371023077804195, 1.779789258134888e-6, 2.0)
2000	(-0.05836914341379068, 1.7760003919343191e-6, 2.0)
2020	(-0.05836726775380665, 1.7722203257588055e-6, 2.0)
2040	(-0.058365396088541126, 1.768449037015904e-6, 2.0)
2060	(-0.05836352840870704, 1.7646865032240956e-6, 2.0)
2080	(-0.05836166470504107, 1.7609327020455697e-6, 2.0)
2100	(-0.058359804968303744, 1.7571876110502042e-6, 2.0)
2120	(-0.05835794918927923, 1.753451208010597e-6, 2.0)
2140	(-0.05835609735877533, 1.749723470692269e-6, 2.0)
2160	(-0.05835424946762344, 1.7460043769126739e-6, 2.0)
2180	(-0.058352405506678404, 1.7422939046002064e-6, 2.0)
2200	(-0.05835056546681851, 1.738592031728643e-6, 2.0)
2220	(-0.05834872933894541, 1.7348987363040316e-6, 2.0)
2240	(-0.05834689711398406, 1.7312139964171432e-6, 2.0)
2260	(-0.05834506878288263, 1.7275377902369205e-6, 2.0)
2280	(-0.05834324433661244, 1.723870095971141e-6, 2.0)
2300	(-0.058341423766167945, 1.72021089188609e-6, 2.0)
2320	(-0.05833960706256659, 1.7165601563327858e-6, 2.0)
2340	(-0.05833779421684883, 1.712917867687978e-6, 2.0)
2360	(-0.05833598522007797, 1.709284004439381e-6, 2.0)
2380	(-0.05833418006334021, 1.7056585450676628e-6, 2.0)
2400	(-0.05833237873774447, 1.7020414681906869e-6, 2.0)
2420	(-0.05833058123442242, 1.6984327524127188e-6, 2.0)
2440	(-0.05832878754452836, 1.6948323764489992e-6, 2.0)
2460	(-0.05832699765923916, 1.6912403190667399e-6, 2.0)
2480	(-0.05832521156975422, 1.6876565590785683e-6, 2.0)
2500	(-0.0583234292672954, 1.6840810753425308e-6, 2.0)
2520	(-0.05832165074310692, 1.6805138468342162e-6, 2.0)
2540	(-0.05831987598845537, 1.6769548525090726e-6, 2.0)
2560	(-0.05831810499462957, 1.6734040714663208e-6, 2.0)
2580	(-0.058316337752940574, 1.6698614827653755e-6, 2.0)
2600	(-0.058314574254721516, 1.6663270656553253e-6, 2.0)
2620	(-0.05831281449132769, 1.6628007992798921e-6, 2.0)
2640	(-0.05831105845413634, 1.6592826629987026e-6, 2.0)
2660	(-0.058309306134546705, 1.6557726361053602e-6, 2.0)
2680	(-0.05830755752397986, 1.6522706980700402e-6, 2.0)
2700	(-0.05830581261387878, 1.6487768282903398e-6, 2.0)
2720	(-0.05830407139570816, 1.6452910063207645e-6, 2.0)
2740	(-0.05830233386095442, 1.6418132117350396e-6, 2.0)
2760	(-0.05830060000112562, 1.6383434241588964e-6, 2.0)
2780	(-0.0582988698077514, 1.6348816233159703e-6, 2.0)
2800	(-0.058297143272382945, 1.6314277889032268e-6, 2.0)
2820	(-0.0582954203865929, 1.6279819007614374e-6, 2.0)
2840	(-0.05829370114197529, 1.6245439387506048e-6, 2.0)
2860	(-0.05829198553014551, 1.6211138827827489e-6, 2.0)
2880	(-0.05829027354274022, 1.6176917128415783e-6, 2.0)
2900	(-0.05828856517141734, 1.614277408923483e-6, 2.0)
2920	(-0.0582868604078559, 1.6108709511752264e-6, 2.0)
2940	(-0.05828515924375609, 1.6074723196775778e-6, 2.0)
2960	(-0.0582834616708391, 1.6040814946747973e-6, 2.0)
2980	(-0.058281767680847155, 1.6006984563844955e-6, 2.0)
3000	(-0.05828007726554337, 1.5973231851353244e-6, 2.0)
3020	(-0.05827839041671177, 1.5939556612686307e-6, 2.0)
3040	(-0.05827670712615712, 1.5905958652499209e-6, 2.0)
3060	(-0.05827502738570501, 1.5872437775115032e-6, 2.0)
3080	(-0.05827335118720174, 1.583899378537725e-6, 2.0)
3100	(-0.05827167852251414, 1.5805626490288973e-6, 2.0)
3120	(-0.05827000938352973, 1.5772335695144432e-6, 2.0)
3140	(-0.058268343762156526, 1.57391212070697e-6, 2.0)
3160	(-0.058266681650322956, 1.5705982833908037e-6, 2.0)
3180	(-0.05826502303997793, 1.567292038303969e-6, 2.0)
3200	(-0.05826336792309066, 1.5639933663348955e-6, 2.0)
3220	(-0.05826171629165068, 1.5607022483716135e-6, 2.0)
3240	(-0.05826006813766773, 1.5574186653869951e-6, 2.0)
3260	(-0.05825842345317174, 1.5541425983862993e-6, 2.0)
3280	(-0.058256782230212835, 1.5508740283678351e-6, 2.0)
3300	(-0.05825514446086109, 1.5476129365590108e-6, 2.0)
3320	(-0.058253510137206664, 1.544359304049148e-6, 2.0)
3340	(-0.05825187925135967, 1.5411131120779902e-6, 2.0)
3360	(-0.05825025179545011, 1.5378743419111221e-6, 2.0)
3380	(-0.058248627761627834, 1.5346429748858693e-6, 2.0)
3400	(-0.05824700714206248, 1.5314189923654025e-6, 2.0)
3420	(-0.058245389928943445, 1.5282023757715238e-6, 2.0)
3440	(-0.05824377611447978, 1.5249931065912264e-6, 2.0)
3460	(-0.05824216569090014, 1.521791166376696e-6, 2.0)
3480	(-0.058240558650452814, 1.518596536666628e-6, 2.0)
3500	(-0.05823895498540557, 1.5154091991108132e-6, 2.0)
3520	(-0.058237354688045626, 1.5122291354176845e-6, 2.0)
3540	(-0.05823575775067963, 1.5090563272887467e-6, 2.0)
3560	(-0.058234164165633574, 1.5058907565234918e-6, 2.0)
3580	(-0.05823257392525277, 1.5027324049407167e-6, 2.0)
3600	(-0.05823098702190175, 1.499581254457209e-6, 2.0)
3620	(-0.05822940344796427, 1.4964372869631651e-6, 2.0)
3640	(-0.05822782319584318, 1.4933004844992328e-6, 2.0)
3660	(-0.058226246257960475, 1.4901708290466856e-6, 2.0)
3680	(-0.05822467262675713, 1.487048302737254e-6, 2.0)
3700	(-0.05822310229469316, 1.4839328876564116e-6, 2.0)
3720	(-0.05822153525424742, 1.480824566059762e-6, 2.0)
3740	(-0.058219971497917744, 1.4777233200976434e-6, 2.0)
3760	(-0.058218411018220714, 1.4746291321167555e-6, 2.0)
3780	(-0.05821685380769175, 1.471541984384764e-6, 2.0)
3800	(-0.05821529985888492, 1.4684618593591437e-6, 2.0)
3820	(-0.058213749164373, 1.465388739411781e-6, 2.0)
3840	(-0.05821220171674737, 1.462322607058475e-6, 2.0)
3860	(-0.05821065750861799, 1.4592634447818966e-6, 2.0)
3880	(-0.05820911653261331, 1.4562112351889622e-6, 2.0)
3900	(-0.05820757878138029, 1.4531659608731337e-6, 2.0)
3920	(-0.05820604424758422, 1.4501276045521235e-6, 2.0)
3940	(-0.05820451292390882, 1.4470961489039636e-6, 2.0)
3960	(-0.05820298480305609, 1.4440715766915955e-6, 2.0)
3980	(-0.05820145987774628, 1.4410538707694295e-6, 2.0)
4000	(-0.05819993814071791, 1.4380430139194144e-6, 2.0)
4020	(-0.05819841958472757, 1.4350389891264437e-6, 2.0)
4040	(-0.05819690420255001, 1.432041779316069e-6, 2.0)
4060	(-0.058195391986978026, 1.4290513674856437e-6, 2.0)
4080	(-0.0581938829308224, 1.4260677367043266e-6, 2.0)
4100	(-0.05819237702691191, 1.4230908700409537e-6, 2.0)
4120	(-0.05819087426809323, 1.4201207506296117e-6, 2.0)
4140	(-0.05818937464723088, 1.4171573616958689e-6, 2.0)
4160	(-0.05818787815720722, 1.4142006864321883e-6, 2.0)
4180	(-0.058186384790922335, 1.4112507081421904e-6, 2.0)
4200	(-0.058184894541294024, 1.4083074101685239e-6, 2.0)
4220	(-0.05818340740125776, 1.4053707758600805e-6, 2.0)
4240	(-0.05818192336376668, 1.4024407885982258e-6, 2.0)
4260	(-0.0581804424217914, 1.3995174319148332e-6, 2.0)
4280	(-0.058178964568320085, 1.3966006892955651e-6, 2.0)
4300	(-0.058177489796358395, 1.3936905442716777e-6, 2.0)
4320	(-0.05817601809892941, 1.3907869804396928e-6, 2.0)
4340	(-0.058174549469073536, 1.387889981487632e-6, 2.0)
4360	(-0.05817308389984854, 1.384999531070425e-6, 2.0)
4380	(-0.05817162138432948, 1.3821156129213878e-6, 2.0)
4400	(-0.058170161915608615, 1.3792382108194387e-6, 2.0)
4420	(-0.05816870548679539, 1.3763673086087692e-6, 2.0)
4440	(-0.058167252091016426, 1.3735028901070437e-6, 2.0)
4460	(-0.05816580172141537, 1.3706449392890088e-6, 2.0)
4480	(-0.05816435437115296, 1.367793440056983e-6, 2.0)
4500	(-0.05816291003340691, 1.364948376431026e-6, 2.0)
4520	(-0.05816146870137188, 1.362109732457135e-6, 2.0)
4540	(-0.05816003036825942, 1.3592774922334752e-6, 2.0)
4560	(-0.058158595027298, 1.3564516398251355e-6, 2.0)
4580	(-0.0581571626717328, 1.3536321595001983e-6, 2.0)
4600	(-0.05815573329482585, 1.3508190353953092e-6, 2.0)
4620	(-0.058154306889855845, 1.3480122518238815e-6, 2.0)
4640	(-0.05815288345011816, 1.345211793066256e-6, 2.0)
4660	(-0.058151462968924816, 1.3424176434615087e-6, 2.0)
4680	(-0.058150045439604406, 1.3396297874008948e-6, 2.0)
4700	(-0.058148630855502065, 1.3368482093081763e-6, 2.0)
4720	(-0.05814721920997938, 1.3340728936920857e-6, 2.0)
4740	(-0.05814581049641443, 1.331303825028289e-6, 2.0)
4760	(-0.05814440470820166, 1.3285409878970987e-6, 2.0)
4780	(-0.058143001838751894, 1.3257843668851078e-6, 2.0)
4800	(-0.05814160188149224, 1.3230339466507714e-6, 2.0)
4820	(-0.058140204829866114, 1.3202897118457136e-6, 2.0)
4840	(-0.05813881067733311, 1.3175516472262094e-6, 2.0)
4860	(-0.05813741941736901, 1.3148197375613796e-6, 2.0)
4880	(-0.05813603104346573, 1.312093967646307e-6, 2.0)
4900	(-0.05813464554913131, 1.3093743223020377e-6, 2.0)
4920	(-0.058133262927889756, 1.3066607864936207e-6, 2.0)
4940	(-0.05813188317328114, 1.303953345094032e-6, 2.0)
4960	(-0.058130506278861474, 1.3012519830940233e-6, 2.0)
4980	(-0.058129132238202694, 1.2985566854906411e-6, 2.0)
5000	(-0.058127761044892576, 1.2958674373724794e-6, 2.0)
5020	(-0.05812639269253474, 1.2931842238213136e-6, 2.0)
5040	(-0.05812502717474859, 1.2905070299580084e-6, 2.0)
5060	(-0.058123664485169285, 1.287835840975305e-6, 2.0)
5080	(-0.058122304617447655, 1.2851706420853619e-6, 2.0)
5100	(-0.0581209475652502, 1.282511418545987e-6, 2.0)
5120	(-0.058119593322259036, 1.2798581556475236e-6, 2.0)
5140	(-0.05811824188217183, 1.2772108387456397e-6, 2.0)
5160	(-0.058116893238701804, 1.2745694531891944e-6, 2.0)
5180	(-0.058115547385577636, 1.271933984425163e-6, 2.0)
5200	(-0.05811420431654349, 1.269304417867484e-6, 2.0)
5220	(-0.05811286402535887, 1.2666807390675604e-6, 2.0)
5240	(-0.05811152650579869, 1.2640629335109716e-6, 2.0)
5260	(-0.05811019175165317, 1.261450986794534e-6, 2.0)
5280	(-0.0581088597567278, 1.2588448845213777e-6, 2.0)
5300	(-0.0581075305148433, 1.25624461235341e-6, 2.0)
5320	(-0.058106204019835586, 1.2536501559785275e-6, 2.0)
5340	(-0.05810488026555572, 1.2510615011368494e-6, 2.0)
5360	(-0.05810355924586992, 1.2484786335485808e-6, 2.0)
5380	(-0.05810224095465939, 1.2459015390976347e-6, 2.0)
5400	(-0.05810092538582047, 1.2433302035365301e-6, 2.0)
5420	(-0.058099612533264365, 1.240764612853633e-6, 2.0)
5440	(-0.058098302390917324, 1.2382047528862427e-6, 2.0)
5460	(-0.05809699495272047, 1.2356506096222556e-6, 2.0)
5480	(-0.05809569021262981, 1.233102169049336e-6, 2.0)
5500	(-0.05809438816461611, 1.2305594172532838e-6, 2.0)
5520	(-0.058093088802665026, 1.2280223402213006e-6, 2.0)
5540	(-0.05809179212077687, 1.2254909241436528e-6, 2.0)
5560	(-0.0580904981129667, 1.222965155131684e-6, 2.0)
5580	(-0.05808920677326429, 1.2204450193292992e-6, 2.0)
5600	(-0.05808791809571392, 1.2179305030638e-6, 2.0)
5620	(-0.05808663207437457, 1.2154215924917552e-6, 2.0)
5640	(-0.05808534870331968, 1.2129182739924803e-6, 2.0)
5660	(-0.0580840679766373, 1.2104205338139086e-6, 2.0)
5680	(-0.05808278988842987, 1.2079283583939314e-6, 2.0)
5700	(-0.05808151443281426, 1.205441734130872e-6, 2.0)
5720	(-0.05808024160392177, 1.2029606474425068e-6, 2.0)
5740	(-0.058078971395898044, 1.2004850848250894e-6, 2.0)
5760	(-0.05807770380290302, 1.1980150327943292e-6, 2.0)
5780	(-0.05807643881911093, 1.1955504779050673e-6, 2.0)
5800	(-0.058075176438710234, 1.1930914067447175e-6, 2.0)
5820	(-0.058073916655903585, 1.1906378059398278e-6, 2.0)
5840	(-0.0580726594649078, 1.188189662156081e-6, 2.0)
5860	(-0.05807140485995383, 1.1857469620720614e-6, 2.0)
5880	(-0.058070152835286694, 1.1833096924448386e-6, 2.0)
5900	(-0.05806890338516548, 1.1808778400115974e-6, 2.0)
5920	(-0.05806765650386324, 1.178451391627358e-6, 2.0)
5940	(-0.05806641218566703, 1.1760303340879074e-6, 2.0)
5960	(-0.05806517042487784, 1.1736146542740817e-6, 2.0)
5980	(-0.05806393121581054, 1.171204339112415e-6, 2.0)
6000	(-0.05806269455279385, 1.168799375555468e-6, 2.0)
6020	(-0.058061460430170346, 1.1663997505424807e-6, 2.0)
6040	(-0.05806022884229634, 1.164005451137092e-6, 2.0)
6060	(-0.058058999783541954, 1.161616464337158e-6, 2.0)
6080	(-0.05805777324829095, 1.1592327772780511e-6, 2.0)
6100	(-0.05805654923094081, 1.1568543770490372e-6, 2.0)
6120	(-0.0580553277259026, 1.1544812508375528e-6, 2.0)
6140	(-0.05805410872760106, 1.1521133857718127e-6, 2.0)
6160	(-0.05805289223047443, 1.1497507691372278e-6, 2.0)
6180	(-0.058051678228974515, 1.1473933881468723e-6, 2.0)
6200	(-0.05805046671756656, 1.1450412301382291e-6, 2.0)
6220	(-0.05804925769072933, 1.1426942823698869e-6, 2.0)
6240	(-0.05804805114295496, 1.1403525322576358e-6, 2.0)
6260	(-0.058046847068748984, 1.1380159671646068e-6, 2.0)
6280	(-0.05804564546263027, 1.135684574545553e-6, 2.0)
6300	(-0.05804444631913101, 1.133358341822244e-6, 2.0)
6320	(-0.05804324963279666, 1.1310372565277478e-6, 2.0)
6340	(-0.058042055398185945, 1.1287213061359182e-6, 2.0)
6360	(-0.05804086360987073, 1.1264104782778169e-6, 2.0)
6380	(-0.05803967426243609, 1.1241047604990602e-6, 2.0)
6400	(-0.05803848735048024, 1.1218041404368924e-6, 2.0)
6420	(-0.058037302868614485, 1.1195086057414865e-6, 2.0)
6440	(-0.058036120811463185, 1.117218144115297e-6, 2.0)
6460	(-0.05803494117366371, 1.1149327433065003e-6, 2.0)
6480	(-0.05803376394986647, 1.1126523910171814e-6, 2.0)
6500	(-0.05803258913473479, 1.1103770751000811e-6, 2.0)
6520	(-0.058031416722944935, 1.1081067833356183e-6, 2.0)
6540	(-0.058030246709186085, 1.1058415035761702e-6, 2.0)
6560	(-0.058029079088160206, 1.10358122376575e-6, 2.0)
6580	(-0.058027913854582135, 1.1013259317760498e-6, 2.0)
6600	(-0.05802675100317949, 1.09907561556384e-6, 2.0)
6620	(-0.058025590528692675, 1.0968302630922713e-6, 2.0)
6640	(-0.058024432425874725, 1.0945898624423675e-6, 2.0)
6660	(-0.05802327668949141, 1.0923544016293916e-6, 2.0)
6680	(-0.05802212331432117, 1.0901238687012233e-6, 2.0)
6700	(-0.05802097229515502, 1.0878982518170585e-6, 2.0)
6720	(-0.0580198236267966, 1.085677539090011e-6, 2.0)
6740	(-0.058018677304062044, 1.083461718724838e-6, 2.0)
6760	(-0.058017533321780036, 1.0812507789130078e-6, 2.0)
6780	(-0.05801639167479176, 1.07904470787205e-6, 2.0)
6800	(-0.05801525235795082, 1.076843493891466e-6, 2.0)
6820	(-0.058014115366123255, 1.0746471252605867e-6, 2.0)
6840	(-0.05801298069418743, 1.07245559036695e-6, 2.0)
6860	(-0.05801184833703416, 1.0702688774667565e-6, 2.0)
6880	(-0.05801071828956651, 1.0680869750324668e-6, 2.0)
6900	(-0.05800959054669983, 1.0659098714773496e-6, 2.0)
6920	(-0.058008465103361745, 1.0637375552341812e-6, 2.0)
6940	(-0.05800734195449208, 1.0615700148077162e-6, 2.0)
6960	(-0.058006221095042866, 1.0594072386959856e-6, 2.0)
6980	(-0.05800510251997828, 1.0572492154558828e-6, 2.0)
7000	(-0.05800398622427463, 1.0550959336506965e-6, 2.0)
7020	(-0.05800287220292026, 1.0529473819353714e-6, 2.0)
7040	(-0.05800176045091565, 1.0508035488859883e-6, 2.0)
7060	(-0.05800065096327328, 1.0486644231834032e-6, 2.0)
7080	(-0.0579995437350176, 1.0465299935476632e-6, 2.0)
7100	(-0.057998438761185045, 1.0444002486920966e-6, 2.0)
7120	(-0.05799733603682395, 1.0422751773889002e-6, 2.0)
7140	(-0.057996235556994596, 1.0401547683904371e-6, 2.0)
7160	(-0.057995137316769106, 1.0380390105341732e-6, 2.0)
7180	(-0.05799404131123143, 1.035927892670536e-6, 2.0)
7200	(-0.057992947535477346, 1.0338214036629132e-6, 2.0)
7220	(-0.05799185598461439, 1.0317195324138892e-6, 2.0)
7240	(-0.057990766653761835, 1.0296222678783626e-6, 2.0)
7260	(-0.057989679538050676, 1.0275295989979606e-6, 2.0)
7280	(-0.05798859463262359, 1.0254415147666262e-6, 2.0)
7300	(-0.05798751193263491, 1.0233580041978255e-6, 2.0)
7320	(-0.057986431433250545, 1.0212790563901354e-6, 2.0)
7340	(-0.05798535312964805, 1.0192046603501608e-6, 2.0)
7360	(-0.0579842770170165, 1.017134805241763e-6, 2.0)
7380	(-0.0579832030905565, 1.0150694801827434e-6, 2.0)
7400	(-0.057982131345480165, 1.013008674323548e-6, 2.0)
7420	(-0.05798106177701108, 1.010952376866943e-6, 2.0)
7440	(-0.05797999438038422, 1.0089005770745756e-6, 2.0)
7460	(-0.05797892915084602, 1.0068532641292417e-6, 2.0)
7480	(-0.057977866083654295, 1.004810427331647e-6, 2.0)
7500	(-0.05797680517407814, 1.0027720560282625e-6, 2.0)
7520	(-0.05797574641739803, 1.000738139506386e-6, 2.0)
7540	(-0.057974689808905695, 9.987086671449928e-7, 2.0)
 56.988175 seconds (386.71 k allocations: 4.351 GiB, 0.36% gc time)

The tuned value selects the most sparse model possible.

We obtain the indexes of variables with nonzero coefficients:

nonzero_idxs = (1:length(V.β))[V.β .!= 0];

The selected variables, along with the coefficients can be printed as below:

for (variable_name, value) in zip(somatic_variable_names[nonzero_idxs], V.β[nonzero_idxs])
    println(variable_name, "\t", value)
end
age_at_diagnosis								0.12933261107256303
gender								0.06219181385721187

(optional) Analysis using GPU

For using GPU, as stated before, the package CUDA.jl is required.

Cross validation on GPU is performed by the following code.

using CUDA, Adapt

The following identifies the GPU we are running the code on.

CUDA.device()
CuDevice(0): TITAN V

It takes only a minor modification to run the cross validation on GPU.

Random.seed!(222)
T = Float64
A = CuArray
U = ParProx.COXUpdate(; maxiter=10000, step=10, tol=5e-4, verbose=true)
lambdas = 10 .^ (range(-5, stop=-7, length=21)) # 21 values equally log-spaced in 10^-5 .. 10^-7
penalties = [GroupNormL2{T,A}(l, somatic_grpidx) for l in lambdas]

score = ParProx.cross_validate(U, somatic_predictors, 
    survival_event, survival_time, penalties, 5; T=T, A=A)
10	(-0.0446867720206526, Inf, 585.0)
20	(-0.044652587072046626, 3.27237485734705e-5, 587.0)
 13.583053 seconds (24.76 M allocations: 1.253 GiB, 2.51% gc time)
10	(-0.04460053748032986, Inf, 1143.0)
20	(-0.04455428048303685, 4.428395743265993e-5, 1136.0)
  0.029868 seconds (13.49 k allocations: 20.141 MiB)
10	(-0.04448706724113553, Inf, 1996.0)
20	(-0.044426277304298635, 5.820414342101704e-5, 1955.0)
  0.037921 seconds (13.74 k allocations: 20.154 MiB)
10	(-0.04433950339127302, Inf, 3622.0)
20	(-0.044259512460611265, 7.660062437283778e-5, 3559.0)
  0.031738 seconds (13.63 k allocations: 20.153 MiB)
10	(-0.04414972646035248, Inf, 6158.0)
20	(-0.044046930698031714, 9.845894786744629e-5, 6158.0)
  0.037705 seconds (13.62 k allocations: 20.147 MiB)
10	(-0.04391194913313793, Inf, 8986.0)
20	(-0.043784281952638754, 0.00012231184422546124, 8955.0)
  0.041364 seconds (13.75 k allocations: 20.155 MiB)
10	(-0.04362685454875632, Inf, 11671.0)
20	(-0.04347737421797781, 0.00014325210538516518, 11605.0)
  0.036728 seconds (13.62 k allocations: 20.240 MiB)
10	(-0.043303318146535694, Inf, 13472.0)
20	(-0.04313757265878522, 0.00015889130263807482, 13344.0)
  0.039579 seconds (13.62 k allocations: 20.142 MiB)
10	(-0.04295296890396472, Inf, 14867.0)
20	(-0.042776668680762506, 0.00016906805502778642, 14805.0)
  0.036892 seconds (13.74 k allocations: 20.153 MiB)
10	(-0.04258647470587354, Inf, 16007.0)
20	(-0.04240433486489804, 0.00017473050992166945, 15949.0)
  0.034771 seconds (13.62 k allocations: 20.142 MiB)
10	(-0.04221235451855108, Inf, 16854.0)
20	(-0.04202809101073294, 0.0001768316127057661, 16811.0)
  0.038570 seconds (13.62 k allocations: 20.142 MiB)
10	(-0.04183722515432251, Inf, 17535.0)
20	(-0.04165369064255653, 0.00017619532615755182, 17508.0)
  0.039760 seconds (13.74 k allocations: 20.156 MiB)
10	(-0.0414660473785739, Inf, 17769.0)
20	(-0.04128529892673717, 0.00017358206441887573, 17761.0)
  0.042471 seconds (22.40 k allocations: 20.346 MiB, 41.64% gc time)
10	(-0.041102316273067326, Inf, 18238.0)
20	(-0.04092574597155512, 0.00016962814321342575, 18218.0)
  0.016730 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04074827835228961, Inf, 18545.0)
20	(-0.04057671509338363, 0.00016487324424762864, 18498.0)
  0.016713 seconds (13.11 k allocations: 20.143 MiB)
10	(-0.04040520087955907, Inf, 18796.0)
20	(-0.040239090319736597, 0.0001596849814319255, 18790.0)
  0.016561 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.040073694682878656, Inf, 18998.0)
20	(-0.03991323794939062, 0.00015429819299583373, 18982.0)
  0.016729 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.039753965248284735, Inf, 19101.0)
20	(-0.03959921313115558, 0.00014885747812665108, 19090.0)
  0.016812 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.03944597158103211, Inf, 19261.0)
20	(-0.03929687749505562, 0.00014345668615481293, 19251.0)
  0.016554 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.03914951453487103, Inf, 19334.0)
20	(-0.039005966202174155, 0.0001381592958715937, 19331.0)
  0.016626 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.038864287929357914, Inf, 19421.0)
20	(-0.03872612398838321, 0.00013301286815065196, 19416.0)
  0.017057 seconds (13.11 k allocations: 20.143 MiB)
10	(-0.044740001145310564, Inf, 39.0)
20	(-0.0447368442811348, 3.021683587635955e-6, 39.0)
  0.018904 seconds (13.12 k allocations: 20.141 MiB)
10	(-0.04472982592822191, Inf, 152.0)
20	(-0.044723173621094625, 6.3675309357093415e-6, 150.0)
  0.016662 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.0447100108250689, Inf, 366.0)
20	(-0.044697644019495324, 1.1837688774707444e-5, 352.0)
  0.034817 seconds (14.63 k allocations: 20.158 MiB, 51.48% gc time)
10	(-0.04467631688140618, Inf, 669.0)
20	(-0.04465625591196447, 1.920341674898307e-5, 667.0)
  0.016572 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04462486380512333, Inf, 1296.0)
20	(-0.04459544483326361, 2.816302905132501e-5, 1285.0)
  0.016809 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.044552811006772795, Inf, 2428.0)
20	(-0.04451284333004958, 3.826441865070001e-5, 2392.0)
  0.016488 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04445755143648857, Inf, 4160.0)
20	(-0.04440536261227014, 4.996989300006692e-5, 4150.0)
  0.016932 seconds (12.99 k allocations: 20.148 MiB)
10	(-0.04433601031633955, Inf, 6901.0)
20	(-0.044269955849151874, 6.325420626887705e-5, 6861.0)
  0.016623 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04418633266317455, Inf, 9706.0)
20	(-0.04410607018395099, 7.687195919608105e-5, 9669.0)
  0.016623 seconds (13.08 k allocations: 20.134 MiB)
10	(-0.04400980470651351, Inf, 12106.0)
20	(-0.04391699978514017, 8.89006706399406e-5, 12076.0)
  0.016809 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04381093031768997, Inf, 13987.0)
20	(-0.043708412724868605, 9.822436187298359e-5, 13914.0)
  0.017091 seconds (13.12 k allocations: 20.152 MiB)
10	(-0.04359557900975847, Inf, 15304.0)
20	(-0.043486302062962175, 0.00010472293366980777, 15273.0)
  0.017025 seconds (13.01 k allocations: 20.130 MiB)
10	(-0.04336929258283353, Inf, 16512.0)
20	(-0.04325574470420348, 0.00010883992655342981, 16449.0)
  0.025621 seconds (13.01 k allocations: 20.130 MiB)
10	(-0.04313657499150507, Inf, 17264.0)
20	(-0.04302070545148893, 0.00011109035459270625, 17203.0)
  0.029612 seconds (13.35 k allocations: 20.137 MiB)
10	(-0.04290089869941133, Inf, 17751.0)
20	(-0.042784209884949985, 0.00011190120962247458, 17733.0)
  0.046429 seconds (13.74 k allocations: 20.156 MiB)
10	(-0.04266489100001063, Inf, 18231.0)
20	(-0.042548511611402946, 0.00011162971057126166, 18225.0)
  0.045619 seconds (24.01 k allocations: 20.356 MiB, 43.42% gc time)
10	(-0.04243051375609522, Inf, 18547.0)
20	(-0.042315289703059984, 0.00011054625617941249, 18531.0)
  0.016831 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04219922528521593, Inf, 18815.0)
20	(-0.04208578068848184, 0.00010886301189057562, 18781.0)
  0.016449 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04197208554840082, Inf, 19071.0)
20	(-0.04186086369546675, 0.00010675307693156152, 19064.0)
  0.016811 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.041749825993827254, Inf, 21374.0)
20	(-0.04164112201541619, 0.00010435837844106673, 21349.0)
  0.016720 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04153291413629883, Inf, 21868.0)
20	(-0.04142690008997299, 0.00010179691567087572, 21831.0)
  0.016685 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.044967192802867345, Inf, 29.0)
20	(-0.044965159365073074, 1.945938365549999e-6, 29.0)
  0.018103 seconds (13.11 k allocations: 20.141 MiB)
10	(-0.044960537363011435, Inf, 110.0)
20	(-0.04495600437875051, 4.337966614794715e-6, 110.0)
  0.017373 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.044945584723661385, Inf, 330.0)
20	(-0.04493552874486079, 9.623539944775293e-6, 330.0)
  0.016730 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04491656113566844, Inf, 767.0)
20	(-0.044898561124193374, 1.7226563558190844e-5, 758.0)
  0.016721 seconds (13.24 k allocations: 20.156 MiB)
10	(-0.04486889369958623, Inf, 1350.0)
20	(-0.04484102007715855, 2.6677381431309195e-5, 1301.0)
  0.016689 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.044800157773415984, Inf, 2336.0)
20	(-0.044761756116790355, 3.6756376657930125e-5, 2301.0)
  0.017107 seconds (13.12 k allocations: 20.144 MiB)
10	(-0.04470808344299464, Inf, 4218.0)
20	(-0.04465728708961733, 4.8624897375504296e-5, 4196.0)
  0.034164 seconds (17.86 k allocations: 20.229 MiB, 40.88% gc time)
10	(-0.04458936836155769, Inf, 6831.0)
20	(-0.04452454652692818, 6.20586991900241e-5, 6807.0)
  0.016971 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.044442520946422696, Inf, 9384.0)
20	(-0.04436366941560209, 7.550198568735232e-5, 9370.0)
  0.016768 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.044269268876428604, Inf, 11654.0)
20	(-0.04417804317001912, 8.736604548064883e-5, 11665.0)
  0.016780 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04407381447659895, Inf, 13514.0)
20	(-0.04397273030727687, 9.68264461202219e-5, 13459.0)
  0.016941 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.043861321380691015, Inf, 14931.0)
20	(-0.04375302736731221, 0.00010375444242011916, 14901.0)
  0.016832 seconds (13.30 k allocations: 20.158 MiB)
10	(-0.04363686135601774, Inf, 15954.0)
20	(-0.04352375842801529, 0.00010838558019304708, 15933.0)
  0.016993 seconds (12.99 k allocations: 20.228 MiB)
10	(-0.04340487505280071, Inf, 16747.0)
20	(-0.043288980647237685, 0.0001110856222128668, 16720.0)
  0.016843 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04316899195035778, Inf, 17404.0)
20	(-0.043051894950370796, 0.00011226382939705766, 17380.0)
  0.016713 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.04293203891896316, Inf, 17863.0)
20	(-0.04281496000396638, 0.00011227199406147189, 17816.0)
  0.016786 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04269615453284365, Inf, 18208.0)
20	(-0.04258000003383254, 0.00011141063420297835, 18203.0)
  0.025371 seconds (13.11 k allocations: 20.143 MiB)
10	(-0.04246291059885666, Inf, 18458.0)
20	(-0.04234834139432571, 0.0001099145074454601, 18435.0)
  0.017332 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.042233436368776196, Inf, 18687.0)
20	(-0.0421209195807111, 0.00010796903310449761, 18676.0)
  0.017345 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.042008513860035, Inf, 18812.0)
20	(-0.04189836572582672, 0.00010571869371495495, 18800.0)
  0.035543 seconds (24.51 k allocations: 20.358 MiB, 23.08% gc time)
10	(-0.04178865316358038, Inf, 20812.0)
20	(-0.041681072851778724, 0.00010327567103349352, 20783.0)
  0.016193 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.044814659304232916, Inf, 56.0)
20	(-0.04481070000299285, 3.7894914744403903e-6, 56.0)
  0.023115 seconds (13.12 k allocations: 20.145 MiB)
10	(-0.04480311142303066, Inf, 140.0)
20	(-0.044796060115894064, 6.748979447541888e-6, 140.0)
  0.018357 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.044783408096392294, Inf, 301.0)
20	(-0.04477168067543, 1.1224864895566688e-5, 297.0)
  0.019052 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.044751576885649576, Inf, 659.0)
20	(-0.04473281108470318, 1.7962296911985275e-5, 656.0)
  0.016551 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.044703578813272055, Inf, 1216.0)
20	(-0.04467613572453887, 2.6269470312107078e-5, 1206.0)
  0.018674 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.044636135810785814, Inf, 2350.0)
20	(-0.04459837912992632, 3.6144686430532496e-5, 2312.0)
  0.022862 seconds (13.12 k allocations: 20.160 MiB)
10	(-0.04454522359314456, Inf, 4245.0)
20	(-0.044494777903042446, 4.829673749388549e-5, 4209.0)
  0.017670 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04442674635250853, Inf, 6971.0)
20	(-0.0443617674933954, 6.221872643719312e-5, 6924.0)
  0.016779 seconds (12.99 k allocations: 20.140 MiB)
10	(-0.04427888097268541, Inf, 9818.0)
20	(-0.04419920309227274, 7.63052492060106e-5, 9769.0)
  0.016603 seconds (13.08 k allocations: 20.137 MiB)
10	(-0.04410309453689152, Inf, 12442.0)
20	(-0.044010327197936676, 8.885672539641067e-5, 12389.0)
  0.018145 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04390386901554895, Inf, 14368.0)
20	(-0.043800872518032434, 9.867446965056622e-5, 14325.0)
  0.016738 seconds (13.13 k allocations: 20.146 MiB)
10	(-0.04368719611791012, Inf, 15799.0)
20	(-0.043577018816032605, 0.00010557658887746618, 15750.0)
  0.020346 seconds (13.01 k allocations: 20.130 MiB)
10	(-0.043458858991960836, Inf, 16730.0)
20	(-0.04334413130853377, 0.00010996149782639652, 16664.0)
  0.031700 seconds (23.07 k allocations: 20.333 MiB, 37.79% gc time)
10	(-0.04322363063527043, Inf, 17454.0)
20	(-0.04310643068037768, 0.00011235666030388536, 17371.0)
  0.016514 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.042985195358079105, Inf, 17985.0)
20	(-0.04286710076456512, 0.00011324030974551553, 17943.0)
  0.016337 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04274632337440459, Inf, 18373.0)
20	(-0.04262852344032596, 0.00011298360962726707, 18350.0)
  0.016708 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.04250908255343317, Inf, 18764.0)
20	(-0.042392459861316296, 0.0001118798308771251, 18730.0)
  0.020199 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04227498951401639, Inf, 18935.0)
20	(-0.042160181353083775, 0.00011016364181517162, 18933.0)
  0.019395 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.042045122406269765, Inf, 19156.0)
20	(-0.04193257131973096, 0.00010802146860256708, 19126.0)
  0.019113 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04182020643389678, Inf, 21389.0)
20	(-0.041710199511572114, 0.00010560223215270709, 19569.0)
  0.020808 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.041600686554855944, Inf, 21873.0)
20	(-0.04149338186106498, 0.00010302964537251291, 21760.0)
  0.016879 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.04463773248373848, Inf, 59.0)
20	(-0.04463343956614761, 4.1094966217530594e-6, 59.0)
  0.021014 seconds (13.50 k allocations: 20.190 MiB)
10	(-0.04462536564164875, Inf, 144.0)
20	(-0.04461788621373548, 7.159965392105798e-6, 140.0)
  0.022102 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04460399627138027, Inf, 384.0)
20	(-0.044591138780229904, 1.2308635094666938e-5, 366.0)
  0.020860 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04456864249821985, Inf, 745.0)
20	(-0.044547696294064174, 2.0052893927193625e-5, 729.0)
  0.022869 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.044514538023889945, Inf, 1436.0)
20	(-0.044483748599391734, 2.947812691149864e-5, 1411.0)
  0.021861 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.04443874324588757, Inf, 2657.0)
20	(-0.044396820356247695, 4.0140767209129755e-5, 2653.0)
  0.017641 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04433850579472455, Inf, 4470.0)
20	(-0.044283692414775956, 5.2488974353171296e-5, 4451.0)
  0.034869 seconds (18.15 k allocations: 20.233 MiB, 38.95% gc time)
10	(-0.0442103516284727, Inf, 7512.0)
20	(-0.04414073560319591, 6.667302874317245e-5, 7466.0)
  0.016591 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04405247396487829, Inf, 10363.0)
20	(-0.04396798610625432, 8.09295493237209e-5, 10351.0)
  0.016839 seconds (12.99 k allocations: 20.131 MiB)
10	(-0.04386671014531957, Inf, 12656.0)
20	(-0.04376924996106038, 9.337330474415466e-5, 12604.0)
  0.017526 seconds (13.12 k allocations: 20.142 MiB)
10	(-0.043658037924653614, Inf, 14352.0)
20	(-0.043550687091527644, 0.00010287074164568547, 14316.0)
  0.024255 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.043432720600926206, Inf, 15696.0)
20	(-0.04331857628178934, 0.00010940504821035326, 15675.0)
  0.024096 seconds (12.99 k allocations: 20.228 MiB)
10	(-0.04319650390927393, Inf, 16828.0)
20	(-0.043078126185174946, 0.00011348883763091176, 16804.0)
  0.018169 seconds (13.27 k allocations: 20.157 MiB)
10	(-0.04295400383813549, Inf, 17735.0)
20	(-0.04283339702068718, 0.00011565300631229518, 17715.0)
  0.016677 seconds (12.99 k allocations: 20.129 MiB)
10	(-0.04270877641179069, Inf, 18290.0)
20	(-0.04258747431172186, 0.00011634716803874046, 18227.0)
  0.016589 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.0424635181305038, Inf, 18673.0)
20	(-0.04234269243673061, 0.00011591743737439183, 18688.0)
  0.021741 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04222026286814921, Inf, 18966.0)
20	(-0.04210078761055001, 0.00011464846684661523, 18971.0)
  0.023779 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.04198051198108118, Inf, 19197.0)
20	(-0.04186302388845003, 0.00011276731195686512, 19199.0)
  0.021590 seconds (12.99 k allocations: 20.130 MiB)
10	(-0.0417453406758552, Inf, 19385.0)
20	(-0.04163028298195088, 0.00011045924430589101, 19394.0)
  0.022167 seconds (13.11 k allocations: 20.142 MiB)
10	(-0.04151547572047411, Inf, 19864.0)
20	(-0.041403135679151805, 0.00010787373061733634, 19840.0)
  0.024000 seconds (13.03 k allocations: 20.131 MiB)
10	(-0.04129136256517435, Inf, 22053.0)
20	(-0.04118190291403, 0.00010513018987172218, 21965.0)
  0.031853 seconds (24.75 k allocations: 20.361 MiB, 21.90% gc time)





21×5 Array{Float64,2}:
 0.599057  0.655961  0.682441  0.640037  0.586466
 0.57976   0.66256   0.683768  0.632606  0.59885
 0.553602  0.672679  0.678903  0.629354  0.605484
 0.54331   0.66784   0.670057  0.629819  0.607696
 0.53988   0.67004   0.659     0.617278  0.599735
 0.545026  0.6696    0.653251  0.603344  0.587793
 0.538165  0.656841  0.647059  0.590804  0.581601
 0.540738  0.646282  0.642194  0.588017  0.569217
 0.542453  0.639243  0.634675  0.572225  0.56789
 0.552744  0.626925  0.625387  0.567116  0.568775
 0.551887  0.619006  0.619195  0.556897  0.570102
 0.552316  0.612407  0.616984  0.557362  0.574525
 0.557461  0.608887  0.61433   0.553646  0.576736
 0.562178  0.602728  0.614772  0.552253  0.572313
 0.560034  0.598768  0.609907  0.552717  0.568333
 0.558319  0.592169  0.604157  0.550395  0.570102
 0.560463  0.58161   0.602831  0.548537  0.564352
 0.561321  0.575451  0.59885   0.544357  0.562583
 0.561321  0.572371  0.601504  0.540176  0.562141
 0.564751  0.571051  0.599292  0.538783  0.559487
 0.567753  0.570172  0.597523  0.537854  0.557276

It can be seen that analysis on GPU is 6-8 times faster except for the very first fit where the functions are compiled. It may be desirable to use T=Float32 to reduce memory usage of the GPU.

lambda_idx = argmax(mean(score; dims=2)[:])
lambda = lambdas[lambda_idx]
1.0e-5
p = GroupNormL2{T,A}(lambda, somatic_grpidx)
U = ParProx.COXUpdate(; maxiter=20000, step=20, tol=1e-6, verbose=true)
V = ParProx.COXVariables{T,A}(adapt(A{T}, somatic_predictors), 
    adapt(A{T}, survival_event), 
    adapt(A{T}, survival_time), p; eval_obj=true)
@time ParProx.fit!(U, V)
20	(-0.05856762640035516, Inf, 64.0)
40	(-0.058557811848852025, 9.271625407021259e-6, 64.0)
60	(-0.05854891761891099, 8.402285234999274e-6, 64.0)
80	(-0.05854077218925279, 7.694960715922886e-6, 64.0)
100	(-0.05853324085171504, 7.114880522498248e-6, 63.0)
120	(-0.058526208157047, 6.643855025835135e-6, 63.0)
140	(-0.058519607025598504, 6.236191946450412e-6, 63.0)
160	(-0.058513177348886204, 6.074252876476307e-6, 47.0)
180	(-0.058506719671932536, 6.100742521190199e-6, 43.0)
200	(-0.058500456084850404, 5.9174155723086635e-6, 43.0)
220	(-0.05849442097393898, 5.701599169381907e-6, 43.0)
240	(-0.05848859223611299, 5.506660977498699e-6, 43.0)
260	(-0.05848295073285316, 5.329800783209927e-6, 43.0)
280	(-0.058477479803838855, 5.168677764705353e-6, 43.0)
300	(-0.058472164873476784, 5.021322750331123e-6, 43.0)
320	(-0.058466993130185274, 4.8860694996408254e-6, 43.0)
340	(-0.058461953263233654, 4.761500341209305e-6, 43.0)
360	(-0.05845703242440952, 4.649068099498043e-6, 41.0)
380	(-0.05845208728264084, 4.672050655948938e-6, 38.0)
400	(-0.05844719897340045, 4.618377983458188e-6, 38.0)
420	(-0.05844241019202138, 4.524366496427905e-6, 38.0)
440	(-0.05843771477325066, 4.436178629296478e-6, 38.0)
460	(-0.05843310713063015, 4.353267664689974e-6, 38.0)
480	(-0.05842858218791768, 4.275151662208246e-6, 38.0)
500	(-0.0584241353201186, 4.20140438099125e-6, 38.0)
520	(-0.0584197623025938, 4.131647651107258e-6, 38.0)
540	(-0.05841545926698294, 4.065544936237766e-6, 38.0)
560	(-0.05841122266290061, 4.002795880859484e-6, 38.0)
580	(-0.05840704922454117, 3.9431316736722126e-6, 38.0)
600	(-0.05840293594147185, 3.886311091593963e-6, 38.0)
620	(-0.05839888003301215, 3.832117112191821e-6, 38.0)
640	(-0.05839487892569377, 3.780354004018934e-6, 38.0)
660	(-0.05839093023337521, 3.7308448190212465e-6, 38.0)
680	(-0.058387031739651186, 3.683429224954029e-6, 38.0)
700	(-0.058383181382251195, 3.637961626490187e-6, 38.0)
720	(-0.05837937723916748, 3.594309531651982e-6, 38.0)
740	(-0.058375617516290855, 3.552352127544884e-6, 38.0)
760	(-0.058371900536364145, 3.5119790357494864e-6, 38.0)
780	(-0.05836822472909051, 3.473089221449723e-6, 38.0)
800	(-0.05836458862225635, 3.4355900350882313e-6, 38.0)
820	(-0.05836099083374752, 3.3993963685314903e-6, 38.0)
840	(-0.058357430064354204, 3.364429910126023e-6, 38.0)
860	(-0.05835390509127348, 3.3306184857143e-6, 38.0)
880	(-0.0583504147622305, 3.2978954742190246e-6, 38.0)
900	(-0.058346957990149266, 3.2661992885544438e-6, 38.0)
920	(-0.05834353374831304, 3.2354729131277077e-6, 38.0)
940	(-0.058340141065961276, 3.2056634914614054e-6, 38.0)
960	(-0.05833677902427714, 3.1767219572910616e-6, 38.0)
980	(-0.058333446752724775, 3.1486027041761086e-6, 38.0)
1000	(-0.0583301434257003, 3.1212632891477516e-6, 38.0)
1020	(-0.05832686825946531, 3.0946641658842034e-6, 38.0)
1040	(-0.05832362050933429, 3.0687684448114856e-6, 38.0)
1060	(-0.058320399467091645, 3.0435416762886813e-6, 38.0)
1080	(-0.05831720445861587, 3.0189516548656647e-6, 38.0)
1100	(-0.05831403484169161, 2.9949682418537686e-6, 38.0)
1120	(-0.05831089000399174, 2.971563204702049e-6, 38.0)
1140	(-0.05830776936121419, 2.9487100708259458e-6, 38.0)
1160	(-0.0583046723553594, 2.9263839947873483e-6, 38.0)
1180	(-0.05830159845313579, 2.904561637351295e-6, 38.0)
1200	(-0.05829854714448233, 2.8832210548658126e-6, 38.0)
1220	(-0.05829551794119768, 2.8623415986308532e-6, 38.0)
1240	(-0.05829251037566729, 2.8419038223421365e-6, 38.0)
1260	(-0.05828952399967985, 2.8218893976691806e-6, 38.0)
1280	(-0.05828655838332603, 2.8022810365712183e-6, 38.0)
1300	(-0.05828361311397254, 2.7830624201283006e-6, 38.0)
1320	(-0.05828068779530565, 2.764218132884619e-6, 38.0)
1340	(-0.05827778204643862, 2.7457336025862158e-6, 38.0)
1360	(-0.05827489550107795, 2.727595044480542e-6, 38.0)
1380	(-0.05827202780674412, 2.7097894099813104e-6, 38.0)
1400	(-0.058269178624042406, 2.6923043392594862e-6, 38.0)
1420	(-0.058266347625980215, 2.675128117360562e-6, 38.0)
1440	(-0.058263534497327574, 2.6582496334220454e-6, 38.0)
1460	(-0.05826073893401717, 2.6416583433125465e-6, 38.0)
1480	(-0.05825796064258166, 2.6253442344270793e-6, 38.0)
1500	(-0.058255199339625204, 2.609297793366483e-6, 38.0)
1520	(-0.058252454751326864, 2.5935099758256683e-6, 38.0)
1540	(-0.05824972661297373, 2.577972178520297e-6, 38.0)
1560	(-0.058247014668521765, 2.5626762129945773e-6, 38.0)
1580	(-0.05824431867018223, 2.5476142814741576e-6, 38.0)
1600	(-0.05824163837803229, 2.532778954010139e-6, 38.0)
1620	(-0.0582389735596479, 2.518163147432233e-6, 38.0)
1640	(-0.05823632398975765, 2.503760105547228e-6, 38.0)
1660	(-0.058233689449916255, 2.4895633806221343e-6, 38.0)
1680	(-0.058231069728196215, 2.4755668161520542e-6, 38.0)
1700	(-0.05822846461889658, 2.4617645307554413e-6, 38.0)
1720	(-0.058225873922267926, 2.4481509028426937e-6, 38.0)
1740	(-0.05822329744425206, 2.4347205567007137e-6, 38.0)
1760	(-0.05822073499623611, 2.421468348904979e-6, 38.0)
1780	(-0.05821818639481951, 2.4083893561541863e-6, 38.0)
1800	(-0.058215651461593666, 2.3954788632554146e-6, 38.0)
1820	(-0.05821313002293311, 2.3827323523220768e-6, 38.0)
1840	(-0.058210621909797505, 2.370145492469961e-6, 38.0)
1860	(-0.05820812695754422, 2.357714129880226e-6, 38.0)
1880	(-0.058205645005750276, 2.3454342789244404e-6, 38.0)
1900	(-0.05820317589804358, 2.3333021133680884e-6, 38.0)
1920	(-0.05820071948194258, 2.3213139584722223e-6, 38.0)
1940	(-0.05819827560870419, 2.309466283134269e-6, 38.0)
1960	(-0.058195844133179124, 2.297755692907334e-6, 38.0)
1980	(-0.05819342491367448, 2.286178923143929e-6, 38.0)
2000	(-0.05819101781182308, 2.2747328326182266e-6, 38.0)
2020	(-0.05818862269245925, 2.263414397456368e-6, 38.0)
2040	(-0.05818623942350049, 2.2522207055518706e-6, 38.0)
2060	(-0.05818386787583486, 2.241148951164515e-6, 38.0)
2080	(-0.05818150792321387, 2.230196429748621e-6, 38.0)
2100	(-0.05817915944215026, 2.219360533279569e-6, 38.0)
2120	(-0.058176822311820676, 2.2086387457244755e-6, 38.0)
2140	(-0.05817449641397288, 2.1980286386373596e-6, 38.0)
2160	(-0.058172181632837175, 2.187527867285371e-6, 38.0)
2180	(-0.05816987785504198, 2.1771341666437687e-6, 38.0)
2200	(-0.058167584969533184, 2.166845347908865e-6, 38.0)
2220	(-0.05816530286749713, 2.1566592949780986e-6, 38.0)
2240	(-0.058163031442287155, 2.146573961179213e-6, 38.0)
2260	(-0.05816077058935319, 2.1365873663075726e-6, 38.0)
2280	(-0.05815852020617465, 2.1266975935716036e-6, 38.0)
2300	(-0.05815628019219615, 2.1169027868857218e-6, 38.0)
2320	(-0.058154050448766016, 2.1072011482550025e-6, 38.0)
2340	(-0.058151830879077424, 2.0975909352712787e-6, 38.0)
2360	(-0.05814962138811214, 2.0880704586813124e-6, 38.0)
2380	(-0.058147421882586474, 2.078638080269685e-6, 38.0)
2400	(-0.05814523227089962, 2.0692922106301562e-6, 38.0)
2420	(-0.05814305246308407, 2.060031307179611e-6, 38.0)
2440	(-0.05814088237075814, 2.0508538721916396e-6, 38.0)
2460	(-0.058138721907080256, 2.0417584510923726e-6, 38.0)
2480	(-0.05813657098670537, 2.0327436305136583e-6, 38.0)
2500	(-0.0581344295257428, 2.0238080368773613e-6, 38.0)
2520	(-0.058132297441716003, 2.014950334612405e-6, 38.0)
2540	(-0.058130174653523756, 2.006169224824257e-6, 38.0)
2560	(-0.05812806108140295, 1.9974634437414236e-6, 38.0)
2580	(-0.05812595664689273, 1.988831761470127e-6, 38.0)
2600	(-0.05812386127280012, 1.980272980604683e-6, 38.0)
2620	(-0.05812177488316676, 1.9717859351198355e-6, 38.0)
2640	(-0.05811969740323714, 1.9633694890269885e-6, 38.0)
2660	(-0.05811762875942782, 1.9550225353976426e-6, 38.0)
2680	(-0.05811556887929776, 1.946743995308123e-6, 38.0)
2700	(-0.058113517691519956, 1.9385328166662395e-6, 38.0)
2720	(-0.05811147512585383, 1.930387973424837e-6, 38.0)
2740	(-0.05810944111311879, 1.9223084645199004e-6, 38.0)
2760	(-0.05810741558516859, 1.9142933131037393e-6, 38.0)
2780	(-0.05810539847486668, 1.9063415656076544e-6, 38.0)
2800	(-0.058103389716062465, 1.8984522909029497e-6, 38.0)
2820	(-0.058101389243568065, 1.8906245797767104e-6, 38.0)
2840	(-0.058099396993136376, 1.8828575437714478e-6, 38.0)
2860	(-0.05809741290143931, 1.8751503149625096e-6, 38.0)
2880	(-0.05809543690604725, 1.867502044843599e-6, 38.0)
2900	(-0.05809346894540881, 1.8599119040057888e-6, 38.0)
2920	(-0.0580915089588314, 1.852379081403374e-6, 38.0)
2940	(-0.05808955688646256, 1.8449027836459418e-6, 38.0)
2960	(-0.05808761266927155, 1.837482234670791e-6, 38.0)
2980	(-0.058085676249031847, 1.8301166750218643e-6, 38.0)
3000	(-0.05808374756830403, 1.8228053613450795e-6, 38.0)
3020	(-0.058081826570419166, 1.8155475660016962e-6, 38.0)
3040	(-0.05807991319946284, 1.8083425764521424e-6, 38.0)
3060	(-0.0580780074002595, 1.8011896949087079e-6, 38.0)
3080	(-0.05807610911835742, 1.7940882378111642e-6, 38.0)
3100	(-0.05807421830001398, 1.7870375354925574e-6, 38.0)
3120	(-0.05807233489218156, 1.7800369316089027e-6, 38.0)
3140	(-0.05807045884249355, 1.7730857830213764e-6, 38.0)
3160	(-0.058068590099251076, 1.7661834591472986e-6, 38.0)
3180	(-0.0580667286114099, 1.7593293417504965e-6, 38.0)
3200	(-0.058064874328567787, 1.7525228245480353e-6, 38.0)
3220	(-0.05806302720095211, 1.7457633129481075e-6, 38.0)
3240	(-0.058061187179407996, 1.7390502235714901e-6, 38.0)
3260	(-0.05805935421538657, 1.7323829841140249e-6, 38.0)
3280	(-0.05805752826093364, 1.7257610329861134e-6, 38.0)
3300	(-0.05805570926867873, 1.7191838189390895e-6, 38.0)
3320	(-0.058053897191824265, 1.712650800940794e-6, 38.0)
3340	(-0.05805209198413512, 1.70616144783473e-6, 38.0)
3360	(-0.05805029359992845, 1.699715238064789e-6, 38.0)
3380	(-0.058048501994063806, 1.693311659406532e-6, 38.0)
3400	(-0.05804671712193334, 1.686950208888654e-6, 38.0)
3420	(-0.05804493893945255, 1.6806303922947187e-6, 38.0)
3440	(-0.05804316740305089, 1.6743517242354519e-6, 38.0)
3460	(-0.05804140246966297, 1.668113727689814e-6, 38.0)
3480	(-0.05803964409671968, 1.661915933959241e-6, 38.0)
3500	(-0.05803789224213981, 1.6557578823201956e-6, 38.0)
3520	(-0.05803614686432151, 1.6496391200570992e-6, 38.0)
3540	(-0.05803440792213434, 1.6435592019968281e-6, 38.0)
3560	(-0.05803267537491124, 1.6375176905416365e-6, 38.0)
3580	(-0.05803094918244084, 1.6315141553610435e-6, 38.0)
3600	(-0.05802922930495978, 1.6255481733591681e-6, 38.0)
3620	(-0.05802751570314545, 1.6196193283207004e-6, 38.0)
3640	(-0.058025808338108616, 1.6137272109831608e-6, 38.0)
3660	(-0.05802410717138646, 1.6078714186435186e-6, 38.0)
3680	(-0.058022412164935644, 1.6020515551714185e-6, 38.0)
3700	(-0.05802072328112552, 1.5962672308387742e-6, 38.0)
3720	(-0.05801904048273154, 1.5905180621428004e-6, 38.0)
3740	(-0.05801736373292884, 1.5848036716421578e-6, 38.0)
3760	(-0.05801569299528584, 1.5791236879177048e-6, 38.0)
3780	(-0.05801402823375809, 1.5734777454020797e-6, 38.0)
3800	(-0.0580123694126823, 1.5678654841371361e-6, 38.0)
3820	(-0.05801071649677023, 1.5622865499314426e-6, 38.0)
3840	(-0.05800906945110307, 1.556740593934075e-6, 38.0)
3860	(-0.05800742824112563, 1.5512272727265267e-6, 38.0)
3880	(-0.05800579283264088, 1.5457462481129278e-6, 38.0)
3900	(-0.05800416319180447, 1.5402971870086378e-6, 38.0)
3920	(-0.05800253928511928, 1.5348797615255893e-6, 38.0)
3940	(-0.0580009210794304, 1.529493648487046e-6, 38.0)
3960	(-0.05799930854191982, 1.5241385297293712e-6, 38.0)
3980	(-0.05799770164010151, 1.5188140917676276e-6, 38.0)
4000	(-0.05799610034181647, 1.5135200257562987e-6, 38.0)
4020	(-0.057994504615227906, 1.508256027423785e-6, 38.0)
4040	(-0.057992914428816475, 1.503021796974096e-6, 38.0)
4060	(-0.05799132975137573, 1.4978170389360788e-6, 38.0)
4080	(-0.05798975055200744, 1.492641462229073e-6, 38.0)
4100	(-0.057988176800117246, 1.4874947799071987e-6, 38.0)
4120	(-0.05798660846541023, 1.4823767091790972e-6, 38.0)
4140	(-0.057985045517886635, 1.4772869713227385e-6, 38.0)
4160	(-0.05798348792783762, 1.472225291593666e-6, 38.0)
4180	(-0.057981935665841214, 1.4671913990938866e-6, 38.0)
4200	(-0.05798038870275814, 1.4621850268637555e-6, 38.0)
4220	(-0.05797884700972794, 1.4572059115868991e-6, 38.0)
4240	(-0.057977310558165, 1.4522537937345644e-6, 38.0)
4260	(-0.05797577931975472, 1.4473284173492424e-6, 38.0)
4280	(-0.05797425326644981, 1.4424295300184923e-6, 38.0)
4300	(-0.05797273237046652, 1.4375568828553206e-6, 38.0)
4320	(-0.05797121660428101, 1.432710230406415e-6, 38.0)
4340	(-0.057969705940625865, 1.427889330540702e-6, 38.0)
4360	(-0.057968200352486475, 1.4230939444953095e-6, 38.0)
4380	(-0.05796669981309767, 1.4183238367247691e-6, 38.0)
4400	(-0.05796520429594035, 1.4135787748485982e-6, 38.0)
4420	(-0.05796371377473812, 1.4088585296644658e-6, 38.0)
4440	(-0.05796222822345404, 1.4041628750564202e-6, 38.0)
4460	(-0.05796074761628743, 1.3994915878899972e-6, 38.0)
4480	(-0.05795927192767069, 1.394844448077854e-6, 38.0)
4500	(-0.057957801132266284, 1.390221238343701e-6, 38.0)
4520	(-0.0579563352049636, 1.3856217443994326e-6, 38.0)
4540	(-0.05795487412087597, 1.3810457547549682e-6, 38.0)
4560	(-0.05795341785533785, 1.3764930606067952e-6, 38.0)
4580	(-0.05795196638390171, 1.3719634560544527e-6, 38.0)
4600	(-0.05795051968233544, 1.3674567376808096e-6, 38.0)
4620	(-0.05794907772661934, 1.3629727048800463e-6, 38.0)
4640	(-0.05794764049294355, 1.3585111595166367e-6, 38.0)
4660	(-0.05794620795770522, 1.3540719060696808e-6, 38.0)
4680	(-0.05794478009750587, 1.349654751560797e-6, 38.0)
4700	(-0.05794335688914885, 1.3452595053901906e-6, 38.0)
4720	(-0.05794193830963673, 1.3408859794219522e-6, 38.0)
4740	(-0.05794052433616872, 1.3365339879578627e-6, 38.0)
4760	(-0.05793911494613826, 1.332203347573456e-6, 38.0)
4780	(-0.057937710117130524, 1.327893877209878e-6, 38.0)
4800	(-0.05793630982692004, 1.3236053980558618e-6, 38.0)
4820	(-0.057934914053468296, 1.3193377335412036e-6, 38.0)
4840	(-0.05793352277492144, 1.3150907092974413e-6, 38.0)
4860	(-0.05793213596960795, 1.3108641531316517e-6, 38.0)
4880	(-0.05793075361603639, 1.30665789498713e-6, 38.0)
4900	(-0.05792937569289324, 1.3024717668384786e-6, 38.0)
4920	(-0.0579280021790406, 1.298305602849051e-6, 38.0)
4940	(-0.05792663305351415, 1.2941592390955083e-6, 38.0)
4960	(-0.057925268295520936, 1.2900325137449403e-6, 38.0)
4980	(-0.0579239078844374, 1.285925266831889e-6, 38.0)
5000	(-0.05792255179980722, 1.2818373404289124e-6, 38.0)
5020	(-0.05792120002133931, 1.2777685784957555e-6, 38.0)
5040	(-0.057919852528905885, 1.2737188268137883e-6, 38.0)
5060	(-0.057918509302540444, 1.2696879330778591e-6, 38.0)
5080	(-0.057917170322435874, 1.2656757467717e-6, 38.0)
5100	(-0.05791583556894256, 1.2616821191613953e-6, 38.0)
5120	(-0.05791450502256647, 1.257706903321642e-6, 38.0)
5140	(-0.05791317866396734, 1.2537499540373907e-6, 38.0)
5160	(-0.05791185647395687, 1.249811127816989e-6, 38.0)
5180	(-0.05791053843349693, 1.2458902828331745e-6, 38.0)
5200	(-0.057909224523697775, 1.2419872789624528e-6, 38.0)
5220	(-0.0579079147258164, 1.2381019776342633e-6, 38.0)
5240	(-0.05790660902125465, 1.2342342420540107e-6, 38.0)
5260	(-0.05790530739155777, 1.2303839368095438e-6, 38.0)
5280	(-0.057904009818412594, 1.226550928186014e-6, 38.0)
5300	(-0.057902716283645926, 1.2227350840084781e-6, 38.0)
5320	(-0.057901426769223, 1.2189362735500948e-6, 38.0)
5340	(-0.057900141257245845, 1.2151543676174135e-6, 38.0)
5360	(-0.057898859729951714, 1.2113892385307168e-6, 38.0)
5380	(-0.0578975821697116, 1.2076407599797431e-6, 38.0)
5400	(-0.05789630855902866, 1.203908807168006e-6, 38.0)
5420	(-0.05789503888053673, 1.2001932566685134e-6, 38.0)
5440	(-0.05789377311699894, 1.1964939864041113e-6, 38.0)
5460	(-0.05789251125130615, 1.1928108757458877e-6, 38.0)
5480	(-0.05789125326647554, 1.1891438054016894e-6, 38.0)
5500	(-0.0578899991456493, 1.1854926573177503e-6, 38.0)
5520	(-0.0578887488720931, 1.1818573148951643e-6, 38.0)
5540	(-0.057887502429194826, 1.1782376627144175e-6, 38.0)
5560	(-0.0578862598004632, 1.1746335866600293e-6, 38.0)
5580	(-0.057885020969526406, 1.1710449739205726e-6, 38.0)
5600	(-0.057883785920130826, 1.1674717128837414e-6, 38.0)
5620	(-0.057882554636139776, 1.1639136931166913e-6, 38.0)
5640	(-0.05788132710153218, 1.1603708054447664e-6, 38.0)
5660	(-0.0578801033004013, 1.1568429418990424e-6, 38.0)
5680	(-0.05787888321695355, 1.1533299956245135e-6, 38.0)
5700	(-0.057877666835507234, 1.149831860952259e-6, 38.0)
5720	(-0.057876454140491376, 1.1463484333273087e-6, 38.0)
5740	(-0.05787524511644452, 1.1428796093283353e-6, 38.0)
5760	(-0.057874039748013514, 1.139425286674229e-6, 38.0)
5780	(-0.057872838019952424, 1.1359853641191634e-6, 38.0)
5800	(-0.057871639917121354, 1.132559741524764e-6, 38.0)
5820	(-0.05787044542448532, 1.1291483198142055e-6, 38.0)
5840	(-0.057869254527113216, 1.1257510009000763e-6, 38.0)
5860	(-0.05786806721017658, 1.122367687841813e-6, 38.0)
5880	(-0.057866883458948644, 1.1189982846095814e-6, 38.0)
5900	(-0.05786570325880323, 1.1156426962089163e-6, 38.0)
5920	(-0.057864526595213656, 1.1123008286938531e-6, 38.0)
5940	(-0.05786335345375179, 1.1089725889767209e-6, 38.0)
5960	(-0.05786218382008694, 1.1056578850642914e-6, 38.0)
5980	(-0.05786101767998491, 1.1023566258150965e-6, 38.0)
6000	(-0.05785985501930698, 1.0990687210706274e-6, 38.0)
6020	(-0.057858695824008946, 1.0957940815831936e-6, 38.0)
6040	(-0.05785754008014011, 1.0925326190421737e-6, 38.0)
6060	(-0.05785638777384239, 1.0892842459887547e-6, 38.0)
6080	(-0.0578552388913493, 1.0860488759208947e-6, 38.0)
6100	(-0.05785409341898511, 1.082826423149027e-6, 38.0)
6120	(-0.05785295134316388, 1.0796168028682259e-6, 38.0)
6140	(-0.05785181265038853, 1.076419931158217e-6, 38.0)
6160	(-0.057850677327249994, 1.0732357249177961e-6, 38.0)
6180	(-0.05784954531932676, 1.070102953904199e-6, 42.0)
6200	(-0.0578484163668708, 1.0672157168242221e-6, 42.0)
6220	(-0.0578472904196606, 1.064375945747466e-6, 42.0)
6240	(-0.057846167469386145, 1.0615440212275277e-6, 42.0)
6260	(-0.05784504750777037, 1.0587199121577471e-6, 42.0)
6280	(-0.05784393052656832, 1.0559035882510125e-6, 42.0)
6300	(-0.057842816517566314, 1.0530950199872916e-6, 42.0)
6320	(-0.057841705472581106, 1.0502941786661154e-6, 42.0)
6340	(-0.057840597383459154, 1.0475010362557149e-6, 42.0)
6360	(-0.05783949224207593, 1.0447155653864693e-6, 42.0)
6380	(-0.057838390040335155, 1.0419377394033875e-6, 42.0)
6400	(-0.05783729077016829, 1.0391675321496494e-6, 42.0)
6420	(-0.05783619442353382, 1.0364049181240403e-6, 42.0)
6440	(-0.05783510099241671, 1.0336498723497651e-6, 42.0)
6460	(-0.057834010468827926, 1.0309023703088592e-6, 42.0)
6480	(-0.05783292284480383, 1.0281623880340248e-6, 42.0)
6500	(-0.05783183811240576, 1.0254299019840053e-6, 42.0)
6520	(-0.057830756263719564, 1.0227048890304708e-6, 42.0)
6540	(-0.05782967729085513, 1.019987326503938e-6, 42.0)
6560	(-0.05782860118594604, 1.0172771920560243e-6, 42.0)
6580	(-0.05782752794114914, 1.0145744637447262e-6, 42.0)
6600	(-0.05782645754864421, 1.0118791199557062e-6, 42.0)
6620	(-0.057825390000633595, 1.009191139395739e-6, 42.0)
6640	(-0.057824325289341866, 1.0065105011058326e-6, 42.0)
6660	(-0.057823263407015574, 1.0038371843628382e-6, 42.0)
6680	(-0.057822204345922945, 1.00117116872537e-6, 42.0)
6700	(-0.05782114809835354, 9.985124340731661e-7, 42.0)
  6.574401 seconds (4.45 M allocations: 6.524 GiB, 3.79% gc time)
nonzero_idxs = (1:length(V.β))[V.β .!= 0];
┌ Warning: Performing scalar operations on GPU arrays: This is very slow, consider disallowing these operations with `allowscalar(false)`
└ @ GPUArrays /home/kose/.julia/packages/GPUArrays/jhRU7/src/host/indexing.jl:43
for (variable_name, value) in zip(somatic_variable_names[nonzero_idxs], V.β[nonzero_idxs])
    println(variable_name, "\t", value)
end
Q6NUM9	NA	NA	NA	LU	RETSAT	ENSG00000042445	LU	-0.0016328941806089774
Q5JXM2	115	342	228	Methyltransf_22	METTL24	ENSG00000053328	PIU	-0.0016328941806089774
P27815	NA	NA	NA	LU	PDE4A	ENSG00000065989	LU	-0.0036015015186720094
Q12888	NA	NA	NA	NCU	TP53BP1	ENSG00000067369	NCU	-0.003260300192141836
Q9NPF4	23	301	162	Peptidase_M22	OSGEP	ENSG00000092094	PIU	-0.0005769446374899101
P25490	NA	NA	NA	LU	YY1	ENSG00000100811	LU	-0.0036015015186720094
O00264	NA	NA	NA	LU	PGRMC1	ENSG00000101856	LU	-0.0016328941806089774
Q9HC57	NA	NA	NA	LU	WFDC1	ENSG00000103175	LU	-0.0036015015186720094
Q9NUM4	NA	NA	NA	NCU	TMEM106B	ENSG00000106460	NCU	-0.0016328941806089774
Q9Y2J4	NA	NA	NA	LU	AMOTL2	ENSG00000114019	LU	-0.003260300192141836
Q9UI95	NA	NA	NA	LU	MAD2L2	ENSG00000116670	LU	-0.0003051353783785732
Q8TEH3	NA	NA	NA	LU	DENND1A	ENSG00000119522	LU	-0.0016328941806089774
Q8IX21	NA	NA	NA	LU	SLF2	ENSG00000119906	LU	-0.0005769446374899101
Q9BUF7	NA	NA	NA	NCU	CRB3	ENSG00000130545	NCU	-0.0005769446374899101
P36222	NA	NA	NA	NCU	CHI3L1	ENSG00000133048	NCU	-0.0016328941806089774
P49638	NA	NA	NA	NCU	TTPA	ENSG00000137561	NCU	-0.0016328941806089774
O75874	9	401	205	Iso_dh	IDH1	ENSG00000138413	PIU	-0.013317016909376781
O75874	130	140	135	py	IDH1	ENSG00000138413	PIU	-0.013317016909376781
Q92733	275	491	383	PRCC	PRCC	ENSG00000143294	PIU	-0.0005769446374899101
O15492	NA	NA	NA	LU	RGS16	ENSG00000143333	LU	-0.0016328941806089774
Q8IVH4	101	384	242	ArgK	MMAA	ENSG00000151611	PIU	-0.0005769446374899101
Q96L08	32	91	61	Sushi	SUSD3	ENSG00000157303	PIU	-0.0016328941806089774
Q9H0A9	1	153	77	Speriolin_N	SPATC1L	ENSG00000160284	PIU	-0.003260300192141836
P50607	258	500	379	Tub	TUB	ENSG00000166402	PIU	-0.0016328941806089774
Q96ER3	NA	NA	NA	LU	SAAL1	ENSG00000166788	LU	-0.0016328941806089774
Q495B1	19	121	70	Ank_2	ANKDD1A	ENSG00000166839	PIU	-1.1526649226371247e-5
NA	NA	NA	NA	LU	FAM129C	ENSG00000167483	LU	-0.0005395223579764604
P61018	10	171	90	Ras	RAB4B	ENSG00000167578	PIU	-1.1526649226371247e-5
Q8WYH8	6	107	56	ING	ING5	ENSG00000168395	PIU	-0.0003051353783785732
Q9H5H4	NA	NA	NA	LU	ZNF768	ENSG00000169957	LU	-0.0016328941806089774
Q9BZR9	NA	NA	NA	LU	TRIM8	ENSG00000171206	LU	-0.0005769446374899101
O94811	52	207	129	p25-alpha	TPPP	ENSG00000171368	PIU	-0.0016328941806089774
P14652	NA	NA	NA	LU	HOXB2	ENSG00000173917	LU	-0.0016328941806089774
A6NIH7	88	247	167	GMP_PDE_delta	UNC119B	ENSG00000175970	PIU	-0.003260300192141836
Q8N1N2	NA	NA	NA	LU	DYNAP	ENSG00000178690	LU	-1.1526649226371247e-5
Q7Z5W3	NA	NA	NA	NCU	BCDIN3D	ENSG00000186666	NCU	-0.0016328941806089774
Q86Z23	111	235	173	C1q	C1QL4	ENSG00000186897	PIU	-0.0016328941806089774
Q7Z444	43	201	122	Ras	ERAS	ENSG00000187682	PIU	-0.0003051353783785732
P42356	NA	NA	NA	LU	PI4KA	ENSG00000241973	LU	-1.1526649226371247e-5
NA	NA	NA	NA	NCU	DNM1P47	ENSG00000259660	NCU	-0.0036015015186720094
age_at_diagnosis								0.11455939819834575
gender								0.05527884841839898

Example 2: Logistic regression with overlapping groups

In this example, we perform logistic regression with overlapping group lasso penalties. This package provides a specialized interface for overlapping groups. We use mRNA gene expression signature to classify breast cancer patients undergoing chemotherapy with anthracycline and neoadjuvant agents into two classes. Group of variables is defined by the pathway and GO terms. Genes not belonging to any of the pathways is included as a singleton group.

In latent group lasso model, variables in multiple groups are replicated each time, each replication corresponding to the contribution of a variable as a member of each group. We estimate the corresponding coefficient for each replication, and the sum of these replicated coefficients is the total coefficient for that variable. This is implemented as a lazy multiplication between the original data and a sparse matrix, reducing the memory usage.

For this analysis, we have four data files.

  • exprdata_set2_cut.txt.gz contains the gene expression data of the subjects.
  • sample_set2.txt.gz contains the clinical information of the subjects.
  • PATHWAYgroup.txt.gz contains the information on the group structure: membership of each gene in a pathway.
  • gene_info.txt.gz matches gene symbols to their functions.

For the preprocessing, we first read the gene expression and clinical data, then parse PATHWAYgroup.txt.gz to determine the group structure. In the process, we also attach the functions to each of the genes and pathways. Then, we construct variable names from the group structure and the functions.

Reading covariates

The following lines read the gene expression data. The first column of the file exprdata_set2_cut.txt.gz has the gene names, and the other columns represent the normalized gene expression level of each patient. We extract the gene names for later use.

brca_data = DataFrame!(CSV.File(transcode(GzipDecompressor, Mmap.mmap(
            ParProx.datadir("exprdata_set2_cut.txt.gz")))))
gene_names = brca_data[!, :Gene]
1043-element Array{String,1}:
 "RFC2"
 "PAX8"
 "THRA"
 "EPHB3"
 "CFL1"
 "YY1"
 "ZPR1"
 "RHOA"
 "GUK1"
 "DSP"
 "RAD21"
 "SF3B2"
 "NDRG1"
 ⋮
 "ORAI3"
 "FAM174B"
 "ZNF335"
 "SEH1L"
 "LOC389906"
 "KIF18B"
 "RACGAP1"
 "CASP8AP2"
 "KLK5"
 "OR7E47P"
 "SCAF4"
 "SNHG17"

Now we load the covariates. Be carful when matching the subject information on the gene expression data and clinical data. We gather penalized variables and unpenalized variables separately.

# patient names in the gene expression file
patient_barcode = map(x -> string(x), names(brca_data)[2:end])

X = collect(transpose(convert(Matrix, brca_data[:, 2:end])))

subject_data = CSV.File(transcode(GzipDecompressor, Mmap.mmap(
            ParProx.datadir("sample_set2.txt.gz")))) |> DataFrame
normalize(x) = (x .- mean(x; dims=1))./ std(x; dims=1)
Age  = normalize(subject_data[!, :Age])
interceptcol = ones(size(X, 1))

X_unpen = [Age interceptcol] 

y = subject_data[!, :PCR_outcome]

# match subject ids
subject_data = filter(x -> x[:GEO_accession] in patient_barcode, subject_data) 
@assert all(subject_data[!, :GEO_accession] .== patient_barcode)

Building the groups

Now we read the group information. Each row of the file PATHWAYgroup.txt.gz lists a gene, a pathway id, function of the pathway and the gene symbol, indicating the membership of the gene in the pathway. We read the data file first:

group_info = DataFrame!(CSV.File(transcode(GzipDecompressor, Mmap.mmap(
            ParProx.datadir("PATHWAYgroup.txt.gz")))))
head(group_info)

<table class="data-frame"><thead><tr><th></th><th>ENSG</th><th>Pathwayid</th><th>Function</th><th>Genesym</th></tr><tr><th></th><th>String</th><th>String</th><th>String</th><th>String</th></tr></thead><tbody><p>6 rows × 4 columns</p><tr><th>1</th><td>ENSG00000148584</td><td>GO:0006397</td><td>mRNA processing</td><td>A1CF</td></tr><tr><th>2</th><td>ENSG00000148584</td><td>GO:0010467</td><td>gene expression</td><td>A1CF</td></tr><tr><th>3</th><td>ENSG00000148584</td><td>GO:0016554</td><td>cytidine to uridine editing</td><td>A1CF</td></tr><tr><th>4</th><td>ENSG00000148584</td><td>GO:0016556</td><td>mRNA modification</td><td>A1CF</td></tr><tr><th>5</th><td>ENSG00000148584</td><td>GO:0050821</td><td>protein stabilization</td><td>A1CF</td></tr><tr><th>6</th><td>ENSG00000175899</td><td>KEGG:04610</td><td>Complement and coagulation cascades</td><td>A2M</td></tr></tbody></table>

We create variables to store the group information.

  • gene_names (defined above): Each element lists the gene symbols in the analysis. Location in this list matches the index of each gene.
  • pathwayids: A unique list of pathway ids. Location in this list determines the index of each pathway.
  • variable_to_groups: Each element lists the group each variable is in.
  • group_to_variables: Each element lists the variable each group includes.
  • genesym_to_variableidx: Matches gene symbol to variable index.
  • pathwayid_to_groupidx: Matches pathway id to group index.
pathwayids = Vector{String}()
variable_to_groups = [Int[] for i in 1:length(gene_names)] 
group_to_variables = Vector{Vector{Int}}()
genesym_to_variableidx = Dict{String, Int}()
pathwayid_to_groupidx = Dict{String, Int}();

These dictionaries map pathwayids and gene symbols to their functions.

pathwayid_to_pathwayfunction = Dict{String, String}()
genesym_to_genefunction = Dict{String, String}();

We build genesym_to_variableidx and genesym_to_genefunction:

for (i, v) in enumerate(gene_names)
    genesym_to_variableidx[v] = i
end

gene_info = CSV.File(transcode(GzipDecompressor, Mmap.mmap(
            ParProx.datadir("gene_info.txt.gz")))) |> DataFrame
for r in eachrow(gene_info)
    genesym_to_genefunction[r[2]] = r[4]
end

pathwayids, variable_to_groups, group_to_variables, pathwayid_to_groupidx, and pathwayid_to_pathwayfunction are all built by parsing group_info.

num_groups = 0
for r in eachrow(group_info)
    if !(r.Genesym in keys(genesym_to_variableidx)) # skip any gene not in our gene list
        continue
    end
    # get variable index from the gene symbol
    variable_idx = genesym_to_variableidx[r.Genesym]
    
    if !(r.Pathwayid in pathwayids) # if the pathway id is new ... #!haskey(pathwayid_to_genesym, r.Pathwayid) 
        # add a new group
        num_groups += 1
        push!(pathwayids, r.Pathwayid)
        push!(group_to_variables, Int[])
        pathwayid_to_groupidx[r.Pathwayid] = num_groups
        group_idx = num_groups
    else
        group_idx = pathwayid_to_groupidx[r.Pathwayid]
    end
    
    # insert membership information
    push!(variable_to_groups[variable_idx], group_idx)
    push!(group_to_variables[group_idx], variable_idx)
    
    # retrieve pathway information
    if !haskey(pathwayid_to_pathwayfunction, r.Pathwayid)
        pathwayid_to_pathwayfunction[r.Pathwayid] = r.Function
    else
        # if redundant, just check correctness
        @assert pathwayid_to_pathwayfunction[r.Pathwayid] == r.Function
    end
end

We also enter non-pathway genes as singleton groups.

cnt = 0
for (i, v) in enumerate(gene_names)
    if length(variable_to_groups[i]) > 0 # gene is in some of the groups
        continue
    else # gene is not in any of the groups
        num_groups += 1
        cnt += 1
        # update group info
        push!(variable_to_groups[i], num_groups)
        push!(group_to_variables, [i])
        
        # update variable names
        pathwayid_placeholder = 
            if haskey(genesym_to_genefunction, v)
                "Singleton of: $v"
            else # some genes do not appear in the gene function list
                "Singleton of: $v"
            end
        push!(pathwayids, pathwayid_placeholder)
    end
end
cnt
90

90 singleton groups were added!

Constructing variable names

Here we create a vector of Strings for pathway ids and their functions.

First, we create a vector of variable names. We include age and intercept as nonpenalized variables.

variable_names = [gene_names; "Age\t\t"; "intercept\t\t"]
1045-element Array{String,1}:
 "RFC2"
 "PAX8"
 "THRA"
 "EPHB3"
 "CFL1"
 "YY1"
 "ZPR1"
 "RHOA"
 "GUK1"
 "DSP"
 "RAD21"
 "SF3B2"
 "NDRG1"
 ⋮
 "ZNF335"
 "SEH1L"
 "LOC389906"
 "KIF18B"
 "RACGAP1"
 "CASP8AP2"
 "KLK5"
 "OR7E47P"
 "SCAF4"
 "SNHG17"
 "Age\t\t"
 "intercept\t\t"

We have 1045 variables for the analysis.

Now we concatenate pathway names and their functions.

pathways_with_functions = map(pathwayids) do x
    if haskey(pathwayid_to_pathwayfunction, x)
        "$x: $(pathwayid_to_pathwayfunction[x])"
    else
        x
    end
end
5719-element Array{String,1}:
 "KEGG:00280: Valine, leucine and isoleucine degradation"
 "KEGG:04727: GABAergic synapse"
 "KEGG:01100: Metabolic pathways"
 "KEGG:00250: Alanine, aspartate and glutamate metabolism"
 "KEGG:00640: Propanoate metabolism"
 "KEGG:00410: beta-Alanine metabolism"
 "KEGG:00650: Butanoate metabolism"
 "GO:0001666: response to hypoxia"
 "GO:0007268: synaptic transmission"
 "GO:0007269: neurotransmitter secretion"
 "GO:0007620: copulation"
 "GO:0007626: locomotory behavior"
 "GO:0009449: gamma-aminobutyric acid biosynthetic process"
 ⋮
 "Singleton of: TEX13B"
 "Singleton of: IQCG"
 "Singleton of: LOC100131532"
 "Singleton of: C6orf25"
 "Singleton of: TMEM14B"
 "Singleton of: FAM64A"
 "Singleton of: GPR124"
 "Singleton of: FAM174B"
 "Singleton of: LOC389906"
 "Singleton of: OR7E47P"
 "Singleton of: SCAF4"
 "Singleton of: SNHG17"

We now create replicated variable names: each replicated variable corresponds to a membership of a gene to a group. The name should include pathway information and group information.

variable_names_replicated = String[]
cnt = 0
for i in 1:length(group_to_variables)
    for v in group_to_variables[i]
        pf = pathways_with_functions[i]
        g = gene_names[v]
        gt = genesym_to_genefunction[g]
        push!(variable_names_replicated, "$pf\t$g\t$gt")
    end
end

Finally, we append nonpenalized variables to the list.

variable_names_replicated = [variable_names_replicated; "Age\t\t"; "intercept\t\t"] 
21965-element Array{String,1}:
 "KEGG:00280: Valine, leucine and isoleucine degradation\tABAT\t4-aminobutyrate aminotransferase"
 "KEGG:00280: Valine, leucine and isoleucine degradation\tAUH\tAU RNA binding protein/enoyl-CoA hydratase"
 "KEGG:00280: Valine, leucine and isoleucine degradation\tHMGCL\t3-hydroxymethyl-3-methylglutaryl-CoA lyase"
 "KEGG:00280: Valine, leucine and isoleucine degradation\tIVD\tisovaleryl-CoA dehydrogenase"
 "KEGG:00280: Valine, leucine and isoleucine degradation\tMCCC1\tmethylcrotonoyl-CoA carboxylase 1 (alpha)"
 "KEGG:00280: Valine, leucine and isoleucine degradation\tMCCC2\tmethylcrotonoyl-CoA carboxylase 2 (beta)"
 "KEGG:00280: Valine, leucine and isoleucine degradation\tMUT\tmethylmalonyl CoA mutase"
 "KEGG:04727: GABAergic synapse\tABAT\t4-aminobutyrate aminotransferase"
 "KEGG:04727: GABAergic synapse\tGABRA4\tgamma-aminobutyric acid (GABA) A receptor, alpha 4"
 "KEGG:04727: GABAergic synapse\tPRKCA\tprotein kinase C, alpha"
 "KEGG:04727: GABAergic synapse\tPRKX\tprotein kinase, X-linked"
 "KEGG:01100: Metabolic pathways\tABAT\t4-aminobutyrate aminotransferase"
 "KEGG:01100: Metabolic pathways\tACADL\tacyl-CoA dehydrogenase, long chain"
 ⋮
 "Singleton of: LOC100131532\tLOC100131532\tuncharacterized LOC100131532"
 "Singleton of: C6orf25\tC6orf25\tchromosome 6 open reading frame 25"
 "Singleton of: TMEM14B\tTMEM14B\ttransmembrane protein 14B"
 "Singleton of: FAM64A\tFAM64A\tfamily with sequence similarity 64, member A"
 "Singleton of: GPR124\tGPR124\tG protein-coupled receptor 124"
 "Singleton of: FAM174B\tFAM174B\tfamily with sequence similarity 174, member B"
 "Singleton of: LOC389906\tLOC389906\tzinc finger protein 839 pseudogene"
 "Singleton of: OR7E47P\tOR7E47P\tolfactory receptor, family 7, subfamily E, member 47 pseudogene"
 "Singleton of: SCAF4\tSCAF4\tSR-related CTD-associated factor 4"
 "Singleton of: SNHG17\tSNHG17\tsmall nucleolar RNA host gene 17 (non-protein coding)"
 "Age\t\t"
 "intercept\t\t"

We have 21965 variables on the replicated space.

Cross validation

Now we perform the 5-fold cross validation. The default criteria for cross validation is accuracy. It can be changed to area under the ROC curve (ROC) by adding a keyword parameter criteria=auc.

lambdas = 10 .^ (range(-6, stop=-9, length=31))
31-element Array{Float64,1}:
 1.0e-6
 7.943282347242822e-7
 6.30957344480193e-7
 5.011872336272725e-7
 3.981071705534969e-7
 3.162277660168379e-7
 2.5118864315095823e-7
 1.9952623149688787e-7
 1.584893192461114e-7
 1.2589254117941662e-7
 1.0e-7
 7.943282347242822e-8
 6.30957344480193e-8
 ⋮
 1.2589254117941661e-8
 1.0e-8
 7.943282347242822e-9
 6.309573444801943e-9
 5.011872336272715e-9
 3.981071705534969e-9
 3.1622776601683795e-9
 2.511886431509582e-9
 1.9952623149688828e-9
 1.584893192461111e-9
 1.2589254117941663e-9
 1.0e-9

For overlapping groups, group_to_variables is used as an input, along with lambdas, rather than the pre-constructed penalties.

using Random
Random.seed!(222)
U = ParProx.LogisticUpdate(; maxiter=30000, step=20, tol=5e-4, verbose=true)
@time scores = ParProx.cross_validate(U, X, X_unpen, y, group_to_variables, lambdas, 5; T =Float64, criteria=auc)
20	(-0.6931299669675716, Inf, 5.0)
40	(-0.6931127550247755, 1.0165857380108762e-5, 5.0)
  0.758296 seconds (1.79 M allocations: 106.059 MiB)
20	(-0.6930909832098205, Inf, 35.0)
40	(-0.6930692158627235, 1.2856737865812443e-5, 35.0)
  0.178809 seconds (2.68 k allocations: 14.541 MiB, 77.86% gc time)
20	(-0.6930194596702821, Inf, 231.0)
40	(-0.6929697871677261, 2.9340454231704357e-5, 231.0)
  0.037132 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6928195220455069, Inf, 1272.0)
40	(-0.6926704275530877, 8.808241107792448e-5, 1272.0)
  0.038960 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6921737583844234, Inf, 6412.0)
40	(-0.6916903180042857, 0.0002857735691884926, 6366.0)
  0.038584 seconds (2.56 k allocations: 14.535 MiB)
20	(-0.6904786105516274, Inf, 14137.0)
40	(-0.6893248921581476, 0.000682946423648488, 14063.0)
60	(-0.6882256525617884, 0.0006511212495149772, 13960.0)
80	(-0.6871776821871006, 0.0006211381206330579, 13885.0)
100	(-0.6861777618018515, 0.0005930100656650706, 13770.0)
120	(-0.685223123261159, 0.0005664760514591002, 13663.0)
140	(-0.684310804609722, 0.0005416569489075529, 13517.0)
160	(-0.6834382967953334, 0.0005182891562165232, 13430.0)
180	(-0.6826035890119677, 0.0004960810667566922, 13288.0)
  0.170270 seconds (11.09 k allocations: 65.360 MiB)
20	(-0.6810726409327895, Inf, 17050.0)
40	(-0.6796249461110112, 0.000861915527707713, 16975.0)
60	(-0.6782548105185824, 0.0008164049844167881, 16886.0)
80	(-0.6769568786362968, 0.0007739804754795079, 16805.0)
100	(-0.6757262690503179, 0.0007343738704271807, 16658.0)
120	(-0.6745584857234705, 0.0006973678953606567, 16622.0)
140	(-0.673449437520292, 0.000662731827035042, 16474.0)
160	(-0.6723951973035373, 0.0006303774481381545, 16384.0)
180	(-0.6713918175986944, 0.000600325844770763, 16223.0)
200	(-0.6704362930683998, 0.0005720209350452884, 16139.0)
220	(-0.6695260245291853, 0.0005452257262483815, 16099.0)
240	(-0.6686577670511525, 0.0005203328658381195, 15972.0)
260	(-0.6678291335876432, 0.0004968335465677492, 15878.0)
  0.248201 seconds (16.09 k allocations: 94.415 MiB)
20	(-0.6664904011484337, Inf, 18003.0)
40	(-0.6652231885793831, 0.0007609866219384516, 17947.0)
60	(-0.6640224659204328, 0.0007215783942473167, 17916.0)
80	(-0.6628836495803765, 0.0006848442705800134, 17877.0)
100	(-0.6618024640051273, 0.0006506101649671343, 17788.0)
120	(-0.6607749699206752, 0.0006186835080379412, 17728.0)
140	(-0.6597976922491989, 0.0005887932463335027, 17709.0)
160	(-0.6588673297190493, 0.0005608420356962683, 17656.0)
180	(-0.657980561676617, 0.0005348482744185652, 17560.0)
200	(-0.6571348122851882, 0.000510368489732285, 17512.0)
220	(-0.6563274687492614, 0.0004874299020932535, 17471.0)
  0.227346 seconds (13.65 k allocations: 79.893 MiB, 7.45% gc time)
20	(-0.6551592189184753, Inf, 18669.0)
40	(-0.6540504377294514, 0.0006703430341253422, 18629.0)
60	(-0.6529968740181721, 0.000637365821943902, 18599.0)
80	(-0.651994656376916, 0.0006066712367303272, 18528.0)
100	(-0.6510402097388873, 0.0005780880637544432, 18497.0)
120	(-0.6501303044856787, 0.0005514141827073886, 18457.0)
140	(-0.6492619630247374, 0.0005265030543411954, 18421.0)
160	(-0.6484324010572813, 0.0005032429397311194, 18377.0)
180	(-0.6476390748126541, 0.00048149273512303696, 18320.0)
  0.140954 seconds (11.21 k allocations: 65.371 MiB)
20	(-0.6465929273202671, Inf, 19380.0)
40	(-0.6455967537523492, 0.0006053570327277403, 19351.0)
60	(-0.6446469480761222, 0.0005775134154707177, 19325.0)
80	(-0.6437402347705632, 0.00055161593442749, 19314.0)
100	(-0.6428736647773056, 0.0005274720825079948, 19304.0)
120	(-0.6420445027081354, 0.0005049571237580174, 19296.0)
140	(-0.641250212363083, 0.0004839544507408056, 19261.0)
  0.109265 seconds (8.65 k allocations: 50.838 MiB)
20	(-0.6402776207964139, Inf, 20003.0)
40	(-0.639348454337913, 0.0005667900903204895, 19975.0)
60	(-0.6384595509860491, 0.0005425238305876472, 19978.0)
80	(-0.6376080544435436, 0.0005199635774842529, 19969.0)
100	(-0.6367913418620875, 0.000498971714089698, 19946.0)
  0.078768 seconds (6.11 k allocations: 36.305 MiB)
20	(-0.6358497760949847, Inf, 20513.0)
40	(-0.6349480014594291, 0.0005515616611358067, 20481.0)
60	(-0.6340830579462978, 0.0005293142897022141, 20475.0)
80	(-0.6332522832480191, 0.0005086628114957233, 20462.0)
100	(-0.6324532413690173, 0.0004894730573304011, 20451.0)
  0.078071 seconds (6.22 k allocations: 36.317 MiB)
20	(-0.6315674649425094, Inf, 20741.0)
40	(-0.6307160066129978, 0.0005221377150029289, 20728.0)
60	(-0.6298963156709739, 0.0005029098686479284, 20733.0)
80	(-0.6291060947995825, 0.00048506409368548976, 20746.0)
  0.062542 seconds (5.00 k allocations: 29.055 MiB)
20	(-0.6282561471110252, Inf, 21131.0)
40	(-0.6274365979260017, 0.0005035828652667032, 21132.0)
60	(-0.6266452094561462, 0.0004865157228232242, 21124.0)
  0.047553 seconds (3.66 k allocations: 21.783 MiB)
20	(-0.6258137881187471, Inf, 21357.0)
40	(-0.6250102958743446, 0.0004944536329661447, 21353.0)
  0.054021 seconds (2.56 k allocations: 14.533 MiB, 35.11% gc time)
20	(-0.6241816468837723, Inf, 21527.0)
40	(-0.623379754666627, 0.0004939646529656288, 21536.0)
  0.031323 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6225633637135848, Inf, 21622.0)
40	(-0.621772004301711, 0.0004879597192297947, 21625.0)
  0.031687 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6209736148310784, Inf, 21692.0)
40	(-0.6201982443882084, 0.000478565166673661, 21709.0)
  0.031270 seconds (2.44 k allocations: 14.523 MiB)
20	(-0.6194209366172629, Inf, 21752.0)
40	(-0.6186645324249932, 0.00046730139390682837, 21753.0)
  0.031562 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6179095840396758, Inf, 21805.0)
40	(-0.6171734489000636, 0.000455198630742309, 21818.0)
  0.030995 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6164409451732968, Inf, 21841.0)
40	(-0.6157252705346193, 0.0004429432724294107, 21843.0)
  0.030664 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6150145525447791, Inf, 21874.0)
40	(-0.614318830148198, 0.00043096963473890853, 21890.0)
  0.031338 seconds (2.56 k allocations: 14.535 MiB)
20	(-0.6136288012247954, Inf, 21901.0)
40	(-0.6129521099178034, 0.00041953589497860475, 21901.0)
  0.031366 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6122814494066472, Inf, 21917.0)
40	(-0.6116226409324846, 0.000408785814637952, 21917.0)
  0.030569 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6109699371660438, Inf, 21934.0)
40	(-0.6103277723966974, 0.00039877891964227696, 21937.0)
  0.030854 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6096916133487108, Inf, 21938.0)
40	(-0.609064839740456, 0.0003895266323487027, 21938.0)
  0.032094 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6084438711216758, Inf, 21943.0)
40	(-0.6078312839634794, 0.0003810021389099039, 21943.0)
  0.034610 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6072242421213708, Inf, 21947.0)
40	(-0.6066247083606405, 0.000373163538199314, 21954.0)
  0.031064 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6060304323776683, Inf, 21955.0)
40	(-0.6054429092364885, 0.00036595704387846264, 21960.0)
  0.032112 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.6048603481727153, Inf, 21960.0)
40	(-0.6042838858279121, 0.000359326893385605, 21960.0)
  0.031343 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6037120940555734, Inf, 21960.0)
40	(-0.603145836095968, 0.0003532167485051635, 21960.0)
  0.031770 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6931288506437249, Inf, 6.0)
40	(-0.6931105225507281, 1.0825101346084267e-5, 6.0)
  0.031967 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.6930783664569896, Inf, 86.0)
40	(-0.6930462305576741, 1.89811115228167e-5, 86.0)
  0.040375 seconds (2.44 k allocations: 14.522 MiB, 22.53% gc time)
20	(-0.6929558639365695, Inf, 505.0)
40	(-0.6928658316965042, 5.3183328755057264e-5, 505.0)
  0.031689 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6925429042217653, Inf, 3120.0)
40	(-0.6922250898518171, 0.00018780856746196574, 3031.0)
  0.031442 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.6912671361434383, Inf, 10131.0)
40	(-0.6903460821587789, 0.0005448907737775571, 10007.0)
60	(-0.6894596983895108, 0.0005246551723684416, 9819.0)
80	(-0.6886062383278493, 0.0005054227813979181, 9703.0)
100	(-0.6877841488239567, 0.0004870821333791112, 9631.0)
  0.076838 seconds (6.09 k allocations: 36.306 MiB)
20	(-0.6860619233093129, Inf, 15500.0)
40	(-0.6844307802351707, 0.0009683645616559671, 15399.0)
60	(-0.6828845301419246, 0.0009188093808882105, 15192.0)
80	(-0.6814173417457926, 0.0008725902604338924, 15067.0)
100	(-0.6800241402201878, 0.0008292747063874045, 14969.0)
120	(-0.6787002374980747, 0.0007886474860372696, 14864.0)
140	(-0.677441478086922, 0.0007504043673632676, 14793.0)
160	(-0.6762437862934924, 0.0007145093113681216, 14749.0)
180	(-0.6751036999787957, 0.0006806064094486054, 14646.0)
200	(-0.6740175792526096, 0.0006488108247172616, 14622.0)
220	(-0.6729825204333719, 0.0006186907553401022, 14530.0)
240	(-0.6719946136822349, 0.0005908552234874468, 14428.0)
260	(-0.6710512484487431, 0.0005645339928189204, 14307.0)
280	(-0.6701494157020425, 0.000539971297311477, 14188.0)
300	(-0.6692870275562096, 0.0005166206479752917, 14068.0)
320	(-0.6684611420487239, 0.0004949983470826485, 13939.0)
  0.247090 seconds (19.87 k allocations: 116.209 MiB)
20	(-0.6669427502533459, Inf, 16722.0)
40	(-0.665505513385753, 0.0008629433262404408, 16610.0)
60	(-0.6641438612476946, 0.0008182298236148214, 16527.0)
80	(-0.6628526067344717, 0.000776529746529227, 16375.0)
100	(-0.661626740308526, 0.0007377507813325586, 16266.0)
120	(-0.6604621790994861, 0.000701347627003117, 16238.0)
140	(-0.6593549963715325, 0.0006672368060931346, 16147.0)
160	(-0.6583015289662419, 0.000635268910321314, 16129.0)
180	(-0.6572985638127533, 0.0006051807292834601, 16099.0)
200	(-0.6563428396334064, 0.0005770086702330234, 16004.0)
220	(-0.6554313586519878, 0.000550600287142624, 15923.0)
240	(-0.6545611698162885, 0.0005259333118495981, 15833.0)
260	(-0.6537297865067679, 0.0005027322578961071, 15728.0)
280	(-0.6529348829606311, 0.00048090433224634425, 15675.0)
  0.241748 seconds (17.31 k allocations: 101.676 MiB, 6.30% gc time)
20	(-0.651643987695898, Inf, 17727.0)
40	(-0.6504199846573243, 0.000741631251410148, 17667.0)
60	(-0.6492581918883416, 0.0007044335293872636, 17602.0)
80	(-0.648154333699857, 0.0006697541400789693, 17542.0)
100	(-0.6471044839265225, 0.0006373911209516673, 17489.0)
120	(-0.6461050523570083, 0.0006071493238436711, 17434.0)
140	(-0.6451526374576878, 0.0005789219052600005, 17329.0)
160	(-0.644244086655656, 0.0005525644333498853, 17188.0)
180	(-0.6433765734334685, 0.0005278846225579338, 17147.0)
200	(-0.6425476747266348, 0.0005046420993361622, 17103.0)
220	(-0.6417549599538724, 0.00048284597403293284, 17036.0)
  0.172489 seconds (13.65 k allocations: 79.894 MiB)
20	(-0.640609440623032, Inf, 18464.0)
40	(-0.6395203922637696, 0.0006642481328083912, 18402.0)
60	(-0.6384837791915352, 0.0006326660571188794, 18355.0)
80	(-0.6374960228659143, 0.000603211434915193, 18331.0)
100	(-0.6365537718721391, 0.000575753152734674, 18266.0)
120	(-0.6356539859947319, 0.0005501077153919168, 18235.0)
140	(-0.634793780454384, 0.0005261859634117554, 18157.0)
160	(-0.6339706202964298, 0.0005037790445735212, 18123.0)
180	(-0.6331821653739261, 0.00048277218501412996, 18096.0)
  0.142248 seconds (11.09 k allocations: 65.360 MiB)
20	(-0.6321447659843, Inf, 19133.0)
40	(-0.631155196365712, 0.0006066679742018345, 19107.0)
60	(-0.6302100531898766, 0.00057976772624246, 19092.0)
80	(-0.6293062524139963, 0.0005547150970182425, 19060.0)
100	(-0.6284409389140821, 0.0005313754274018525, 19010.0)
120	(-0.627611520550215, 0.0005095923403066105, 19006.0)
140	(-0.6268156349737652, 0.0004892291168953219, 18985.0)
  0.109064 seconds (8.65 k allocations: 50.838 MiB)
20	(-0.6258436632613416, Inf, 19776.0)
40	(-0.6249134713944654, 0.0005724562465950144, 19761.0)
60	(-0.6240220563300062, 0.0005488934469730405, 19750.0)
80	(-0.6231667142557462, 0.0005269588556417381, 19744.0)
100	(-0.6223449673863458, 0.0005065179637622077, 19741.0)
120	(-0.6215545101655291, 0.00048746879359364253, 19721.0)
  0.098000 seconds (7.43 k allocations: 43.577 MiB)
20	(-0.6206398749836379, Inf, 20354.0)
40	(-0.6197614003962195, 0.0005423481428829708, 20349.0)
60	(-0.6189164690934481, 0.0005219116111929804, 20329.0)
80	(-0.6181027333441752, 0.0005028949846658591, 20311.0)
100	(-0.6173180419768878, 0.0004851806181103867, 20295.0)
  0.087428 seconds (6.22 k allocations: 36.316 MiB, 6.59% gc time)
20	(-0.6164461534112062, Inf, 20676.0)
40	(-0.6156058825216456, 0.0005200964533807743, 20675.0)
60	(-0.6147949474665283, 0.000502190731021049, 20679.0)
80	(-0.6140113211829771, 0.00048551473788725774, 20677.0)
  0.064193 seconds (4.88 k allocations: 29.044 MiB)
20	(-0.6131672474451539, Inf, 20958.0)
40	(-0.6123515137146205, 0.0005059279714099823, 20963.0)
60	(-0.6115620745885983, 0.0004898595831151394, 20965.0)
  0.046062 seconds (3.78 k allocations: 21.794 MiB)
20	(-0.6107317217741723, Inf, 21221.0)
40	(-0.6099275984254777, 0.0004994779575684384, 21192.0)
  0.041238 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6090973278281437, Inf, 21460.0)
40	(-0.6082923250850183, 0.0005005326025434429, 21454.0)
60	(-0.6075107401142841, 0.0004862082418675792, 21469.0)
  0.047596 seconds (3.65 k allocations: 21.783 MiB)
20	(-0.6067125480972934, Inf, 21579.0)
40	(-0.6059365038672943, 0.00048323469086747567, 21577.0)
  0.031635 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.6051514302639156, Inf, 21650.0)
40	(-0.604386915110732, 0.000476515450221612, 21658.0)
  0.030824 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6036186626248387, Inf, 21742.0)
40	(-0.6028692420026953, 0.0004675494435260224, 21781.0)
  0.030540 seconds (2.44 k allocations: 14.523 MiB)
20	(-0.6021196874333068, Inf, 21840.0)
40	(-0.6013872198658708, 0.00045739566192947145, 21827.0)
  0.030551 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.600657025717369, Inf, 21835.0)
40	(-0.5999422393632388, 0.0004467575994585441, 21845.0)
  0.031307 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5992312760439074, Inf, 21847.0)
40	(-0.5985341533688044, 0.0004361012078683291, 21856.0)
  0.031355 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.597841764572544, Inf, 21894.0)
40	(-0.5971617711154581, 0.00042575114768180747, 21894.0)
  0.031268 seconds (2.44 k allocations: 14.523 MiB)
20	(-0.5964870195485082, Inf, 21927.0)
40	(-0.5958233627345935, 0.00041587109789992233, 21925.0)
  0.031484 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.5951651684835482, Inf, 21936.0)
40	(-0.5945169092015071, 0.00040655528850156445, 21937.0)
  0.031383 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5938741411451994, Inf, 21945.0)
40	(-0.5932402824741474, 0.000397842483663364, 21945.0)
  0.030896 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5926118205289056, Inf, 21949.0)
40	(-0.5919913706786256, 0.00038973191796604924, 21953.0)
  0.038448 seconds (2.56 k allocations: 14.533 MiB, 14.51% gc time)
20	(-0.5913761456862332, Inf, 21953.0)
40	(-0.590768140468084, 0.00038220857124425577, 21952.0)
  0.031743 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5901651435955728, Inf, 21952.0)
40	(-0.5895686785572468, 0.0003752370352864363, 21962.0)
  0.031357 seconds (2.44 k allocations: 14.523 MiB)
20	(-0.5889769852161707, Inf, 21962.0)
40	(-0.588391224744245, 0.00036877594310559585, 21962.0)
  0.031530 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.5878099927834121, Inf, 21962.0)
40	(-0.5872341728812065, 0.0003627819461323188, 21962.0)
  0.031337 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6931306409828324, Inf, 2.0)
40	(-0.693114102931689, 9.767830245343163e-6, 2.0)
  0.036373 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6930874199432274, Inf, 71.0)
40	(-0.6930607488367714, 1.5753189290088307e-5, 71.0)
  0.031328 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.6929801879650249, Inf, 431.0)
40	(-0.692899892374279, 4.743079676929166e-5, 431.0)
  0.030673 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6926104207514241, Inf, 2789.0)
40	(-0.6923252349073419, 0.00016851716100411905, 2752.0)
  0.030307 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6914442614609627, Inf, 9399.0)
40	(-0.6905955235353688, 0.0005020348828435584, 9235.0)
60	(-0.6897772245761827, 0.00048426440319155, 9007.0)
  0.045622 seconds (3.78 k allocations: 21.795 MiB)
20	(-0.688027164883457, Inf, 15456.0)
40	(-0.6863699295176204, 0.000982723503798875, 15347.0)
60	(-0.6847993248189734, 0.0009322206363156997, 15227.0)
80	(-0.6833096874936063, 0.000884945495433542, 15108.0)
100	(-0.6818954771786611, 0.0008408431642360838, 14974.0)
120	(-0.6805520760160908, 0.0007993808592679364, 14864.0)
140	(-0.6792750927625997, 0.000760437202334933, 14797.0)
160	(-0.6780605418323331, 0.0007237825453784619, 14739.0)
180	(-0.6769045690801553, 0.0006893491576637061, 14636.0)
200	(-0.6758032537618935, 0.0006571865257985842, 14553.0)
220	(-0.6747535051427538, 0.0006268078352523151, 14440.0)
240	(-0.6737520841274502, 0.0005983090475586132, 14334.0)
260	(-0.6727961208180352, 0.0005714762830437254, 14238.0)
280	(-0.6718830491383881, 0.0005461337024247022, 14160.0)
300	(-0.6710106252292528, 0.0005220935737710479, 14089.0)
320	(-0.6701763786795051, 0.0004994960774186689, 14023.0)
  0.257244 seconds (19.75 k allocations: 116.198 MiB, 2.19% gc time)
20	(-0.6686234551984976, Inf, 16884.0)
40	(-0.6671546652723159, 0.0008810159949627698, 16804.0)
60	(-0.6657641899411175, 0.0008347371972545259, 16688.0)
80	(-0.664446613244097, 0.0007916004553924713, 16627.0)
100	(-0.6631969745011138, 0.0007513474123280345, 16516.0)
120	(-0.6620108606273551, 0.0007136619271615023, 16392.0)
140	(-0.6608838013001387, 0.0006785901134890958, 16273.0)
160	(-0.6598120143427025, 0.0006457279186887827, 16189.0)
180	(-0.6587921885865663, 0.0006148001920633701, 16116.0)
200	(-0.6578210463559904, 0.0005857943670763306, 16060.0)
220	(-0.6568955128681045, 0.0005585949631088761, 15977.0)
240	(-0.6560128756405134, 0.0005329893508526017, 15944.0)
260	(-0.6551703632338474, 0.0005090185429733697, 15804.0)
280	(-0.654365282620373, 0.00048664017670826433, 15671.0)
  0.226940 seconds (17.31 k allocations: 101.676 MiB)
20	(-0.6530448553069857, Inf, 17833.0)
40	(-0.6517940925817394, 0.0007572146739497345, 17753.0)
60	(-0.650608046358838, 0.00071855109728671, 17671.0)
80	(-0.649482266060674, 0.0006825052450260734, 17625.0)
100	(-0.6484127293742956, 0.0006488282135411626, 17588.0)
120	(-0.6473956338304442, 0.000617396041949274, 17509.0)
140	(-0.6464274816208541, 0.0005880321000454929, 17451.0)
160	(-0.6455050294970763, 0.0005605890636868256, 17353.0)
180	(-0.6446253621641771, 0.0005348739920571786, 17294.0)
200	(-0.6437857192204749, 0.0005107982955955971, 17235.0)
220	(-0.6429835081051528, 0.00048826486167671254, 17129.0)
  0.176277 seconds (13.65 k allocations: 79.893 MiB)
20	(-0.641814257901652, Inf, 18659.0)
40	(-0.6407041084398271, 0.0006766299030485342, 18620.0)
60	(-0.6396488642468328, 0.0006435793760507502, 18570.0)
80	(-0.6386447031127236, 0.0006127997925369028, 18525.0)
100	(-0.6376880950471763, 0.0005841210352816045, 18465.0)
120	(-0.636775817294976, 0.0005573626776255424, 18418.0)
140	(-0.6359049879461969, 0.0005323226930632567, 18394.0)
160	(-0.635072812619645, 0.0005089530693245464, 18316.0)
180	(-0.6342768013739082, 0.0004870724745450785, 18277.0)
  0.144623 seconds (11.09 k allocations: 65.360 MiB)
20	(-0.6332224001094674, Inf, 19297.0)
40	(-0.6322181977921821, 0.0006152377902927417, 19246.0)
60	(-0.63126057432071, 0.0005870450659735193, 19202.0)
80	(-0.6303462743781141, 0.0005608010745721533, 19155.0)
100	(-0.629472329405544, 0.0005363361849101934, 19113.0)
120	(-0.6286359994342039, 0.00051351558704992, 19090.0)
140	(-0.6278348116541205, 0.0004921800260981631, 19054.0)
  0.124588 seconds (8.65 k allocations: 50.838 MiB, 4.65% gc time)
20	(-0.6268523084300258, Inf, 19829.0)
40	(-0.6259138104214423, 0.0005772126434796782, 19799.0)
60	(-0.6250161303929417, 0.0005524129956073679, 19774.0)
80	(-0.6241564087560021, 0.0005293342638090397, 19757.0)
100	(-0.6233320091203719, 0.0005078441323145625, 19731.0)
120	(-0.6225405122103405, 0.0004878133421477459, 19703.0)
  0.093906 seconds (7.43 k allocations: 43.577 MiB)
20	(-0.6216222250333061, Inf, 20274.0)
40	(-0.6207421360168746, 0.0005430160646001666, 20265.0)
60	(-0.6198974759889716, 0.0005214280782722234, 20239.0)
80	(-0.6190857371389189, 0.0005013563095720442, 20216.0)
100	(-0.6183046407649913, 0.0004826633714393938, 20204.0)
  0.078839 seconds (6.21 k allocations: 36.316 MiB)
20	(-0.6174352851444136, Inf, 20743.0)
40	(-0.6165994220017265, 0.0005170502545721184, 20698.0)
60	(-0.6157946166610464, 0.0004980864104765658, 20694.0)
  0.050893 seconds (3.66 k allocations: 21.783 MiB)
20	(-0.6149296762382754, Inf, 21042.0)
40	(-0.6140968081381573, 0.0005159963738971036, 21039.0)
60	(-0.6132936510911383, 0.0004978368609308877, 21027.0)
  0.045774 seconds (3.78 k allocations: 21.795 MiB)
20	(-0.6124506013155573, Inf, 21271.0)
40	(-0.611637063190876, 0.0005047899078906769, 21233.0)
60	(-0.6108508553294882, 0.0004880699282534812, 21238.0)
  0.046840 seconds (3.66 k allocations: 21.783 MiB)
20	(-0.6100389276151815, Inf, 21443.0)
40	(-0.6092534234412875, 0.00048811713708475527, 21415.0)
  0.032205 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6084531039135348, Inf, 21549.0)
40	(-0.607677678104899, 0.0004823266623629578, 21548.0)
  0.029023 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6068951048341468, Inf, 21627.0)
40	(-0.6061355661503576, 0.00047289824084381936, 21614.0)
  0.028686 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6053741485114051, Inf, 21690.0)
40	(-0.6046337738621366, 0.00046139789734488124, 21693.0)
  0.027579 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6038950390268688, Inf, 21748.0)
40	(-0.6031753506362875, 0.0004489143313585146, 21766.0)
  0.027976 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6024595718937278, Inf, 21855.0)
40	(-0.6017609202577943, 0.0004361772266369682, 21857.0)
  0.032620 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6010675647331295, Inf, 21867.0)
40	(-0.6003895534118615, 0.00042365392839670946, 21870.0)
  0.030548 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5997176152427386, Inf, 21898.0)
40	(-0.5990593797345869, 0.00041163919019752027, 21899.0)
  0.030530 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5984075768331067, Inf, 21907.0)
40	(-0.5977680047853984, 0.00040029093447410284, 21910.0)
  0.030773 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.5971349465203329, Inf, 21919.0)
40	(-0.5965128088037829, 0.0003896853900071196, 21919.0)
  0.031166 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.595897085534677, Inf, 21952.0)
40	(-0.5952911298654311, 0.00037984017957715495, 21952.0)
  0.030972 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5946913805368789, Inf, 21962.0)
40	(-0.5941003798340616, 0.0003707424640842112, 21962.0)
  0.031359 seconds (2.56 k allocations: 14.535 MiB)
20	(-0.5935153070074342, Inf, 21964.0)
40	(-0.5929380946096221, 0.00036235708077124673, 21964.0)
  0.032233 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5923665023442044, Inf, 21965.0)
40	(-0.591801995836003, 0.00035463362257245776, 21965.0)
  0.031988 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5912427924188147, Inf, 21965.0)
40	(-0.5906900013062325, 0.0003475165570464898, 21965.0)
  0.031272 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.590142199857716, Inf, 21965.0)
40	(-0.589600225377622, 0.00034095017819037795, 21965.0)
  0.031089 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6931301577235442, Inf, 5.0)
40	(-0.6931131364966563, 1.0053212937192537e-5, 5.0)
  0.031211 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6930903858962534, Inf, 34.0)
40	(-0.693067640434452, 1.3434467270031206e-5, 34.0)
  0.031420 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6930192528235557, Inf, 240.0)
40	(-0.6929709546710932, 2.8528636199743916e-5, 238.0)
  0.031552 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.6928227561461723, Inf, 1234.0)
40	(-0.6926757284828355, 8.686109268461197e-5, 1234.0)
  0.031187 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6921954162648815, Inf, 5834.0)
40	(-0.6917273200141142, 0.00027669722255437945, 5755.0)
  0.031678 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6905759755276719, Inf, 13783.0)
40	(-0.6894791469432547, 0.0006492110816529747, 13744.0)
60	(-0.6884335066819584, 0.000619296085488873, 13533.0)
80	(-0.6874356563110372, 0.0005913412859264723, 13419.0)
100	(-0.6864828746538513, 0.0005649518720321947, 13291.0)
120	(-0.685572453236363, 0.0005401259469685048, 13219.0)
140	(-0.6847020794772338, 0.0005166336349505824, 13088.0)
160	(-0.6838692087236367, 0.000494617247754344, 12971.0)
  0.133025 seconds (10.00 k allocations: 58.112 MiB, 4.30% gc time)
20	(-0.6823440080098861, Inf, 16683.0)
40	(-0.6809019339989019, 0.0008579168015789948, 16623.0)
60	(-0.6795373182116263, 0.0008124950678253348, 16519.0)
80	(-0.6782446554422294, 0.0007702469155525203, 16365.0)
100	(-0.6770190750608887, 0.0007308088498017223, 16313.0)
120	(-0.6758563160100691, 0.0006938297989578613, 16230.0)
140	(-0.6747521843720313, 0.0006592806078063454, 16165.0)
160	(-0.6737028370640707, 0.0006269615398401872, 16057.0)
180	(-0.6727046439488229, 0.0005967539570472954, 15987.0)
200	(-0.671754256896371, 0.0005684968640165311, 15862.0)
220	(-0.6708489736780814, 0.0005418103207118838, 15830.0)
240	(-0.6699859847698667, 0.0005167641621457103, 15767.0)
260	(-0.6691625925518726, 0.0004932965917569906, 15668.0)
  0.203180 seconds (15.97 k allocations: 94.404 MiB)
20	(-0.667833518449433, Inf, 17825.0)
40	(-0.666575907003639, 0.0007546079602548839, 17755.0)
60	(-0.6653846856441733, 0.0007152830032209244, 17711.0)
80	(-0.6642552170497593, 0.000678663093762869, 17642.0)
100	(-0.6631832016960988, 0.000644556385951527, 17603.0)
120	(-0.6621648016072995, 0.0006126950154488242, 17539.0)
140	(-0.6611963935557498, 0.0005829581952540165, 17448.0)
160	(-0.6602745744370726, 0.000555220885069398, 17355.0)
180	(-0.6593960744405672, 0.0005294094701299834, 17234.0)
200	(-0.6585581588589724, 0.0005052072350428191, 17172.0)
220	(-0.657758486374295, 0.0004823817771105832, 17153.0)
  0.168721 seconds (13.65 k allocations: 79.894 MiB)
20	(-0.656599630330794, Inf, 18613.0)
40	(-0.655500197318754, 0.0006641092606456432, 18559.0)
60	(-0.6544558680377817, 0.0006312222049240318, 18513.0)
80	(-0.6534627790657922, 0.0006006116282524124, 18494.0)
100	(-0.6525173277912496, 0.0005721279036791007, 18432.0)
120	(-0.6516162398789596, 0.0005455794696933237, 18394.0)
140	(-0.6507565343620009, 0.0005207948592437062, 18336.0)
160	(-0.6499352551608363, 0.0004977645023316594, 18232.0)
  0.124042 seconds (9.87 k allocations: 58.099 MiB)
20	(-0.6488598978989333, Inf, 19343.0)
40	(-0.6478370547788085, 0.0006207186063442978, 19311.0)
60	(-0.6468628658587967, 0.0005915422226147296, 19288.0)
80	(-0.6459338217084257, 0.0005644480586750845, 19256.0)
100	(-0.6450467077613908, 0.0005392636834257979, 19217.0)
120	(-0.6441985892052615, 0.0005158248898262733, 19194.0)
140	(-0.6433867563925386, 0.0004939998509571701, 19126.0)
  0.122515 seconds (8.65 k allocations: 50.838 MiB, 4.71% gc time)
20	(-0.6423962647730289, Inf, 20015.0)
40	(-0.6414507372847243, 0.0005760315962138771, 19983.0)
60	(-0.6405468175066951, 0.0005509868833874922, 19966.0)
80	(-0.6396814857523352, 0.0005277438099283269, 19954.0)
100	(-0.6388519872145791, 0.0005061460975288414, 19918.0)
120	(-0.6380557861627097, 0.00048606467410646946, 19894.0)
  0.094544 seconds (7.44 k allocations: 43.577 MiB)
20	(-0.6371340959910106, Inf, 20543.0)
40	(-0.6362507802648122, 0.0005398412864655247, 20547.0)
60	(-0.6354029658623267, 0.0005184131496535781, 20534.0)
80	(-0.6345880362004376, 0.0004985535461175919, 20484.0)
  0.062410 seconds (5.00 k allocations: 29.055 MiB)
20	(-0.6336858312869166, Inf, 20899.0)
40	(-0.632819037207341, 0.0005308574066223996, 20896.0)
60	(-0.6319849597702849, 0.0005110815709805961, 20887.0)
80	(-0.6311811818946705, 0.0004927581831717491, 20872.0)
  0.061254 seconds (4.87 k allocations: 29.044 MiB)
20	(-0.6303172810973108, Inf, 21180.0)
40	(-0.6294845285165774, 0.0005110527692407425, 21176.0)
60	(-0.628680549277026, 0.0004936383871645868, 21176.0)
  0.046879 seconds (3.78 k allocations: 21.795 MiB)
20	(-0.6278363005723823, Inf, 21368.0)
40	(-0.6270204862177955, 0.000501416153943601, 21380.0)
60	(-0.6262309160119927, 0.00048552158123958195, 21354.0)
  0.046101 seconds (3.66 k allocations: 21.783 MiB)
20	(-0.6254148968808727, Inf, 21500.0)
40	(-0.6246241023825726, 0.0004867553652197927, 21498.0)
  0.030822 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6238175578810853, Inf, 21573.0)
40	(-0.6230346414757505, 0.0004823781238722782, 21573.0)
  0.030901 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6222434958771217, Inf, 21640.0)
40	(-0.6214740889268693, 0.0004745107895998615, 21646.0)
  0.030779 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6207016152410821, Inf, 21704.0)
40	(-0.6199488774675311, 0.00046466761020740396, 21710.0)
  0.030735 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6191965361298505, Inf, 21774.0)
40	(-0.6184619501047263, 0.0004538790825923862, 21778.0)
  0.031231 seconds (2.56 k allocations: 14.535 MiB)
20	(-0.6177300138239473, Inf, 21830.0)
40	(-0.6170139420468833, 0.0004428358707640923, 21830.0)
  0.031078 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6163019197335747, Inf, 21854.0)
40	(-0.6156040162217591, 0.00043197683640806844, 21853.0)
  0.030793 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6149109721977328, Inf, 21896.0)
40	(-0.6142304659167012, 0.00042156699145509967, 21896.0)
  0.032037 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6135552267785152, Inf, 21905.0)
40	(-0.6128911150745199, 0.0004117523481829026, 21922.0)
  0.037544 seconds (2.56 k allocations: 14.534 MiB, 15.24% gc time)
20	(-0.6122324122119055, Inf, 21945.0)
40	(-0.611583601738559, 0.00040259188083485, 21951.0)
  0.031576 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6109401626121549, Inf, 21955.0)
40	(-0.6103055171829445, 0.00039411491945992827, 21955.0)
  0.031193 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6096761013974364, Inf, 21955.0)
40	(-0.6090545321946293, 0.0003862946782538932, 21959.0)
  0.031624 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6084379888462776, Inf, 21959.0)
40	(-0.6078284738677673, 0.0003790920414813414, 21958.0)
  0.031599 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6072237486616053, Inf, 21961.0)
40	(-0.6066253437319037, 0.0003724607806270864, 21961.0)
  0.031539 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6060314809880334, Inf, 21964.0)
40	(-0.6054433302229767, 0.0003663478828461713, 21964.0)
  0.031319 seconds (2.44 k allocations: 14.523 MiB)
20	(-0.6048594747970136, Inf, 21963.0)
40	(-0.604280808099501, 0.0003607016269166255, 21963.0)
  0.032004 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6931302673307973, Inf, 2.0)
40	(-0.6931133557056255, 9.98847780322625e-6, 2.0)
  0.031074 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.693092556934679, Inf, 27.0)
40	(-0.6930717612535823, 1.2282811380244996e-5, 27.0)
  0.031356 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6930273814185641, Inf, 195.0)
40	(-0.6929830554784894, 2.6182152226103712e-5, 195.0)
  0.032014 seconds (2.56 k allocations: 14.533 MiB)
20	(-0.6928344795672622, Inf, 1559.0)
40	(-0.6926871077916908, 8.706380221894666e-5, 1559.0)
  0.031119 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6921567083581682, Inf, 6701.0)
40	(-0.6916405871090578, 0.0003051010084786443, 6563.0)
  0.031107 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6904013511915329, Inf, 14219.0)
40	(-0.689219982568228, 0.0006993574759332166, 13962.0)
60	(-0.6880926973696626, 0.000667786313110603, 13812.0)
80	(-0.6870162064233553, 0.0006381035002560058, 13633.0)
100	(-0.6859873196493937, 0.000610257717819297, 13501.0)
120	(-0.6850034037289208, 0.0005839251827596115, 13432.0)
140	(-0.6840619831417215, 0.0005590177776253708, 13363.0)
160	(-0.6831607515933626, 0.0005354399735769211, 13279.0)
180	(-0.6822973676963492, 0.0005132171717035568, 13195.0)
200	(-0.681469314449662, 0.0004924581373988617, 13010.0)
  0.155161 seconds (12.43 k allocations: 72.633 MiB)
20	(-0.6799535074046449, Inf, 16748.0)
40	(-0.678517015984778, 0.0008558098644142254, 16638.0)
60	(-0.6771543531347815, 0.000812485056875993, 16485.0)
80	(-0.675860614428963, 0.0007719846714455637, 16380.0)
100	(-0.6746310963558759, 0.0007342023420934592, 16281.0)
120	(-0.6734617512918923, 0.0006987581658683649, 16212.0)
140	(-0.6723486776916694, 0.0006655750771778731, 16131.0)
160	(-0.6712882932674786, 0.0006344712809048893, 16015.0)
180	(-0.6702772914098951, 0.0006052898298881382, 15938.0)
200	(-0.6693127378998406, 0.0005778147426515396, 15864.0)
220	(-0.6683918517413422, 0.0005519603548394455, 15843.0)
240	(-0.6675121182492033, 0.0005275724730939593, 15747.0)
260	(-0.6666708742117333, 0.0005047451482392192, 15705.0)
280	(-0.6658660625698763, 0.0004831190573721255, 15649.0)
  0.224864 seconds (17.31 k allocations: 101.676 MiB, 2.54% gc time)
20	(-0.664559996408772, Inf, 17788.0)
40	(-0.6633204112079547, 0.0007452473933852673, 17678.0)
60	(-0.6621427024023586, 0.0007085485523558847, 17625.0)
80	(-0.6610226986081437, 0.0006742856645808999, 17572.0)
100	(-0.6599566271707529, 0.0006422284895526548, 17517.0)
120	(-0.6589408087940897, 0.000612329488356861, 17450.0)
140	(-0.657971996417883, 0.0005843357899288271, 17401.0)
160	(-0.657047208005836, 0.0005580941855964608, 17327.0)
180	(-0.6561636308818575, 0.0005335083487542204, 17280.0)
200	(-0.6553187845328041, 0.0005103828682109716, 17203.0)
220	(-0.6545100302588949, 0.0004888179939185372, 17119.0)
  0.172237 seconds (13.53 k allocations: 79.883 MiB)
20	(-0.6533415630937076, Inf, 18759.0)
40	(-0.6522298944416304, 0.0006728292810928247, 18674.0)
60	(-0.6511709930943246, 0.0006413032640074398, 18635.0)
80	(-0.6501612566062854, 0.0006119017059676748, 18587.0)
100	(-0.6491973719439718, 0.0005844568265213197, 18556.0)
120	(-0.6482763058611476, 0.0005588056320101916, 18547.0)
140	(-0.6473952524900547, 0.0005348160192650659, 18492.0)
160	(-0.6465515604495002, 0.0005123994054119581, 18441.0)
180	(-0.6457428964251424, 0.0004913671668365886, 18389.0)
  0.140659 seconds (11.21 k allocations: 65.371 MiB)
20	(-0.6446783255038053, Inf, 19504.0)
40	(-0.6436620706076615, 0.0006182870033425826, 19475.0)
60	(-0.6426907122108306, 0.0005913215370430334, 19444.0)
80	(-0.6417611408924172, 0.0005662037523364298, 19406.0)
100	(-0.6408705194623594, 0.0005427737408248521, 19358.0)
120	(-0.6400162331581962, 0.0005209011270077909, 19328.0)
140	(-0.6391958818997204, 0.0005004595652870114, 19275.0)
160	(-0.638407235695824, 0.00048134931701608927, 19254.0)
  0.139630 seconds (9.87 k allocations: 58.099 MiB, 5.00% gc time)
20	(-0.6374378277571222, Inf, 20035.0)
40	(-0.6365083954012833, 0.00056793619785309, 20017.0)
60	(-0.6356161314974861, 0.0005455215845666382, 20008.0)
80	(-0.6347584905776434, 0.0005246285153347581, 20000.0)
100	(-0.6339331338285937, 0.0005051349605205409, 19984.0)
120	(-0.6331379118603958, 0.00048692885176613345, 19981.0)
  0.094192 seconds (7.43 k allocations: 43.577 MiB)
20	(-0.6322145948238072, Inf, 20627.0)
40	(-0.6313262509996561, 0.0005445531349763255, 20607.0)
60	(-0.6304703919553886, 0.000524915416121807, 20598.0)
80	(-0.6296447745658156, 0.0005066241443893526, 20610.0)
100	(-0.6288473381847224, 0.000489570975989625, 20614.0)
  0.078215 seconds (6.09 k allocations: 36.305 MiB)
20	(-0.627959416728555, Inf, 20962.0)
40	(-0.627102254311408, 0.0005268030419574422, 20956.0)
60	(-0.626273658930271, 0.0005095055045545232, 20952.0)
80	(-0.6254716540569972, 0.0004933982522992872, 20938.0)
  0.062340 seconds (5.00 k allocations: 29.057 MiB)
20	(-0.6246063749878357, Inf, 21207.0)
40	(-0.6237687492377443, 0.0005158528580406528, 21224.0)
60	(-0.6229568062877373, 0.0005002862348901113, 21221.0)
80	(-0.6221687748256014, 0.0004857888244215701, 21229.0)
  0.062280 seconds (5.00 k allocations: 29.055 MiB)
20	(-0.6213367585100669, Inf, 21374.0)
40	(-0.6205287826874978, 0.0004985877641920875, 21371.0)
  0.031531 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6196919251581208, Inf, 21507.0)
40	(-0.6188783835323951, 0.0005025341211552393, 21503.0)
60	(-0.6180865057320956, 0.0004893915112043184, 21512.0)
  0.046982 seconds (3.65 k allocations: 21.783 MiB)
20	(-0.6172757245940234, Inf, 21686.0)
40	(-0.6164855440406171, 0.0004888262417931279, 21686.0)
  0.031626 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6156842950145448, Inf, 21791.0)
40	(-0.6149022587180897, 0.0004842623089002953, 21770.0)
  0.031890 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.614114723814016, Inf, 21803.0)
40	(-0.6133448805237787, 0.00047717217783428543, 21782.0)
  0.031774 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6125734244382729, Inf, 21812.0)
40	(-0.6118181131271738, 0.0004686082784078237, 21789.0)
  0.031994 seconds (2.44 k allocations: 14.523 MiB)
20	(-0.6110638454670245, Inf, 21851.0)
40	(-0.6103242266221783, 0.00045929809203555086, 21830.0)
  0.032395 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.6095874209214769, Inf, 21850.0)
40	(-0.6088638521794709, 0.00044973895151275323, 21860.0)
  0.038052 seconds (2.44 k allocations: 14.522 MiB, 15.27% gc time)
20	(-0.6081442318431545, Inf, 21862.0)
40	(-0.6074365546642322, 0.0004402520129760929, 21870.0)
  0.031712 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6067335184255374, Inf, 21870.0)
40	(-0.6060412560094977, 0.00043103650883773305, 21873.0)
  0.032425 seconds (2.56 k allocations: 14.534 MiB)
20	(-0.605354015043374, Inf, 21884.0)
40	(-0.60467650289223, 0.00042221104996736534, 21907.0)
  0.031972 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.604004181294629, Inf, 21939.0)
40	(-0.6033406660625467, 0.0004138329714493859, 21939.0)
  0.032252 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6026823625138806, Inf, 21944.0)
40	(-0.6020320457077297, 0.00040593245802621723, 21944.0)
  0.032247 seconds (2.56 k allocations: 14.535 MiB)
20	(-0.6013868705843043, Inf, 21944.0)
40	(-0.6007489668470747, 0.0003985032946709046, 21944.0)
  0.032017 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.6001160757487857, Inf, 21947.0)
40	(-0.5994898305610677, 0.00039152808336283593, 21947.0)
  0.031658 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5988684342123589, Inf, 21964.0)
40	(-0.5982531377210938, 0.0003849806246227439, 21964.0)
  0.030811 seconds (2.44 k allocations: 14.522 MiB)
20	(-0.5976425077659409, Inf, 21965.0)
40	(-0.5970375010917948, 0.0003788305996149033, 21965.0)
  0.031462 seconds (2.56 k allocations: 14.534 MiB)
 16.879824 seconds (19.92 M allocations: 5.296 GiB, 2.82% gc time)





31×5 Array{Float64,2}:
 0.515088  0.722807  0.579659  0.523509  0.576491
 0.73193   0.719298  0.707681  0.674386  0.792281
 0.807018  0.728421  0.711238  0.729123  0.813333
 0.821053  0.738947  0.716927  0.764211  0.814035
 0.847018  0.738947  0.731863  0.797193  0.823158
 0.857544  0.738246  0.737553  0.812632  0.825965
 0.859649  0.740351  0.741821  0.815439  0.825965
 0.860351  0.743158  0.739687  0.81614   0.82386
 0.860351  0.740351  0.743243  0.81614   0.820351
 0.863158  0.740351  0.745377  0.818246  0.818246
 0.863158  0.741754  0.746088  0.820351  0.818947
 0.864561  0.742456  0.747511  0.821053  0.819649
 0.864561  0.741754  0.751067  0.820351  0.818947
 ⋮                                       
 0.866667  0.745965  0.756757  0.816842  0.815439
 0.865965  0.745263  0.756046  0.817544  0.81614
 0.865965  0.745263  0.756046  0.817544  0.815439
 0.866667  0.745263  0.756046  0.818246  0.815439
 0.867368  0.745965  0.756757  0.817544  0.81614
 0.868772  0.746667  0.757468  0.81614   0.81614
 0.86807   0.747368  0.757468  0.815439  0.816842
 0.869474  0.74807   0.75889   0.815439  0.81614
 0.870175  0.749474  0.759602  0.814737  0.81614
 0.869474  0.749474  0.760313  0.815439  0.81614
 0.869474  0.750877  0.761024  0.815439  0.81614
 0.868772  0.751579  0.761735  0.814737  0.815439

We select the lambda with the highest mean AUC.

lambda_idx = argmax(mean(scores; dims=2)[:])
lambda = lambdas[lambda_idx]
1.2589254117941663e-9

Now fitting with the selected lambda:

U = ParProx.LogisticUpdate(; maxiter=30000, step=20, tol=1e-5, verbose=true)
V = ParProx.LogisticVariables{Float64}(X, X_unpen, y, lambda, group_to_variables)
@time ParProx.fit!(U, V)
20	(-0.6882550177051432, Inf, 21956.0)
40	(-0.6837195236951092, 0.0026937348805460793, 21956.0)
60	(-0.679511785655015, 0.0025053340357794455, 21965.0)
80	(-0.6756051154510824, 0.0023314981363499548, 21965.0)
100	(-0.6719749218217413, 0.002171201004250507, 21965.0)
120	(-0.6685985792479504, 0.0020234600555111815, 21965.0)
140	(-0.6654552969825821, 0.0018873411199106962, 21965.0)
160	(-0.6625259907792307, 0.0017619611480350075, 21965.0)
180	(-0.6597931556525485, 0.0016464913819986165, 21965.0)
200	(-0.657240747045071, 0.0015401555941878507, 21965.0)
220	(-0.6548540665157275, 0.0014422302108901696, 21965.0)
240	(-0.6526196543991636, 0.0013520425650367207, 21965.0)
260	(-0.6505251896861824, 0.0012689686446890043, 21965.0)
280	(-0.6485593943226994, 0.001192432235230872, 21965.0)
300	(-0.6467119433282783, 0.0011219029544943168, 21965.0)
320	(-0.6449733910173964, 0.0010568878015751134, 21965.0)
340	(-0.6433350875183512, 0.0009969381847248187, 21965.0)
360	(-0.6417891146766034, 0.0009416391106067039, 21965.0)
380	(-0.6403282223432537, 0.000890609765442399, 21965.0)
400	(-0.6389457698190535, 0.0008435010783504117, 21965.0)
420	(-0.6376356736644256, 0.0007999924376930164, 21965.0)
440	(-0.6363923618480128, 0.0007597883279097544, 21965.0)
460	(-0.6352107238229326, 0.0007226212547809546, 21965.0)
480	(-0.6340860741643302, 0.0006882438302264022, 21965.0)
500	(-0.6330141122508016, 0.0006564315063089342, 21965.0)
520	(-0.6319908927020182, 0.0006269762615459639, 21965.0)
540	(-0.6310127933004296, 0.0005996883688505178, 21965.0)
560	(-0.6300764873580551, 0.0005743938702483829, 21965.0)
580	(-0.6291789183855416, 0.0005509333335855664, 21965.0)
600	(-0.6283172746412843, 0.0005291620728197238, 21965.0)
620	(-0.6274889704966149, 0.000508946087921345, 21965.0)
640	(-0.6266916281082514, 0.0004901619794347562, 21965.0)
660	(-0.6259230617437906, 0.00047269540763908197, 21965.0)
680	(-0.6251812522101219, 0.0004564472625191522, 21965.0)
700	(-0.6244643382747975, 0.0004413232832711681, 21965.0)
720	(-0.6237706071851064, 0.0004272346639491118, 21965.0)
740	(-0.6230984777336673, 0.00041410269349615375, 21965.0)
760	(-0.6224464916390238, 0.0004018536808476909, 21965.0)
780	(-0.6218133025204268, 0.00039042047417725166, 21965.0)
800	(-0.6211976673541614, 0.0003797409647585584, 21965.0)
820	(-0.6205984364939566, 0.00036975900180499864, 21965.0)
840	(-0.62001454777817, 0.0003604218965733519, 21965.0)
860	(-0.6194450187012499, 0.00035168163805699375, 21965.0)
880	(-0.6188889407207329, 0.000343493593988898, 21965.0)
900	(-0.6183454717261189, 0.00033581766323004724, 21965.0)
920	(-0.6178138318877403, 0.00032861620286570264, 21965.0)
940	(-0.6172932994015969, 0.0003218541042221372, 21965.0)
960	(-0.6167832060567257, 0.0003154989134971201, 21965.0)
980	(-0.6162829347943221, 0.00030951960924295525, 21965.0)
1000	(-0.6157919046957436, 0.0003038943920633693, 21965.0)
1020	(-0.6153095815928316, 0.0002985948380473687, 21965.0)
1040	(-0.6148354692515298, 0.0002935979239553986, 21965.0)
1060	(-0.6143691052088736, 0.0002888831563683008, 21965.0)
1080	(-0.6139100610351735, 0.00028442983582714897, 21965.0)
1100	(-0.6134579379054083, 0.00028021996678278887, 21965.0)
1120	(-0.6130123638094814, 0.0002762372477260531, 21965.0)
1140	(-0.6125729938955935, 0.00027246513215288266, 21965.0)
1160	(-0.6121395078830295, 0.000268888647939171, 21965.0)
1180	(-0.6117116027811594, 0.000265497314241384, 21965.0)
1200	(-0.6112889989888657, 0.0002622768432968568, 21965.0)
1220	(-0.6108714371526406, 0.00025921487375999276, 21965.0)
1240	(-0.6104586736106116, 0.00025630185287748425, 21965.0)
1260	(-0.6100504804478583, 0.000253528176731308, 21965.0)
1280	(-0.6096466480304761, 0.0002508826504725721, 21965.0)
1300	(-0.6092469781584482, 0.0002483583175562339, 21965.0)
1320	(-0.6088512839770337, 0.00024594826467512395, 21965.0)
1340	(-0.6084593928170912, 0.00024364380082743026, 21965.0)
1360	(-0.6080711413570444, 0.00024143923117672845, 21965.0)
1380	(-0.6076863780303342, 0.00023932735387210253, 21965.0)
1400	(-0.6073049620702841, 0.00023730155076412193, 21965.0)
1420	(-0.6069267587946968, 0.00023535812912277282, 21965.0)
1440	(-0.6065516436089449, 0.00023349089787695528, 21965.0)
1460	(-0.6061795016959801, 0.00023169385026505673, 21965.0)
1480	(-0.6058102205659971, 0.00022996561190952164, 21965.0)
1500	(-0.6054436975599313, 0.00022830013075066693, 21965.0)
1520	(-0.6050798356411459, 0.00022669396917575352, 21965.0)
1540	(-0.6047185431785465, 0.00022514381985253698, 21965.0)
1560	(-0.6043597343023793, 0.00022364614898736987, 21965.0)
1580	(-0.6040033282211931, 0.0002221978439293532, 21965.0)
1600	(-0.603649248739402, 0.00022079608871419313, 21965.0)
1620	(-0.6032974241715965, 0.0002194381170338705, 21965.0)
1640	(-0.602947786926188, 0.00021812141871379933, 21965.0)
1660	(-0.6026002732332283, 0.00021684365013778894, 21965.0)
1680	(-0.6022548228919468, 0.00021560262222086287, 21965.0)
1700	(-0.6019113792027757, 0.0002143961854756124, 21965.0)
1720	(-0.6015698893038571, 0.00021322197751046118, 21965.0)
1740	(-0.6012303013746018, 0.00021207937981428698, 21965.0)
1760	(-0.600892568612357, 0.00021096528828136595, 21965.0)
1780	(-0.6005566444890935, 0.00020987955935209733, 21965.0)
1800	(-0.6002224869542062, 0.0002088194220563189, 21965.0)
1820	(-0.5998900538590144, 0.00020778496271664078, 21965.0)
1840	(-0.5995593060111507, 0.00020677435755006796, 21965.0)
1860	(-0.5992302063141146, 0.0002057863187780824, 21965.0)
1880	(-0.5989027199794058, 0.00020481942435686287, 21965.0)
1900	(-0.5985768133078854, 0.0002038730130496818, 21965.0)
1920	(-0.5982524552497571, 0.000202945446486151, 21965.0)
1940	(-0.5979296221199814, 0.0002020321328967315, 21965.0)
1960	(-0.597608280819869, 0.00020113898004296227, 21965.0)
1980	(-0.5972884007163425, 0.00020026446281279752, 21965.0)
2000	(-0.5969699554124354, 0.00019940594550814836, 21965.0)
2020	(-0.5966529197670455, 0.00019856265658295343, 21965.0)
2040	(-0.5963372697430976, 0.00019773391872172642, 21965.0)
2060	(-0.596022984613348, 0.000196917671474364, 21965.0)
2080	(-0.5957100408674418, 0.000196115671325889, 21965.0)
2100	(-0.595398416660709, 0.0001953268873019576, 21965.0)
2120	(-0.5950880927978555, 0.00019454967048825858, 21965.0)
2140	(-0.594779056602399, 0.00019377994348308066, 21965.0)
2160	(-0.594471283535589, 0.00019302515510195395, 21965.0)
2180	(-0.5941647538005753, 0.00019228234364288718, 21965.0)
2200	(-0.593859450688779, 0.00019154958215694218, 21965.0)
2220	(-0.5935553575070884, 0.00019082687040522476, 21965.0)
2240	(-0.5932524582990274, 0.00019011375534572488, 21965.0)
2260	(-0.5929507376060625, 0.00018940993330295513, 21965.0)
2280	(-0.5926501819550563, 0.00018871416611859973, 21965.0)
2300	(-0.5923507758579549, 0.00018802772708168507, 21965.0)
2320	(-0.5920525046424279, 0.00018735011229673512, 21965.0)
2340	(-0.5917553548404478, 0.00018668057316497598, 21965.0)
2360	(-0.5914593146983946, 0.00018601803974442412, 21965.0)
2380	(-0.5911643705308086, 0.0001853637330300622, 21965.0)
2400	(-0.5908705100009631, 0.00018471681258665237, 21965.0)
2420	(-0.5905777212795877, 0.0001840769661603518, 21965.0)
2440	(-0.5902859934589827, 0.0001834436207103349, 21965.0)
2460	(-0.5899953162174665, 0.00018281641370348315, 21965.0)
2480	(-0.5897056786771039, 0.0001821957009071159, 21965.0)
2500	(-0.5894170695197203, 0.00018158176536433663, 21965.0)
2520	(-0.5891294778925596, 0.00018097432031908772, 21965.0)
2540	(-0.5888428943261423, 0.00018037250091920148, 21965.0)
2560	(-0.5885573096423833, 0.00017977612896027384, 21965.0)
2580	(-0.5882727133336492, 0.00017918604679468191, 21965.0)
2600	(-0.5879890961630307, 0.00017860145973527802, 21965.0)
2620	(-0.587706450823718, 0.00017802115697529045, 21965.0)
2640	(-0.5874247693003528, 0.00017744558911557865, 21965.0)
2660	(-0.5871440418937985, 0.00017687582169246825, 21965.0)
2680	(-0.5868642600180728, 0.00017631115828556265, 21965.0)
2700	(-0.586585414520629, 0.00017575196071500904, 21965.0)
2720	(-0.586307497722932, 0.00017519730449228123, 21965.0)
2740	(-0.586030501123341, 0.00017464771288750648, 21965.0)
2760	(-0.5857544171880238, 0.0001741025800241928, 21965.0)
2780	(-0.5854792388668546, 0.00017356160485952496, 21965.0)
2800	(-0.5852049581518187, 0.00017302539562812227, 21965.0)
2820	(-0.5849315698077581, 0.00017249220677320135, 21965.0)
2840	(-0.5846590651948506, 0.0001719641902114774, 21965.0)
2860	(-0.5843874368253931, 0.00017144062313555384, 21965.0)
2880	(-0.5841166778718435, 0.00017092109270214965, 21965.0)
2900	(-0.5838467878147979, 0.00017040161909722803, 21965.0)
2920	(-0.5835777545108944, 0.00016988954482161282, 21965.0)
2940	(-0.5833095708293468, 0.00016938170935656532, 21965.0)
2960	(-0.5830422308916688, 0.0001688773252292393, 21965.0)
2980	(-0.5827757299526832, 0.000168375679473921, 21965.0)
3000	(-0.5825100597336647, 0.00016787900802557221, 21965.0)
3020	(-0.5822452141572677, 0.00016738592351376157, 21965.0)
3040	(-0.5819811872417167, 0.00016689636873078097, 21965.0)
3060	(-0.5817179733777046, 0.00016641011131079473, 21965.0)
3080	(-0.581455567140997, 0.00016592703719268997, 21965.0)
3100	(-0.5811939632913136, 0.0001654470329110641, 21965.0)
3120	(-0.5809331564401402, 0.00016497019504646679, 21965.0)
3140	(-0.5806731396585937, 0.00016449750111062445, 21965.0)
3160	(-0.5804139074755897, 0.00016402803200967617, 21965.0)
3180	(-0.5801554547311776, 0.00016356159366366405, 21965.0)
3200	(-0.5798977779690884, 0.0001630971102576303, 21965.0)
3220	(-0.579640870048643, 0.0001626369166033947, 21965.0)
3240	(-0.5793847257453804, 0.00016217980273407404, 21965.0)
3260	(-0.5791293397540546, 0.0001617258225127853, 21965.0)
3280	(-0.5788747070284402, 0.000161274814575731, 21965.0)
3300	(-0.5786208225864456, 0.00016082674088804935, 21965.0)
3320	(-0.5783676815084027, 0.0001603815644533809, 21965.0)
3340	(-0.5781152789354348, 0.00015993924926583692, 21965.0)
3360	(-0.5778636100678973, 0.00015949976026548922, 21965.0)
3380	(-0.5776126704023555, 0.0001590629121137789, 21965.0)
3400	(-0.5773624555758013, 0.00015862861808945886, 21965.0)
3420	(-0.5771129616723073, 0.00015819659691940745, 21965.0)
3440	(-0.576864185774553, 0.00015776621728021294, 21965.0)
3460	(-0.5766161221920986, 0.00015733924001077413, 21965.0)
3480	(-0.5763687647284503, 0.0001569159889379342, 21965.0)
3500	(-0.5761221089242581, 0.00015649536466473494, 21965.0)
3520	(-0.5758761504018823, 0.0001560773175690359, 21965.0)
3540	(-0.5756308848210738, 0.00015566182611123346, 21965.0)
3560	(-0.5753863079012991, 0.0001552488545495699, 21965.0)
3580	(-0.5751424154079189, 0.0001548383758791943, 21965.0)
3600	(-0.5748992031512425, 0.00015443036366371383, 21965.0)
3620	(-0.5746566669856129, 0.0001540247920163618, 21965.0)
3640	(-0.5744148028085271, 0.00015362163557810558, 21965.0)
3660	(-0.5741736080585106, 0.0001532199172834363, 21965.0)
3680	(-0.5739330779228742, 0.0001528210690849932, 21965.0)
3700	(-0.573693207839841, 0.00015242493380423808, 21965.0)
3720	(-0.573453993740421, 0.00015203120038565548, 21965.0)
3740	(-0.5732154323962613, 0.0001516393363853638, 21965.0)
3760	(-0.572977520141428, 0.00015124962168046842, 21965.0)
3780	(-0.5727402522791555, 0.00015086271361636295, 21965.0)
3800	(-0.5725036251363586, 0.00015047796330288984, 21965.0)
3820	(-0.5722676353023222, 0.0001500952056365457, 21965.0)
3840	(-0.5720322786114991, 0.00014971492254024492, 21965.0)
3860	(-0.5717975513851735, 0.00014933680620554608, 21965.0)
3880	(-0.5715634499791528, 0.00014896083643575736, 21965.0)
3900	(-0.5713299708827545, 0.00014858693000496475, 21965.0)
3920	(-0.5710971105425795, 0.00014821511580183748, 21965.0)
3940	(-0.5708648652933321, 0.00014784546677348783, 21965.0)
3960	(-0.570633231623215, 0.00014747788691427916, 21965.0)
3980	(-0.5704022065683017, 0.0001471120289738968, 21965.0)
4000	(-0.5701717876785639, 0.00014674756707888827, 21965.0)
4020	(-0.5699419704548424, 0.00014638580791296658, 21965.0)
4040	(-0.5697127513681751, 0.00014602613533431377, 21965.0)
4060	(-0.5694841271557585, 0.00014566838138781722, 21965.0)
4080	(-0.5692560946724801, 0.00014531247261206218, 21965.0)
4100	(-0.5690286500601818, 0.00014495886502108475, 21965.0)
4120	(-0.5688017900516977, 0.00014460718359874278, 21965.0)
4140	(-0.5685755114091561, 0.00014425741119620947, 21965.0)
4160	(-0.5683498116447402, 0.00014390907101215802, 21965.0)
4180	(-0.5681246868972918, 0.00014356304019027733, 21965.0)
4200	(-0.5679001339757122, 0.00014321889303640649, 21965.0)
4220	(-0.5676761497532496, 0.00014287658997539645, 21965.0)
4240	(-0.5674527315516116, 0.00014253584630709093, 21965.0)
4260	(-0.5672298771404382, 0.00014219637745806793, 21965.0)
4280	(-0.567007582197257, 0.00014185951983043647, 21965.0)
4300	(-0.5667858462966741, 0.0001415227876273246, 21965.0)
4320	(-0.5665646643845536, 0.00014118913642635958, 21965.0)
4340	(-0.5663440334252037, 0.00014085727952588544, 21965.0)
4360	(-0.5661239505004274, 0.00014052714327364847, 21965.0)
4380	(-0.5659044146897556, 0.00014019745305801176, 21965.0)
4400	(-0.5656854210947144, 0.00013987075059309495, 21965.0)
4420	(-0.5654669662693338, 0.00013954610993883296, 21965.0)
4440	(-0.5652490473450767, 0.0001392231636407447, 21965.0)
4460	(-0.565031661477838, 0.00013890189737980453, 21965.0)
4480	(-0.5648148058485417, 0.0001385822964390375, 21965.0)
4500	(-0.5645984780746507, 0.0001382640830363261, 21965.0)
4520	(-0.5643826763130894, 0.00013794691339201443, 21965.0)
4540	(-0.5641673973499205, 0.00013763166495708726, 21965.0)
4560	(-0.5639526378254963, 0.00013731843230417706, 21965.0)
4580	(-0.563738395193909, 0.00013700669641787927, 21965.0)
4600	(-0.5635246665807392, 0.00013669666858356536, 21965.0)
4620	(-0.5633114492303221, 0.00013638827408454188, 21965.0)
4640	(-0.5630987403897444, 0.00013608151237114548, 21965.0)
4660	(-0.5628865387435555, 0.00013577546477522415, 21965.0)
4680	(-0.5626748411323845, 0.00013547131213657203, 21965.0)
4700	(-0.5624636442017426, 0.00013516918068828205, 21965.0)
4720	(-0.5622529453864125, 0.0001348685665482778, 21965.0)
4740	(-0.5620427421411324, 0.00013456945806230813, 21965.0)
4760	(-0.5618330319402758, 0.00013427184376812597, 21965.0)
4780	(-0.5616238122776502, 0.00013397571231985663, 21965.0)
4800	(-0.5614150806663246, 0.00013368105246975318, 21965.0)
4820	(-0.5612068346384642, 0.00013338785306344638, 21965.0)
4840	(-0.5609990717451443, 0.0001330961030538259, 21965.0)
4860	(-0.5607917895561497, 0.00013280579151016608, 21965.0)
4880	(-0.5605849856597649, 0.00013251690762448471, 21965.0)
4900	(-0.5603786576625563, 0.00013222944071641108, 21965.0)
4920	(-0.5601728045218093, 0.00013194252594997155, 21965.0)
4940	(-0.5599674229708503, 0.00013165758972569737, 21965.0)
4960	(-0.5597625102227805, 0.00013137432572386787, 21965.0)
4980	(-0.5595580639553349, 0.0001310924371273619, 21965.0)
5000	(-0.5593540818634964, 0.00013081191386288943, 21965.0)
5020	(-0.5591505616593005, 0.0001305327459711793, 21965.0)
5040	(-0.5589475010716417, 0.00013025492360663624, 21965.0)
5060	(-0.558744897846093, 0.00012997843702880452, 21965.0)
5080	(-0.5585427497447192, 0.00012970327660693145, 21965.0)
5100	(-0.5583410545459, 0.00012942943281306222, 21965.0)
5120	(-0.5581398100441517, 0.00012915689622396362, 21965.0)
5140	(-0.5579390140499584, 0.00012888565751449608, 21965.0)
5160	(-0.5577386644691844, 0.00012861565636379977, 21965.0)
5180	(-0.5575387593027952, 0.00012834683258779381, 21965.0)
5200	(-0.5573392961693585, 0.0001280794326113056, 21965.0)
5220	(-0.5571402732892031, 0.00012781307090271513, 21965.0)
5240	(-0.5569416882214687, 0.00012754817295774958, 21965.0)
5260	(-0.556743539024551, 0.0001272844190134877, 21965.0)
5280	(-0.5565458235584747, 0.00012702193734603426, 21965.0)
5300	(-0.5563485396399833, 0.0001267607566471085, 21965.0)
5320	(-0.5561516852274941, 0.00012650078675357398, 21965.0)
5340	(-0.5559552584843919, 0.00012624189675839841, 21965.0)
5360	(-0.555759257221259, 0.00012598431423315669, 21965.0)
5380	(-0.5555636796571444, 0.00012572777744315628, 21965.0)
5400	(-0.5553685235191254, 0.00012547260348143147, 21965.0)
5420	(-0.5551737868255088, 0.00012521860596305905, 21965.0)
5440	(-0.5549794676610623, 0.000124965742948839, 21965.0)
5460	(-0.5547855646489203, 0.0001247136689141083, 21965.0)
5480	(-0.554592076475181, 0.00012446234395965556, 21965.0)
5500	(-0.5543989999539326, 0.00012421297315179033, 21965.0)
5520	(-0.554206333171449, 0.00012396473902566953, 21965.0)
5540	(-0.5540140746696668, 0.00012371734909996874, 21965.0)
5560	(-0.5538222225975817, 0.00012347105691687583, 21965.0)
5580	(-0.5536307748259176, 0.00012322604235590287, 21965.0)
5600	(-0.5534397293528416, 0.00012298222419972004, 21965.0)
5620	(-0.5532490842495705, 0.00012273955620141573, 21965.0)
5640	(-0.5530588376753663, 0.0001224979824260568, 21965.0)
5660	(-0.5528689878064046, 0.0001222574927134961, 21965.0)
5680	(-0.5526795328312396, 0.00012201807981555583, 21965.0)
5700	(-0.5524904709506936, 0.00012177973654823152, 21965.0)
5720	(-0.5523018003777425, 0.00012154245579385474, 21965.0)
5740	(-0.5521135193374072, 0.00012130623049767626, 21965.0)
5760	(-0.5519256264921836, 0.00012107077943436935, 21965.0)
5780	(-0.5517381197109461, 0.0001208366146681992, 21965.0)
5800	(-0.5515509972068453, 0.00012060351508758974, 21965.0)
5820	(-0.5513642572520161, 0.00012037144336429783, 21965.0)
5840	(-0.5511778981301064, 0.00012014039275206514, 21965.0)
5860	(-0.5509919181361739, 0.00011991035656461847, 21965.0)
5880	(-0.5508063156955564, 0.00011968125144902367, 21965.0)
5900	(-0.5506210891464346, 0.00011945313424296804, 21965.0)
5920	(-0.5504362370964513, 0.00011922583177589194, 21965.0)
5940	(-0.5502517574686864, 0.00011899978624513, 21965.0)
5960	(-0.5500676486137247, 0.00011877472259118988, 21965.0)
5980	(-0.54988390889297, 0.00011855063447038001, 21965.0)
6000	(-0.5497005367349537, 0.00011832747919329105, 21965.0)
6020	(-0.5495175305195384, 0.00011810528878228732, 21965.0)
6040	(-0.549334888590231, 0.00011788408732832546, 21965.0)
6060	(-0.5491526093507461, 0.00011766383659347061, 21965.0)
6080	(-0.5489706912151561, 0.00011744453050126688, 21965.0)
6100	(-0.5487891326078016, 0.00011722616302760856, 21965.0)
6120	(-0.5486079327241218, 0.00011700823678532505, 21965.0)
6140	(-0.5484270895021865, 0.0001167915642662739, 21965.0)
6160	(-0.5482466011430409, 0.0001165759763414854, 21965.0)
6180	(-0.5480664661111831, 0.00011636130347185425, 21965.0)
6200	(-0.5478866830097612, 0.00011614745665515691, 21965.0)
6220	(-0.547707250208196, 0.00011593458746222542, 21965.0)
6240	(-0.5475281661859328, 0.00011572262539463898, 21965.0)
6260	(-0.5473494294463275, 0.00011551155556976531, 21965.0)
6280	(-0.5471710385022435, 0.00011530137240463038, 21965.0)
6300	(-0.5469929918759726, 0.00011509207036222329, 21965.0)
6320	(-0.5468152881607917, 0.00011488360409999754, 21965.0)
6340	(-0.5466379258510263, 0.00011467603813465387, 21965.0)
6360	(-0.5464609036871713, 0.00011446921382428726, 21965.0)
6380	(-0.5462842202779057, 0.00011426321690964568, 21965.0)
6400	(-0.5461078739412721, 0.00011405823591339311, 21965.0)
6420	(-0.5459318632544408, 0.00011385410380302424, 21965.0)
6440	(-0.5457561868034719, 0.00011365081535408203, 21965.0)
6460	(-0.5455808431832432, 0.00011344836538451006, 21965.0)
6480	(-0.5454058309973759, 0.00011324674875485027, 21965.0)
6500	(-0.5452311488581638, 0.00011304596036729091, 21965.0)
6520	(-0.5450567953865009, 0.00011284599516571934, 21965.0)
6540	(-0.5448827692118108, 0.00011264684813519964, 21965.0)
6560	(-0.544709068971977, 0.00011244851430137745, 21965.0)
6580	(-0.5445356933132743, 0.00011225098872966852, 21965.0)
6600	(-0.5443626408902984, 0.00011205426652653109, 21965.0)
6620	(-0.5441899103659004, 0.00011185834283628096, 21965.0)
6640	(-0.5440175004111176, 0.00011166321284365666, 21965.0)
6660	(-0.543845409705109, 0.00011146887177099241, 21965.0)
6680	(-0.5436736369350882, 0.00011127531487927257, 21965.0)
6700	(-0.5435021807962588, 0.00011108253746746004, 21965.0)
6720	(-0.5433310399917503, 0.00011089053487153621, 21965.0)
6740	(-0.5431602132325544, 0.00011069930246454716, 21965.0)
6760	(-0.5429896992374607, 0.00011050883565715326, 21965.0)
6780	(-0.5428194967424265, 0.00011031912378185598, 21961.0)
6800	(-0.5426496044788403, 0.00011013017025574557, 21961.0)
6820	(-0.5424800212792272, 0.00010994190995898981, 21961.0)
6840	(-0.5423107460932837, 0.0001097542673370729, 21961.0)
6860	(-0.5421417784443464, 0.00010956687076314425, 21961.0)
6880	(-0.5419731163670223, 0.0001093806860404355, 21961.0)
6900	(-0.5418047583018967, 0.00010919545047391853, 21961.0)
6920	(-0.5416367030278816, 0.00010901094511113833, 21961.0)
6940	(-0.5414689493311525, 0.00010882716567326564, 21961.0)
6960	(-0.5413014960050927, 0.0001086441079138981, 21961.0)
6980	(-0.5411343418502376, 0.00010846176761881212, 21961.0)
7000	(-0.5409674856742178, 0.00010828014060708292, 21961.0)
7020	(-0.540800926291706, 0.00010809922272874652, 21961.0)
7040	(-0.5406346625873, 0.00010791896900901806, 21961.0)
7060	(-0.5404686934031, 0.0001077394074353622, 21961.0)
7080	(-0.5403030174974733, 0.00010756059278247357, 21961.0)
7100	(-0.5401376337127226, 0.00010738247097569225, 21961.0)
7120	(-0.5399725408979248, 0.00010720503802071436, 21961.0)
7140	(-0.53980773790888, 0.00010702828995298039, 21961.0)
7160	(-0.5396432236080608, 0.00010685222283749481, 21961.0)
7180	(-0.5394789968645586, 0.00010667683277052059, 21961.0)
7200	(-0.5393150570911549, 0.00010650176690499826, 21961.0)
7220	(-0.5391514030050629, 0.00010632747744793605, 21961.0)
7240	(-0.5389880333092737, 0.00010615397407472738, 21961.0)
7260	(-0.5388249468455739, 0.00010598116701583862, 21961.0)
7280	(-0.5386621423811843, 0.00010580910513447953, 21961.0)
7300	(-0.5384996188238084, 0.00010563769752516633, 21961.0)
7320	(-0.538337375087411, 0.00010546694049357989, 21961.0)
7340	(-0.5381754102279888, 0.00010529674206546316, 21961.0)
7360	(-0.5380137230695039, 0.0001051272534566007, 21961.0)
7380	(-0.5378523125103848, 0.00010495842663566752, 21961.0)
7400	(-0.5376911774891258, 0.0001047902359185959, 21961.0)
7420	(-0.5375303169502231, 0.00010462267776397765, 21961.0)
7440	(-0.5373697298441271, 0.00010445574865864733, 21961.0)
7460	(-0.5372094151271904, 0.00010428944511988095, 21961.0)
7480	(-0.5370493717616214, 0.00010412376369253966, 21961.0)
7500	(-0.5368895987286411, 0.00010395869235661668, 21961.0)
7520	(-0.5367300955261292, 0.00010379389521703382, 21961.0)
7540	(-0.5365708610245085, 0.00010362978087097653, 21961.0)
7560	(-0.5364118937785822, 0.00010346655514054684, 21961.0)
7580	(-0.5362531927791495, 0.00010330393465000245, 21961.0)
7600	(-0.536094757022613, 0.00010314191609090955, 21961.0)
7620	(-0.5359365855109425, 0.00010298049617582806, 21961.0)
7640	(-0.5357786772516387, 0.00010281967163804822, 21961.0)
7660	(-0.5356210320767655, 0.00010265890579791557, 21961.0)
7680	(-0.5354636501795285, 0.00010249796354255445, 21961.0)
7700	(-0.5353065285752266, 0.00010233891498372176, 21961.0)
7720	(-0.535149666364955, 0.00010218040215134148, 21961.0)
7740	(-0.5349930625493025, 0.00010202249083291407, 21961.0)
7760	(-0.5348367161294052, 0.00010186518100214357, 21961.0)
7780	(-0.5346806261505475, 0.00010170844421830282, 21961.0)
7800	(-0.5345247916632689, 0.00010155227737285882, 21961.0)
7820	(-0.5343692118152944, 0.00010139661743504094, 21961.0)
7840	(-0.5342138856667117, 0.00010124152182028646, 21961.0)
7860	(-0.5340588121913664, 0.00010108704706291538, 21961.0)
7880	(-0.5339039904604653, 0.00010093313001592289, 21961.0)
7900	(-0.5337494195502921, 0.00010077976767453744, 21961.0)
7920	(-0.53359509854217, 0.00010062695705585417, 21961.0)
7940	(-0.5334410265224265, 0.00010047469519770046, 21961.0)
7960	(-0.533287202582358, 0.0001003229791584421, 21961.0)
7980	(-0.5331336258949819, 0.00010017175592661186, 21961.0)
8000	(-0.5329802957912678, 0.00010002092273140185, 21961.0)
8020	(-0.5328272110696874, 9.987082723664984e-5, 21961.0)
8040	(-0.5326743708410472, 9.97212660092897e-5, 21961.0)
8060	(-0.5325217742209447, 9.957223621181271e-5, 21961.0)
8080	(-0.5323694203297348, 9.942373502673376e-5, 21961.0)
8100	(-0.5322173082924961, 9.927575965588874e-5, 21961.0)
8120	(-0.5320654384324027, 9.912752829200568e-5, 21965.0)
8140	(-0.5319138088247003, 9.898050845220995e-5, 21965.0)
8160	(-0.5317624184758192, 9.883409271247216e-5, 21965.0)
8180	(-0.5316112665292961, 9.868819185795109e-5, 21965.0)
8200	(-0.5314603522085343, 9.854275400876584e-5, 21965.0)
8220	(-0.5313096748706134, 9.839769211513488e-5, 21965.0)
8240	(-0.5311592336727862, 9.825313691665691e-5, 21965.0)
8260	(-0.531009027496973, 9.810926853824864e-5, 21965.0)
8280	(-0.5308590555091666, 9.796590173779113e-5, 21965.0)
8300	(-0.5307093168797588, 9.782303390760401e-5, 21965.0)
8320	(-0.5305598108034214, 9.768064944738622e-5, 21965.0)
8340	(-0.5304105365526818, 9.753869773784702e-5, 21965.0)
8360	(-0.5302614931984984, 9.739731075105017e-5, 21965.0)
8380	(-0.5301126799285483, 9.725641248658683e-5, 21965.0)
8400	(-0.5299640959347566, 9.7116000425432e-5, 21965.0)
8420	(-0.529815740413268, 9.697607206508535e-5, 21965.0)
8440	(-0.5296676126164053, 9.683659093057549e-5, 21965.0)
8460	(-0.5295197117931438, 9.669755945024401e-5, 21965.0)
8480	(-0.5293720370555168, 9.655906741391592e-5, 21965.0)
8500	(-0.5292245876162524, 9.642104924190586e-5, 21965.0)
8520	(-0.5290773626921534, 9.628350251664173e-5, 21965.0)
8540	(-0.5289303615040716, 9.614642483602213e-5, 21965.0)
8560	(-0.5287835832768776, 9.600981381510357e-5, 21965.0)
8580	(-0.5286370272394355, 9.58736670841572e-5, 21965.0)
8600	(-0.5284906926245738, 9.573798229050116e-5, 21965.0)
8620	(-0.5283445788831749, 9.560261698688192e-5, 21965.0)
8640	(-0.5281986851529057, 9.54677763347172e-5, 21965.0)
8660	(-0.5280530119548245, 9.533255518070836e-5, 21965.0)
8680	(-0.5279075577377208, 9.519830984999044e-5, 21965.0)
8700	(-0.5277623211562253, 9.506490602906052e-5, 21965.0)
8720	(-0.5276173014663006, 9.493195042079824e-5, 21965.0)
8740	(-0.5274724980366184, 9.479936946051546e-5, 21965.0)
8760	(-0.5273279101029963, 9.466725034338108e-5, 21965.0)
8780	(-0.5271835368523135, 9.453562535149331e-5, 21965.0)
8800	(-0.5270393775555098, 9.44044396775416e-5, 21965.0)
8820	(-0.5268954314872091, 9.42736911331902e-5, 21965.0)
8840	(-0.5267516979256948, 9.414337754436191e-5, 21965.0)
8860	(-0.5266081761528868, 9.401349675045278e-5, 21965.0)
8880	(-0.5264648654543148, 9.388404660681969e-5, 21965.0)
8900	(-0.5263217651190977, 9.375502498057672e-5, 21965.0)
8920	(-0.5261788744399157, 9.362642975541004e-5, 21965.0)
8940	(-0.5260361927129913, 9.349825882620972e-5, 21965.0)
8960	(-0.5258937192380623, 9.337051010352108e-5, 21965.0)
8980	(-0.5257514533183598, 9.324318151101294e-5, 21965.0)
9000	(-0.5256093942605867, 9.31162709849091e-5, 21965.0)
9020	(-0.5254675413748928, 9.29897764760396e-5, 21965.0)
9040	(-0.5253258939748531, 9.286369594803543e-5, 21965.0)
9060	(-0.5251844513774458, 9.27380273772689e-5, 21965.0)
9080	(-0.5250432129760819, 9.261272084763226e-5, 21965.0)
9100	(-0.5249021781305352, 9.248779860727247e-5, 21965.0)
9120	(-0.5247613460580844, 9.236335431432321e-5, 21965.0)
9140	(-0.5246207160891025, 9.223931401288869e-5, 21965.0)
9160	(-0.5244802875572576, 9.211567574280811e-5, 21965.0)
9180	(-0.5243400597994895, 9.199243755790572e-5, 21965.0)
9200	(-0.5242000321559892, 9.186959752403742e-5, 21965.0)
9220	(-0.5240602041195425, 9.17470557060588e-5, 21965.0)
9240	(-0.5239205749424378, 9.16249700939387e-5, 21965.0)
9260	(-0.5237811439221197, 9.150331126897711e-5, 21965.0)
9280	(-0.523641910411554, 9.138204299471132e-5, 21965.0)
9300	(-0.5235028737668542, 9.126116339771111e-5, 21965.0)
9320	(-0.5233640333472622, 9.114067061628696e-5, 21965.0)
9340	(-0.523225388515127, 9.102056280086635e-5, 21965.0)
9360	(-0.5230869386358856, 9.090083811327671e-5, 21965.0)
9380	(-0.522948683146447, 9.07814498075784e-5, 21965.0)
9400	(-0.5228106214333823, 9.066243111358595e-5, 21965.0)
9420	(-0.5226727527876005, 9.05438450444472e-5, 21965.0)
9440	(-0.5225350765866933, 9.042563486672583e-5, 21965.0)
9460	(-0.5223975922112435, 9.030779879920257e-5, 21965.0)
9480	(-0.5222602990448062, 9.019033507176165e-5, 21965.0)
9500	(-0.5221231964738899, 9.007324192540193e-5, 21965.0)
9520	(-0.5219862838879378, 8.995651761224772e-5, 21965.0)
9540	(-0.5218495606793093, 8.984016039497613e-5, 21965.0)
9560	(-0.5217130262432618, 8.972416854748434e-5, 21965.0)
9580	(-0.5215766799779324, 8.960854035387879e-5, 21965.0)
9600	(-0.5214405212843201, 8.949327410936122e-5, 21965.0)
9620	(-0.5213045495662674, 8.937836811929057e-5, 21965.0)
9640	(-0.5211687642304431, 8.926382069970405e-5, 21965.0)
9660	(-0.5210331646863247, 8.914963017681656e-5, 21965.0)
9680	(-0.5208977503461799, 8.903579488754168e-5, 21965.0)
9700	(-0.5207625206250514, 8.89223131781149e-5, 21965.0)
9720	(-0.5206274749407368, 8.880918340622045e-5, 21965.0)
9740	(-0.5204926127137742, 8.86964039383731e-5, 21965.0)
9760	(-0.520357933367424, 8.858397315160707e-5, 21965.0)
9780	(-0.5202234363276517, 8.847188943304765e-5, 21965.0)
9800	(-0.5200891210231128, 8.83601511788254e-5, 21965.0)
9820	(-0.5199549868851343, 8.824875679598445e-5, 21965.0)
9840	(-0.5198210333476999, 8.813770470022787e-5, 21965.0)
9860	(-0.5196872598474336, 8.802699331687628e-5, 21965.0)
9880	(-0.5195536658235818, 8.791662108190008e-5, 21965.0)
9900	(-0.5194202507179998, 8.780658643907935e-5, 21965.0)
9920	(-0.5192870139751344, 8.7696887842643e-5, 21965.0)
9940	(-0.5191539550420079, 8.758752375618201e-5, 21965.0)
9960	(-0.5190210733682042, 8.747849265119652e-5, 21965.0)
9980	(-0.5188883684058504, 8.736979301061296e-5, 21965.0)
10000	(-0.5187558396981303, 8.726136503047879e-5, 21965.0)
10020	(-0.5186234867021177, 8.715326555371846e-5, 21965.0)
10040	(-0.5184913087889278, 8.704555134746645e-5, 21965.0)
10060	(-0.5183593054207192, 8.693816261892329e-5, 21965.0)
10080	(-0.5182274760621186, 8.683109789482697e-5, 21965.0)
10100	(-0.5180958201802079, 8.672435570966495e-5, 21965.0)
10120	(-0.5179643372445079, 8.661793460758379e-5, 21965.0)
10140	(-0.5178330267269646, 8.651183314042282e-5, 21965.0)
10160	(-0.5177018881643548, 8.640600873761413e-5, 21965.0)
10180	(-0.5175709210221576, 8.630050851855251e-5, 21965.0)
10200	(-0.5174401247291938, 8.61953567935382e-5, 21965.0)
10220	(-0.5173094987923879, 8.60905022408875e-5, 21965.0)
10240	(-0.5171790427176275, 8.598594568422709e-5, 21965.0)
10260	(-0.5170487559439908, 8.588173130639967e-5, 21965.0)
10280	(-0.5169186379599905, 8.577782667058426e-5, 21965.0)
10300	(-0.5167886882564515, 8.567423039549734e-5, 21965.0)
10320	(-0.5166589063264972, 8.55709411080576e-5, 21965.0)
10340	(-0.5165292916766264, 8.546795012942091e-5, 21958.0)
10360	(-0.5163998437939333, 8.536527039545184e-5, 21958.0)
10380	(-0.5162705621782225, 8.526289366528043e-5, 21958.0)
10400	(-0.5161414463316746, 8.516081851093342e-5, 21958.0)
10420	(-0.5160124957587018, 8.505904359862314e-5, 21958.0)
10440	(-0.515883709965935, 8.495756760236929e-5, 21958.0)
10460	(-0.5157550884622119, 8.485638920312706e-5, 21958.0)
10480	(-0.5156266307798184, 8.475549306451016e-5, 21958.0)
10500	(-0.5154983366595006, 8.465474175351036e-5, 21958.0)
10520	(-0.5153702053715296, 8.455444584886288e-5, 21958.0)
10540	(-0.5152422364304274, 8.445444432936693e-5, 21958.0)
10560	(-0.515114429355865, 8.435473393037872e-5, 21958.0)
10580	(-0.5149867836696431, 8.425531337820338e-5, 21958.0)
10600	(-0.5148592988956815, 8.415618140546999e-5, 21958.0)
10620	(-0.5147319745600047, 8.405733675341027e-5, 21958.0)
10640	(-0.5146048101907322, 8.395877816900685e-5, 21958.0)
10660	(-0.5144778053180641, 8.386050440763843e-5, 21958.0)
10680	(-0.514350959474271, 8.376251423059413e-5, 21958.0)
10700	(-0.5142242721936806, 8.366480640735246e-5, 21958.0)
10720	(-0.5140977430126671, 8.356737971338836e-5, 21958.0)
10740	(-0.513971371469639, 8.347023293142581e-5, 21958.0)
10760	(-0.5138451571050277, 8.33733648510777e-5, 21958.0)
10780	(-0.513719099461275, 8.327677426907199e-5, 21958.0)
10800	(-0.5135931980828236, 8.318045998815785e-5, 21958.0)
10820	(-0.513467452724359, 8.308428320555877e-5, 21958.0)
10840	(-0.5133418628977433, 8.298840446746298e-5, 21958.0)
10860	(-0.5132164279833329, 8.289291081619005e-5, 21958.0)
10880	(-0.513091147533444, 8.279768875334077e-5, 21958.0)
10900	(-0.5129660211023374, 8.270273711465079e-5, 21958.0)
10920	(-0.5128410482462061, 8.260805474316019e-5, 21958.0)
10940	(-0.5127162285231653, 8.251364048804522e-5, 21958.0)
10960	(-0.5125915614932411, 8.241949320484427e-5, 21958.0)
10980	(-0.5124670467183607, 8.232561175502306e-5, 21958.0)
11000	(-0.512342683762339, 8.223199500810926e-5, 21958.0)
11020	(-0.5122184721908722, 8.213864183714687e-5, 21958.0)
11040	(-0.5120944115715238, 8.204555112369358e-5, 21958.0)
11060	(-0.5119705014737155, 8.195272175452289e-5, 21958.0)
11080	(-0.5118467414687173, 8.18601526222902e-5, 21958.0)
11100	(-0.5117231311296364, 8.176784262641949e-5, 21958.0)
11120	(-0.5115996700314066, 8.167579067230108e-5, 21958.0)
11140	(-0.5114763577507799, 8.158399567041555e-5, 21958.0)
11160	(-0.5113531940472091, 8.14923368382065e-5, 21958.0)
11180	(-0.5112301783435468, 8.140103699966587e-5, 21958.0)
11200	(-0.5111073101986512, 8.131000628899174e-5, 21958.0)
11220	(-0.5109845891964384, 8.121922823716056e-5, 21958.0)
11240	(-0.5108620149225918, 8.112870178481124e-5, 21958.0)
11260	(-0.5107395869645532, 8.103842587755693e-5, 21958.0)
11280	(-0.5106173049115125, 8.094839946768019e-5, 21958.0)
11300	(-0.510495168354398, 8.085862151252141e-5, 21958.0)
11320	(-0.5103731768858675, 8.076909097529216e-5, 21958.0)
11340	(-0.5102513301002979, 8.067980682493315e-5, 21958.0)
11360	(-0.510129627593777, 8.059076803545763e-5, 21958.0)
11380	(-0.5100080689640932, 8.050197358691185e-5, 21958.0)
11400	(-0.5098866538107271, 8.041342246435062e-5, 21958.0)
11420	(-0.5097653820777172, 8.032488653503002e-5, 21958.0)
11440	(-0.5096442531381797, 8.023674404457931e-5, 21958.0)
11460	(-0.509523266482155, 8.014891768228993e-5, 21958.0)
11480	(-0.5094024217157916, 8.006133064630068e-5, 21958.0)
11500	(-0.5092817184468846, 7.997398194898721e-5, 21958.0)
11520	(-0.5091611562848667, 7.988687060746762e-5, 21958.0)
11540	(-0.5090407348407986, 7.979999564478394e-5, 21958.0)
11560	(-0.5089204537273603, 7.971335608924496e-5, 21958.0)
11580	(-0.5088003125588417, 7.962695097457776e-5, 21958.0)
11600	(-0.5086803109511341, 7.95407793397852e-5, 21958.0)
11620	(-0.508560448521721, 7.945484022900322e-5, 21958.0)
11640	(-0.5084407248896692, 7.936913269202053e-5, 21958.0)
11660	(-0.5083211397180086, 7.928362767819428e-5, 21958.0)
11680	(-0.5082016926006145, 7.919837113305765e-5, 21958.0)
11700	(-0.5080823831471089, 7.911335271798016e-5, 21958.0)
11720	(-0.5079632109827995, 7.902856213028925e-5, 21958.0)
11740	(-0.5078441759940432, 7.894382632598181e-5, 21958.0)
11760	(-0.5077252777349746, 7.885936571100824e-5, 21958.0)
11780	(-0.5076065162159042, 7.877487778999602e-5, 21958.0)
11800	(-0.5074878908861946, 7.869073471621486e-5, 21958.0)
11820	(-0.5073694009989002, 7.860706686492304e-5, 21958.0)
11840	(-0.5072510461883888, 7.852362140379265e-5, 21958.0)
11860	(-0.5071328260905134, 7.844039744134157e-5, 21958.0)
11880	(-0.5070147403426059, 7.83573940893624e-5, 21958.0)
11900	(-0.5068967885834661, 7.827461046660982e-5, 21958.0)
11920	(-0.5067789704533558, 7.8192045695195e-5, 21958.0)
11940	(-0.5066612855939905, 7.810969890221013e-5, 21958.0)
11960	(-0.5065437336666447, 7.802755719520331e-5, 21958.0)
11980	(-0.5064263143099829, 7.794563567196981e-5, 21958.0)
12000	(-0.5063090271579861, 7.786393753349562e-5, 21958.0)
12020	(-0.5061918718581111, 7.778245392498711e-5, 21958.0)
12040	(-0.5060748480592322, 7.770118399474058e-5, 21958.0)
12060	(-0.5059579554116346, 7.762012689502385e-5, 21958.0)
12080	(-0.5058411935670084, 7.753928178149005e-5, 21958.0)
12100	(-0.5057245621784429, 7.745864781325447e-5, 21958.0)
12120	(-0.5056080609004164, 7.737822415533141e-5, 21958.0)
12140	(-0.5054916894141671, 7.72979931191824e-5, 21958.0)
12160	(-0.5053754473573806, 7.72179837199858e-5, 21958.0)
12180	(-0.5052593343828308, 7.713818602389772e-5, 21958.0)
12200	(-0.5051433501888999, 7.705856981418308e-5, 21958.0)
12220	(-0.5050274944559234, 7.697914716058918e-5, 21958.0)
12240	(-0.5049117669107784, 7.689988721568403e-5, 21958.0)
12260	(-0.5047961683895003, 7.682005291248215e-5, 21958.0)
12280	(-0.5046806972688852, 7.674127861455313e-5, 21958.0)
12300	(-0.5045653532155974, 7.666270730036379e-5, 21958.0)
12320	(-0.5044501359674293, 7.658429177116468e-5, 21958.0)
12340	(-0.5043350453024529, 7.650600531828478e-5, 21958.0)
12360	(-0.5042200807141538, 7.642803720881717e-5, 21958.0)
12380	(-0.5041052418744476, 7.635026892339321e-5, 21958.0)
12400	(-0.5039905284565475, 7.627269968107495e-5, 21958.0)
12420	(-0.503875940134958, 7.619532870458761e-5, 21958.0)
12440	(-0.5037614765854679, 7.611815522098726e-5, 21958.0)
12460	(-0.5036471374851446, 7.604117846063048e-5, 21958.0)
12480	(-0.5035329225123262, 7.59643976585065e-5, 21958.0)
12500	(-0.5034188313466156, 7.588781205328062e-5, 21958.0)
12520	(-0.5033048637037323, 7.581139769780936e-5, 21958.0)
12540	(-0.5031910192736602, 7.573517178617001e-5, 21958.0)
12560	(-0.5030772976971967, 7.565916712182887e-5, 21958.0)
12580	(-0.5029636986589361, 7.558335464917966e-5, 21958.0)
12600	(-0.5028502218447046, 7.55077336264234e-5, 21958.0)
12620	(-0.502736866941555, 7.543230331493874e-5, 21958.0)
12640	(-0.5026236336377586, 7.535706298068865e-5, 21958.0)
12660	(-0.5025105216228013, 7.528201189245032e-5, 21958.0)
12680	(-0.5023975305873744, 7.520714932403485e-5, 21958.0)
12700	(-0.5022846602233708, 7.51324745516301e-5, 21958.0)
12720	(-0.502171910223879, 7.505798685520741e-5, 21958.0)
12740	(-0.502059280344016, 7.498364501109431e-5, 21958.0)
12760	(-0.5019467702529394, 7.490950631869148e-5, 21958.0)
12780	(-0.501834379612804, 7.483557552094288e-5, 21958.0)
12800	(-0.501722108121413, 7.476182895873569e-5, 21958.0)
12820	(-0.501609955477736, 7.468826592945124e-5, 21958.0)
12840	(-0.5014979213819003, 7.461488573530692e-5, 21958.0)
12860	(-0.5013860055351868, 7.454168768121485e-5, 21958.0)
12880	(-0.5012742076400225, 7.446867107641147e-5, 21958.0)
12900	(-0.5011625273999774, 7.43958352321678e-5, 21958.0)
12920	(-0.5010509645197557, 7.432317946467633e-5, 21958.0)
12940	(-0.5009395187051922, 7.425070309276115e-5, 21958.0)
12960	(-0.5008281896632458, 7.41784054384723e-5, 21958.0)
12980	(-0.5007169771019944, 7.41062858276061e-5, 21958.0)
13000	(-0.5006058807306281, 7.403434358941217e-5, 21958.0)
13020	(-0.5004949002594449, 7.39625780560781e-5, 21958.0)
13040	(-0.5003840353998452, 7.389098856287988e-5, 21958.0)
13060	(-0.500273285864326, 7.38195744487025e-5, 21958.0)
13080	(-0.5001626513664748, 7.374833505582065e-5, 21958.0)
13100	(-0.5000521316209642, 7.367726973004938e-5, 21958.0)
13120	(-0.4999417264621771, 7.360629872433827e-5, 21958.0)
13140	(-0.4998314355585015, 7.353553276773532e-5, 21958.0)
13160	(-0.49972125855823113, 7.346498533754428e-5, 21958.0)
13180	(-0.49961119518032515, 7.339460938923103e-5, 21958.0)
13200	(-0.4995012451448004, 7.332440428494457e-5, 21958.0)
13220	(-0.49939140817272787, 7.325436938868654e-5, 21958.0)
13240	(-0.49928168398622813, 7.318450406731287e-5, 21958.0)
13260	(-0.4991720723722926, 7.311476511303561e-5, 21958.0)
13280	(-0.4990625730118222, 7.304522335608008e-5, 21958.0)
13300	(-0.49895318560866936, 7.297586355803541e-5, 21958.0)
13320	(-0.498843909889098, 7.290667083502526e-5, 21958.0)
13340	(-0.4987347455803953, 7.283764456958314e-5, 21958.0)
13360	(-0.4986256924108673, 7.276878414688892e-5, 21958.0)
13380	(-0.49851675010983265, 7.270008895573411e-5, 21958.0)
13400	(-0.49840791840761944, 7.263155838689441e-5, 21958.0)
13420	(-0.49829919703555875, 7.256319183498409e-5, 21958.0)
13440	(-0.49819058572598135, 7.24949886964948e-5, 21958.0)
13460	(-0.4980820842312899, 7.242693563558159e-5, 21958.0)
13480	(-0.497973692343029, 7.235900657998572e-5, 21958.0)
13500	(-0.49786540972017157, 7.229129009506704e-5, 21958.0)
13520	(-0.49775723609899253, 7.222373464259612e-5, 21958.0)
13540	(-0.4976491712167423, 7.215633963356082e-5, 21958.0)
13560	(-0.497541214811641, 7.208910448243298e-5, 21958.0)
13580	(-0.4974333666228739, 7.202202860639234e-5, 21958.0)
13600	(-0.4973256263905881, 7.195511142458715e-5, 21958.0)
13620	(-0.4972179938558859, 7.188835236010109e-5, 21958.0)
13640	(-0.49711046876082116, 7.18217508382872e-5, 21958.0)
13660	(-0.4970030509124272, 7.175526351031367e-5, 21958.0)
13680	(-0.49689574056797514, 7.168858962170085e-5, 21958.0)
13700	(-0.4967885368969312, 7.162245594570907e-5, 21958.0)
13720	(-0.4966814396450988, 7.15564775479438e-5, 21958.0)
13740	(-0.4965744485592104, 7.149065386717728e-5, 21958.0)
13760	(-0.496467563386923, 7.142498434479706e-5, 21958.0)
13780	(-0.49636078387681387, 7.135946842477087e-5, 21958.0)
13800	(-0.4962541097783767, 7.129410555335188e-5, 21958.0)
13820	(-0.4961475408420161, 7.122889518008222e-5, 21958.0)
13840	(-0.49604107681904425, 7.116383675657088e-5, 21958.0)
13860	(-0.49593471746167567, 7.109892973742305e-5, 21958.0)
13880	(-0.4958284625230244, 7.103417357898056e-5, 21958.0)
13900	(-0.49572231175709763, 7.096956774155027e-5, 21958.0)
13920	(-0.49561626539206105, 7.090479522752704e-5, 21958.0)
13940	(-0.49551032299032605, 7.084030120445343e-5, 21958.0)
13960	(-0.4954044840300048, 7.077614214182908e-5, 21958.0)
13980	(-0.4952987482686278, 7.071213127105316e-5, 21958.0)
14000	(-0.4951931154645984, 7.06482680644217e-5, 21958.0)
14020	(-0.4950875853771905, 7.058455199549746e-5, 21958.0)
14040	(-0.4949821577665433, 7.052098254115375e-5, 21958.0)
14060	(-0.49487683239365726, 7.045755918057381e-5, 21958.0)
14080	(-0.49477160902039075, 7.039428139491847e-5, 21958.0)
14100	(-0.49466648740945496, 7.033114866847905e-5, 21958.0)
14120	(-0.494561467324411, 7.026816048723095e-5, 21958.0)
14140	(-0.49445654852966525, 7.020531633987512e-5, 21958.0)
14160	(-0.49435173079046535, 7.014261571769149e-5, 21958.0)
14180	(-0.4942470138728968, 7.008005811376061e-5, 21958.0)
14200	(-0.49414239754387923, 7.001764302355957e-5, 21958.0)
14220	(-0.4940378815711605, 6.995536994604146e-5, 21958.0)
14240	(-0.49393346572331576, 6.989323838073895e-5, 21958.0)
14260	(-0.49382914985690407, 6.983118947818007e-5, 21958.0)
14280	(-0.4937249338589911, 6.976920285032289e-5, 21958.0)
14300	(-0.4936208172975652, 6.97074921694471e-5, 21958.0)
14320	(-0.49351679994445913, 6.964592103009781e-5, 21958.0)
14340	(-0.4934128815723127, 6.958448894387255e-5, 21958.0)
14360	(-0.4933090622287254, 6.952301182206887e-5, 21958.0)
14380	(-0.49320534168882785, 6.946167215035282e-5, 21958.0)
14400	(-0.4931017194537887, 6.940065347793727e-5, 21958.0)
14420	(-0.4929981952994282, 6.93397719344085e-5, 21958.0)
14440	(-0.492894769002355, 6.927902704239314e-5, 21958.0)
14460	(-0.492791440339963, 6.921841832671315e-5, 21958.0)
14480	(-0.49268820909042765, 6.915794531416439e-5, 21958.0)
14500	(-0.4925850750327022, 6.909760753381552e-5, 21958.0)
14520	(-0.4924820379465145, 6.903740451674947e-5, 21958.0)
14540	(-0.4923790976123627, 6.897733579658546e-5, 21958.0)
14560	(-0.49227625381151263, 6.891740090843939e-5, 21958.0)
14580	(-0.49217350632599377, 6.885759938992934e-5, 21958.0)
14600	(-0.49207085493859565, 6.879793078080547e-5, 21958.0)
14620	(-0.49196829943286463, 6.873839462272808e-5, 21958.0)
14640	(-0.49186583959310065, 6.867899045930646e-5, 21958.0)
14660	(-0.49176347520435343, 6.861971783643507e-5, 21958.0)
14680	(-0.4916612060524188, 6.85605763022209e-5, 21958.0)
14700	(-0.49155903192383593, 6.850156540642661e-5, 21958.0)
14720	(-0.4914569526058844, 6.844268470047185e-5, 21958.0)
14740	(-0.49135496788657884, 6.83839337391842e-5, 21958.0)
14760	(-0.4912530775546678, 6.832531207789737e-5, 21958.0)
14780	(-0.4911512813996296, 6.826681927446259e-5, 21958.0)
14800	(-0.49104957921166836, 6.820845488921292e-5, 21958.0)
14820	(-0.49094797078171165, 6.815021848377334e-5, 21958.0)
14840	(-0.4908464559014073, 6.809210962169506e-5, 21958.0)
14860	(-0.49074503436311917, 6.80341278691271e-5, 21958.0)
14880	(-0.4906437059599248, 6.797627279358907e-5, 21958.0)
14900	(-0.4905424704856116, 6.79185439648661e-5, 21958.0)
14920	(-0.49044132773467486, 6.786094095396753e-5, 21958.0)
14940	(-0.490340277502313, 6.780346333469242e-5, 21958.0)
14960	(-0.49023931958442485, 6.774611068262553e-5, 21958.0)
14980	(-0.4901384537776076, 6.768888257431893e-5, 21958.0)
15000	(-0.49003767987915237, 6.763177858926777e-5, 21958.0)
15020	(-0.4899369976870419, 6.757479830808613e-5, 21958.0)
15040	(-0.48983640699994685, 6.751794131384965e-5, 21958.0)
15060	(-0.48973590764034397, 6.74611916699144e-5, 21958.0)
15080	(-0.48963549947781526, 6.740451779237712e-5, 21958.0)
15100	(-0.48953518222071435, 6.734802796087825e-5, 21958.0)
15120	(-0.489434955670432, 6.729165976720466e-5, 21958.0)
15140	(-0.4893348196290322, 6.723541280310838e-5, 21958.0)
15160	(-0.4892347738992489, 6.717928666232635e-5, 21958.0)
15180	(-0.4891348182844838, 6.712328093991093e-5, 21958.0)
15200	(-0.4890349525888021, 6.706739523346111e-5, 21958.0)
15220	(-0.488935176616931, 6.701162914144639e-5, 21958.0)
15240	(-0.4888354901742549, 6.695598226529567e-5, 21958.0)
15260	(-0.4887358930668154, 6.690045420637855e-5, 21958.0)
15280	(-0.4886363851013053, 6.684504456966045e-5, 21958.0)
15300	(-0.48853696608506764, 6.678975296068375e-5, 21958.0)
15320	(-0.4884376358260923, 6.673457898706036e-5, 21958.0)
15340	(-0.488338394133013, 6.667952225817475e-5, 21958.0)
15360	(-0.4882392408151053, 6.66245823846256e-5, 21958.0)
15380	(-0.48814017568228196, 6.656975897979358e-5, 21958.0)
15400	(-0.48804119854509265, 6.651505165723152e-5, 21958.0)
15420	(-0.4879423092147187, 6.646046003364975e-5, 21958.0)
15440	(-0.4878435075029724, 6.640598372615667e-5, 21958.0)
15460	(-0.48774479322229247, 6.635162235461041e-5, 21958.0)
15480	(-0.48764616618574314, 6.62973755393812e-5, 21958.0)
15500	(-0.48754762620701014, 6.624324290325553e-5, 21958.0)
15520	(-0.4874491731003979, 6.618922407076571e-5, 21958.0)
15540	(-0.4873508066808276, 6.613531866759385e-5, 21958.0)
15560	(-0.4872525270945155, 6.608130396260755e-5, 21958.0)
15580	(-0.4871543343242625, 6.602728982909639e-5, 21958.0)
15600	(-0.48705622769135365, 6.597372115587932e-5, 21958.0)
15620	(-0.48695820701313725, 6.592026443923983e-5, 21958.0)
15640	(-0.4868602721075648, 6.586691931290443e-5, 21958.0)
15660	(-0.48676242279318854, 6.581368541209189e-5, 21958.0)
15680	(-0.48666465888915905, 6.576056237358893e-5, 21958.0)
15700	(-0.4865669802152221, 6.57075498359381e-5, 21958.0)
15720	(-0.4864693865917167, 6.5654647438916e-5, 21958.0)
15740	(-0.4863718778395721, 6.560185482405712e-5, 21958.0)
15760	(-0.486274453780305, 6.554917163469236e-5, 21958.0)
15780	(-0.48617711423601884, 6.5496597514344e-5, 21958.0)
15800	(-0.48607985902939826, 6.544413211016297e-5, 21958.0)
15820	(-0.48598268798370947, 6.539177506882123e-5, 21958.0)
15840	(-0.48588560092279554, 6.533952603998668e-5, 21958.0)
15860	(-0.4857885976710759, 6.528738467348511e-5, 21958.0)
15880	(-0.4856916780535423, 6.523535062172947e-5, 21958.0)
15900	(-0.48559484189575713, 6.51834235380024e-5, 21958.0)
15920	(-0.4854980890238511, 6.513160307705494e-5, 21958.0)
15940	(-0.48540141926451974, 6.507988889578024e-5, 21958.0)
15960	(-0.48530483244502265, 6.502828065138339e-5, 21958.0)
15980	(-0.48520832839318023, 6.497677800313877e-5, 21958.0)
16000	(-0.48511190693737066, 6.492538061216702e-5, 21958.0)
16020	(-0.485015567906529, 6.487408814001554e-5, 21958.0)
16040	(-0.4849193111301432, 6.482290025075275e-5, 21958.0)
16060	(-0.48482313643825314, 6.477181660891309e-5, 21958.0)
16080	(-0.4847270436614478, 6.472083688080632e-5, 21958.0)
16100	(-0.4846310326308626, 6.466996073433155e-5, 21958.0)
16120	(-0.48453510317817755, 6.461918783845493e-5, 21958.0)
16140	(-0.4844392551356142, 6.456851786407037e-5, 21958.0)
16160	(-0.4843434883359349, 6.451795048239271e-5, 21958.0)
16180	(-0.48424780261243855, 6.4467485367277e-5, 21958.0)
16200	(-0.4841521977989602, 6.441712219282617e-5, 21958.0)
16220	(-0.48405667372986755, 6.436686063514956e-5, 21958.0)
16240	(-0.4839612302400583, 6.431670037213965e-5, 21958.0)
16260	(-0.48386586716496033, 6.426664108137809e-5, 21958.0)
16280	(-0.48377058434052633, 6.421668244376511e-5, 21958.0)
16300	(-0.4836753816032339, 6.416682414015377e-5, 21958.0)
16320	(-0.48358025879008265, 6.411706585314631e-5, 21958.0)
16340	(-0.4834852157385913, 6.406740726702048e-5, 21958.0)
16360	(-0.4833902522867966, 6.401784806683233e-5, 21958.0)
16380	(-0.4832953683322356, 6.396834817040891e-5, 21958.0)
16400	(-0.4832005639895686, 6.391876120377541e-5, 21958.0)
16420	(-0.48310583876436825, 6.386949786354779e-5, 21958.0)
16440	(-0.48301119249671565, 6.382033266603813e-5, 21958.0)
16460	(-0.48291662503596877, 6.377125938862623e-5, 21958.0)
16480	(-0.4828221363777639, 6.37221794083139e-5, 21958.0)
16500	(-0.4827277262166715, 6.367329579335743e-5, 21958.0)
16520	(-0.48263339437789143, 6.362452049019833e-5, 21958.0)
16540	(-0.4825391407040165, 6.357584180218404e-5, 21958.0)
16560	(-0.48244496503813483, 6.352725942796444e-5, 21958.0)
16580	(-0.48235086722382914, 6.347877306667723e-5, 21958.0)
16600	(-0.4822568471051745, 6.343038241869756e-5, 21958.0)
16620	(-0.482162904526737, 6.338208718530169e-5, 21958.0)
16640	(-0.48206903933356976, 6.333388707009111e-5, 21958.0)
16660	(-0.48197525149103315, 6.32857009199356e-5, 21958.0)
16680	(-0.48188154094965385, 6.323753875714356e-5, 21958.0)
16700	(-0.4817879073338619, 6.318962067953914e-5, 21958.0)
16720	(-0.4816943504906375, 6.314179654757685e-5, 21958.0)
16740	(-0.4816008702674399, 6.309406606971844e-5, 21958.0)
16760	(-0.4815074665122045, 6.304642895611907e-5, 21958.0)
16780	(-0.48141413907334074, 6.299888491825355e-5, 21958.0)
16800	(-0.48132088779973, 6.295143366895456e-5, 21958.0)
16820	(-0.48122771254072433, 6.29040749216265e-5, 21958.0)
16840	(-0.4811346131461439, 6.285680839140793e-5, 21958.0)
16860	(-0.48104158946627534, 6.280963379434792e-5, 21958.0)
16880	(-0.48094864135186954, 6.276255084778158e-5, 21958.0)
16900	(-0.48085576865414026, 6.27155592699559e-5, 21958.0)
16920	(-0.48076297122476225, 6.266865878018056e-5, 21958.0)
16940	(-0.48067024891586746, 6.262184910021563e-5, 21958.0)
16960	(-0.4805776015800466, 6.257512995063599e-5, 21958.0)
16980	(-0.48048502907034435, 6.25285010550683e-5, 21958.0)
17000	(-0.48039253124025855, 6.248196213764251e-5, 21958.0)
17020	(-0.48030010794373834, 6.243551292351736e-5, 21958.0)
17040	(-0.4802077590351828, 6.238915313869358e-5, 21958.0)
17060	(-0.48011548436943763, 6.234288251128971e-5, 21958.0)
17080	(-0.4800232838017952, 6.229670076918013e-5, 21958.0)
17100	(-0.4799311571879912, 6.225060764250857e-5, 21958.0)
17120	(-0.4798391044692291, 6.220454540230262e-5, 21958.0)
17140	(-0.47974712547402576, 6.215859022121226e-5, 21958.0)
17160	(-0.4796552200028119, 6.211276111584582e-5, 21958.0)
17180	(-0.47956338814302, 6.206686413560687e-5, 21958.0)
17200	(-0.47947162971232693, 6.20210816147461e-5, 21958.0)
17220	(-0.4793799443814039, 6.197551296489763e-5, 21958.0)
17240	(-0.47928833200903315, 6.193003107537835e-5, 21958.0)
17260	(-0.4791967924544267, 6.188463568431242e-5, 21958.0)
17280	(-0.47910532564468145, 6.183928092165356e-5, 21958.0)
17300	(-0.47901393137612863, 6.179405522419722e-5, 21958.0)
17320	(-0.47892260950575427, 6.174891761569619e-5, 21958.0)
17340	(-0.47883135989447173, 6.170386546918478e-5, 21958.0)
17360	(-0.4787401824036158, 6.165889852787053e-5, 21958.0)
17380	(-0.47864907689494, 6.161401653671547e-5, 21958.0)
17400	(-0.47855804323061735, 6.156921923995894e-5, 21958.0)
17420	(-0.47846708127323545, 6.15245063850602e-5, 21958.0)
17440	(-0.47837619088579775, 6.147987771856933e-5, 21958.0)
17460	(-0.4782853719317203, 6.143533298901876e-5, 21958.0)
17480	(-0.4781946242748304, 6.139087194587268e-5, 21958.0)
17500	(-0.47810394777936494, 6.13464943393774e-5, 21958.0)
17520	(-0.47801334230996945, 6.130219992052446e-5, 21958.0)
17540	(-0.4779228077316957, 6.125798844168961e-5, 21958.0)
17560	(-0.4778323439100005, 6.121385965599503e-5, 21958.0)
17580	(-0.4777419507107438, 6.116981331768552e-5, 21958.0)
17600	(-0.47765162800018757, 6.112584918171595e-5, 21958.0)
17620	(-0.47756137564499385, 6.108196700412743e-5, 21958.0)
17640	(-0.47747119351222345, 6.103816654186016e-5, 21958.0)
17660	(-0.4773810814693345, 6.099444755264123e-5, 21958.0)
17680	(-0.4772910393841799, 6.0950809795849515e-5, 21958.0)
17700	(-0.47720106712500776, 6.09072530303744e-5, 21958.0)
17720	(-0.47711116456045766, 6.0863777017660104e-5, 21958.0)
17740	(-0.4770213315595605, 6.082038151900067e-5, 21958.0)
17760	(-0.4769315679917364, 6.077706629708131e-5, 21958.0)
17780	(-0.4768418737267942, 6.073383111481383e-5, 21958.0)
17800	(-0.47675224863492843, 6.069067573699105e-5, 21958.0)
17820	(-0.4766626925867186, 6.0647599928821516e-5, 21958.0)
17840	(-0.4765732054531276, 6.060460345653145e-5, 21958.0)
17860	(-0.4764837871055009, 6.056168608665099e-5, 21958.0)
17880	(-0.47639443743660265, 6.051883333654707e-5, 21958.0)
17900	(-0.476305156500119, 6.047593621856361e-5, 21958.0)
17920	(-0.47621594401866385, 6.0433219012861966e-5, 21958.0)
17940	(-0.47612679980963396, 6.039061755493246e-5, 21958.0)
17960	(-0.4760377237462534, 6.0348094054442625e-5, 21958.0)
17980	(-0.47594871570212, 6.030564828336794e-5, 21958.0)
18000	(-0.47585977555120484, 6.0263280013803244e-5, 21958.0)
18020	(-0.4757709031678491, 6.022098902003193e-5, 21958.0)
18040	(-0.4756820984267638, 6.017877507626985e-5, 21958.0)
18060	(-0.4755933612030293, 6.0136637957041674e-5, 21958.0)
18080	(-0.47550469137209134, 6.009457743947633e-5, 21958.0)
18100	(-0.47541608880976327, 6.0052593298981166e-5, 21958.0)
18120	(-0.475327553392222, 6.0010685313719296e-5, 21958.0)
18140	(-0.47523908575350243, 5.9968339758549656e-5, 21958.0)
18160	(-0.47515068505528807, 5.992655469705488e-5, 21958.0)
18180	(-0.47506235113502004, 5.9884872120865886e-5, 21958.0)
18200	(-0.47497408387031026, 5.984326482413362e-5, 21958.0)
18220	(-0.47488588313913743, 5.980173258225333e-5, 21958.0)
18240	(-0.47479774881985015, 5.976027516844723e-5, 21958.0)
18260	(-0.47470968079117837, 5.971889234804208e-5, 21958.0)
18280	(-0.47462167893224727, 5.967758387684768e-5, 21958.0)
18300	(-0.47453374312261465, 5.963634948522834e-5, 21958.0)
18320	(-0.47444587324234694, 5.959518885185116e-5, 21958.0)
18340	(-0.4743580691722008, 5.955410153208889e-5, 21958.0)
18360	(-0.4742703307940982, 5.9513086758891376e-5, 21958.0)
18380	(-0.4741826579924569, 5.947214286232676e-5, 21958.0)
18400	(-0.47409505065700913, 5.943126625974582e-5, 21958.0)
18420	(-0.4740075090705984, 5.939019026159467e-5, 21958.0)
18440	(-0.4739200328169764, 5.934938916245116e-5, 21958.0)
18460	(-0.4738326216686826, 5.9308734932760484e-5, 21958.0)
18480	(-0.4737452755451217, 5.926812795285744e-5, 21958.0)
18500	(-0.4736579943642181, 5.9227569244260325e-5, 21958.0)
18520	(-0.4735707779645325, 5.918711268561694e-5, 21958.0)
18540	(-0.4734836262293202, 5.9146727972343226e-5, 21958.0)
18560	(-0.47339653900681145, 5.910643890033753e-5, 21958.0)
18580	(-0.47330951618101474, 5.906622121214148e-5, 21958.0)
18600	(-0.47322255763631016, 5.902607467815617e-5, 21958.0)
18620	(-0.47313566325742856, 5.898599908270098e-5, 21958.0)
18640	(-0.47304883292944166, 5.8945994216782855e-5, 21958.0)
18660	(-0.4729620665377562, 5.8906059875272195e-5, 21958.0)
18680	(-0.47287536396810936, 5.8866195855999837e-5, 21958.0)
18700	(-0.47278872510656594, 5.882640195874058e-5, 21958.0)
18720	(-0.4727021498395168, 5.878667798412088e-5, 21958.0)
18740	(-0.4726156384514562, 5.87467536006659e-5, 21958.0)
18760	(-0.47252919091961815, 5.8706837440740455e-5, 21958.0)
18780	(-0.4724428066458566, 5.866732030043495e-5, 21958.0)
18800	(-0.47235648551783743, 5.86278723041665e-5, 21958.0)
18820	(-0.47227022742354235, 5.858849325916767e-5, 21958.0)
18840	(-0.4721840322512713, 5.854918297084896e-5, 21958.0)
18860	(-0.4720978998896394, 5.8509941246682583e-5, 21958.0)
18880	(-0.4720118302275771, 5.8470767893902864e-5, 21958.0)
18900	(-0.471925823154327, 5.843166272180697e-5, 21958.0)
18920	(-0.47183987855944526, 5.839262553877613e-5, 21958.0)
18940	(-0.4717539963327983, 5.835365615514221e-5, 21958.0)
18960	(-0.47166817636456265, 5.831475438141561e-5, 21958.0)
18980	(-0.4715824185452241, 5.82759200285496e-5, 21958.0)
19000	(-0.47149672276557564, 5.8237152908770605e-5, 21958.0)
19020	(-0.4714110889167177, 5.819845283414516e-5, 21958.0)
19040	(-0.4713255170994087, 5.815967732123767e-5, 21958.0)
19060	(-0.47124000700855145, 5.812110223340635e-5, 21958.0)
19080	(-0.4711545585239539, 5.8082601928178685e-5, 21958.0)
19100	(-0.47106917153792954, 5.804416792656359e-5, 21958.0)
19120	(-0.47098384594309267, 5.800580004477654e-5, 21958.0)
19140	(-0.4708985816323583, 5.796749809883748e-5, 21958.0)
19160	(-0.47081337849893956, 5.7929261906571396e-5, 21958.0)
19180	(-0.4707282364363473, 5.7891091285872746e-5, 21958.0)
19200	(-0.4706431553383894, 5.785298605515869e-5, 21958.0)
19220	(-0.470558135099169, 5.781494603386014e-5, 21958.0)
19240	(-0.4704731756130835, 5.777697104204477e-5, 21958.0)
19260	(-0.47038827677482337, 5.773906090053069e-5, 21958.0)
19280	(-0.4703034384793724, 5.770121542986736e-5, 21958.0)
19300	(-0.4702186606220045, 5.76634344526768e-5, 21958.0)
19320	(-0.4701339430982844, 5.762571779112445e-5, 21958.0)
19340	(-0.47004928592096495, 5.758798574320478e-5, 21958.0)
19360	(-0.46996468892664894, 5.755035815029169e-5, 21958.0)
19380	(-0.4698801519547401, 5.7512833135703256e-5, 21958.0)
19400	(-0.4697956749019501, 5.7475371735327614e-5, 21958.0)
19420	(-0.46971125769550537, 5.743795320525675e-5, 21958.0)
19440	(-0.46962690027312837, 5.740057041778692e-5, 21958.0)
19460	(-0.4695426024619219, 5.73632986653278e-5, 21958.0)
19480	(-0.46945836415972986, 5.732608983462611e-5, 21958.0)
19500	(-0.46937418526467717, 5.728894375364698e-5, 21958.0)
19520	(-0.4692900656751676, 5.725186025190425e-5, 21958.0)
19540	(-0.46920600528988415, 5.721483915857193e-5, 21958.0)
19560	(-0.46912200400778725, 5.717788030384463e-5, 21958.0)
19580	(-0.46903806172811335, 5.714098351893794e-5, 21958.0)
19600	(-0.4689541783503751, 5.710414863480414e-5, 21958.0)
19620	(-0.4688703537743597, 5.706737548349271e-5, 21958.0)
19640	(-0.46878658790012717, 5.703066389807539e-5, 21958.0)
19660	(-0.4687028806280109, 5.699401371124807e-5, 21958.0)
19680	(-0.46861923185861504, 5.695742475740982e-5, 21958.0)
19700	(-0.46853564149281474, 5.692089687066012e-5, 21958.0)
19720	(-0.4684521094317547, 5.688442988608426e-5, 21958.0)
19740	(-0.4683686355768479, 5.684802363952695e-5, 21958.0)
19760	(-0.46828521982977594, 5.6811677966496286e-5, 21958.0)
19780	(-0.468201862092485, 5.67753927053021e-5, 21958.0)
19800	(-0.46811856226718895, 5.6739167691876634e-5, 21958.0)
19820	(-0.46803532025636546, 5.670300276491676e-5, 21958.0)
19840	(-0.467952135962756, 5.666689776293529e-5, 21958.0)
19860	(-0.4678690092893649, 5.6630852524979686e-5, 21958.0)
19880	(-0.4677859401394579, 5.659486689123743e-5, 21958.0)
19900	(-0.46770292841656297, 5.65589407009563e-5, 21958.0)
19920	(-0.4676199740244663, 5.6523073796264625e-5, 21958.0)
19940	(-0.4675370768672142, 5.6487266017897776e-5, 21958.0)
19960	(-0.46745423684911086, 5.645151720792163e-5, 21958.0)
19980	(-0.46737145387471707, 5.641582720939267e-5, 21958.0)
20000	(-0.4672887278488509, 5.6380195864693726e-5, 21958.0)
20020	(-0.4672060586765851, 5.6344623017955444e-5, 21958.0)
20040	(-0.46712344626261704, 5.630910894274961e-5, 21950.0)
20060	(-0.4670408905085784, 5.6273655746588934e-5, 21950.0)
20080	(-0.4669583913256358, 5.6238256947432704e-5, 21950.0)
20100	(-0.4668759486198975, 5.6202916010643444e-5, 21950.0)
20120	(-0.46679356229772073, 5.616763278379649e-5, 21950.0)
20140	(-0.46671123226571404, 5.613240711296281e-5, 21950.0)
20160	(-0.4666289584307336, 5.609723884660728e-5, 21950.0)
20180	(-0.4665467406998836, 5.6062127832864173e-5, 21950.0)
20200	(-0.46646457898051585, 5.602707392010504e-5, 21950.0)
20220	(-0.46638247318022746, 5.599207695815032e-5, 21950.0)
20240	(-0.4663004232068612, 5.5957136796566316e-5, 21950.0)
20260	(-0.46621842896850424, 5.592225328572531e-5, 21950.0)
20280	(-0.4661364903734878, 5.5887426276086595e-5, 21950.0)
20300	(-0.46605460733038445, 5.585265562001415e-5, 21950.0)
20320	(-0.46597277974800966, 5.581794116863439e-5, 21950.0)
20340	(-0.46589100753541957, 5.578328277460038e-5, 21950.0)
20360	(-0.4658092906019102, 5.574868029103203e-5, 21950.0)
20380	(-0.46572762896429976, 5.571406037295116e-5, 21950.0)
20400	(-0.46564602316309217, 5.5679065693820704e-5, 21950.0)
20420	(-0.4655644723703985, 5.564462992322291e-5, 21950.0)
20440	(-0.4654829764964606, 5.561024948426336e-5, 21950.0)
20460	(-0.4654015354517567, 5.557592423209817e-5, 21950.0)
20480	(-0.46532014914700043, 5.55416540226171e-5, 21950.0)
20500	(-0.465238817493139, 5.550743871267122e-5, 21950.0)
20520	(-0.4651575404013542, 5.5473278158557794e-5, 21950.0)
20540	(-0.46507631778305975, 5.5439172218255785e-5, 21950.0)
20560	(-0.4649951495499016, 5.54051207494182e-5, 21950.0)
20580	(-0.4649140356137577, 5.53711236099405e-5, 21950.0)
20600	(-0.4648329758867347, 5.5337180659742044e-5, 21950.0)
20620	(-0.4647519702811701, 5.530329175735581e-5, 21950.0)
20640	(-0.4646710187096296, 5.52694567629224e-5, 21950.0)
20660	(-0.46459012108490694, 5.523567553682605e-5, 21950.0)
20680	(-0.4645092773200229, 5.520194793984648e-5, 21950.0)
20700	(-0.46442848732822456, 5.516827383338665e-5, 21950.0)
20720	(-0.4643477510229849, 5.513465307898013e-5, 21950.0)
20740	(-0.4642670683180014, 5.510108553912542e-5, 21950.0)
20760	(-0.4641864391271952, 5.506757107671762e-5, 21950.0)
20780	(-0.46410586336471144, 5.503410955447994e-5, 21950.0)
20800	(-0.46402534094491704, 5.500070083651839e-5, 21950.0)
20820	(-0.46394487178240135, 5.496734478650221e-5, 21950.0)
20840	(-0.4638644557919736, 5.4934041269711586e-5, 21950.0)
20860	(-0.4637840928886639, 5.490079015076286e-5, 21950.0)
20880	(-0.4637037829877214, 5.486759129539095e-5, 21950.0)
20900	(-0.4636235260046144, 5.4834444569311984e-5, 21950.0)
20920	(-0.46354332185502795, 5.480134983962684e-5, 21950.0)
20940	(-0.4634631704548659, 5.47683069722422e-5, 21950.0)
20960	(-0.46338307172024684, 5.473531583558803e-5, 21950.0)
20980	(-0.463303025567506, 5.4702376296786746e-5, 21950.0)
21000	(-0.46322303191319303, 5.466948822449836e-5, 21950.0)
21020	(-0.46314309067407183, 5.463665148728965e-5, 21950.0)
21040	(-0.46306320176711985, 5.4603865954317176e-5, 21950.0)
21060	(-0.4629833651095272, 5.45711314951758e-5, 21950.0)
21080	(-0.46290358061869546, 5.4538447980278434e-5, 21950.0)
21100	(-0.4628238482122384, 5.4505815279490166e-5, 21950.0)
21120	(-0.4627441678079795, 5.447323326421561e-5, 21950.0)
21140	(-0.4626645393239518, 5.4440701806109e-5, 21950.0)
21160	(-0.46258496267839827, 5.4408220776315305e-5, 21950.0)
21180	(-0.4625054377897695, 5.4375790047633726e-5, 21950.0)
21200	(-0.4624259645767239, 5.4343409492582426e-5, 21950.0)
21220	(-0.46234654295812694, 5.431107898427162e-5, 21950.0)
21240	(-0.46226717285305, 5.4278798396365924e-5, 21950.0)
21260	(-0.4621878541807703, 5.424656760274293e-5, 21950.0)
21280	(-0.4621085868607692, 5.421438647813883e-5, 21950.0)
21300	(-0.4620293708127328, 5.418225489708566e-5, 21950.0)
21320	(-0.4619502059565504, 5.41501727349365e-5, 21950.0)
21340	(-0.4618710922123134, 5.411813986775201e-5, 21950.0)
21360	(-0.4617920295217136, 5.408614153251804e-5, 21950.0)
21380	(-0.4617130178808934, 5.4054140486987584e-5, 21950.0)
21400	(-0.46163405718621026, 5.4022205007434116e-5, 21950.0)
21420	(-0.4615551472867025, 5.39903674892144e-5, 21950.0)
21440	(-0.46147628810346353, 5.3958578651522735e-5, 21950.0)
21460	(-0.4613974795577834, 5.392683837391101e-5, 21950.0)
21480	(-0.461318721571152, 5.389514653360158e-5, 21950.0)
21500	(-0.46124001406525483, 5.386350301084338e-5, 21950.0)
21520	(-0.4611613569619741, 5.383190768492368e-5, 21950.0)
21540	(-0.4610827501833882, 5.3800360435459724e-5, 21950.0)
21560	(-0.46100419365177037, 5.376886114300685e-5, 21950.0)
21580	(-0.4609256872895878, 5.373740968864094e-5, 21950.0)
21600	(-0.46084723101950176, 5.370600595335063e-5, 21950.0)
21620	(-0.4607688247643665, 5.367464981868343e-5, 21950.0)
21640	(-0.46069046844722805, 5.364334116708802e-5, 21950.0)
21660	(-0.46061216199132443, 5.361207988085049e-5, 21950.0)
21680	(-0.460533905320085, 5.35808658425504e-5, 21950.0)
21700	(-0.460455698357129, 5.354969893570722e-5, 21950.0)
21720	(-0.46037754102626466, 5.3518579044590635e-5, 21950.0)
21740	(-0.46029943325149, 5.3487506052624214e-5, 21950.0)
21760	(-0.460221374956991, 5.3456479844552226e-5, 21950.0)
21780	(-0.4601433660910106, 5.342548395727499e-5, 21950.0)
21800	(-0.4600654065804078, 5.339453304724624e-5, 21950.0)
21820	(-0.45998749632380054, 5.3363646471922e-5, 21950.0)
21840	(-0.4599096352461199, 5.333280622367139e-5, 21950.0)
21860	(-0.4598318232724817, 5.330201218917049e-5, 21950.0)
21880	(-0.4597540603281857, 5.327126425561927e-5, 21950.0)
21900	(-0.45967634633871557, 5.3240562310323506e-5, 21950.0)
21920	(-0.4595986813888366, 5.3209797233501456e-5, 21950.0)
21940	(-0.4595210653136665, 5.317914007182516e-5, 21950.0)
21960	(-0.45944349797108025, 5.314857525767319e-5, 21950.0)
21980	(-0.45936597928728673, 5.3118055987147503e-5, 21950.0)
22000	(-0.45928850918866576, 5.308758215607441e-5, 21958.0)
22020	(-0.459211087601527, 5.305715382549938e-5, 21958.0)
22040	(-0.4591337144524938, 5.3026770793418604e-5, 21958.0)
22060	(-0.4590563896684799, 5.29964328736249e-5, 21958.0)
22080	(-0.458979113176577, 5.2966139957011286e-5, 21958.0)
22100	(-0.4589018849040544, 5.293589193469258e-5, 21958.0)
22120	(-0.45882470477835924, 5.2905688697472785e-5, 21958.0)
22140	(-0.45874757272711386, 5.287553013793812e-5, 21958.0)
22160	(-0.4586704886781179, 5.28454161472989e-5, 21958.0)
22180	(-0.4585934525593463, 5.2815346617939146e-5, 21958.0)
22200	(-0.4585164642989504, 5.2785321441628174e-5, 21958.0)
22220	(-0.45843952382525627, 5.2755340511004923e-5, 21958.0)
22240	(-0.4583626310667683, 5.272540371645694e-5, 21958.0)
22260	(-0.45828578595216685, 5.2695510949698095e-5, 21958.0)
22280	(-0.4582089884103147, 5.266566209817283e-5, 21958.0)
22300	(-0.4581322383702614, 5.2635857046197e-5, 21958.0)
22320	(-0.4580555357612598, 5.2606095666694934e-5, 21958.0)
22340	(-0.45797888053022057, 5.257636586021553e-5, 21955.0)
22360	(-0.45790227259054456, 5.2546690622743484e-5, 21955.0)
22380	(-0.4578257118723694, 5.251705848760373e-5, 21955.0)
22400	(-0.4577491983105104, 5.2487466258037436e-5, 21955.0)
22420	(-0.4576727318468136, 5.245790912197449e-5, 21955.0)
22440	(-0.4575963124014857, 5.2428401936630436e-5, 21955.0)
22460	(-0.4575199398974922, 5.2398942822611475e-5, 21955.0)
22480	(-0.4574436142645198, 5.236952718126367e-5, 21955.0)
22500	(-0.45736733543312835, 5.234015442563138e-5, 21955.0)
22520	(-0.45729110333414436, 5.2310824384767894e-5, 21955.0)
22540	(-0.45721491789858276, 5.228153694134459e-5, 21955.0)
22560	(-0.4571387790576298, 5.2252291989798185e-5, 21955.0)
22580	(-0.45706268674263933, 5.222308942696189e-5, 21955.0)
22600	(-0.4569866408851296, 5.2193929151990075e-5, 21955.0)
22620	(-0.4569106414167825, 5.2164811064301384e-5, 21955.0)
22640	(-0.4568346882694441, 5.213573506312169e-5, 21955.0)
22660	(-0.4567587813751218, 5.210670104946565e-5, 21955.0)
22680	(-0.45668292066598576, 5.207770892335536e-5, 21955.0)
22700	(-0.45660710607436716, 5.2048758585916244e-5, 21955.0)
22720	(-0.4565313375327584, 5.2019849938234056e-5, 21955.0)
22740	(-0.4564556149738123, 5.199098288169799e-5, 21955.0)
22760	(-0.4563799383303419, 5.196215731807705e-5, 21955.0)
22780	(-0.45630430753531975, 5.193337314929157e-5, 21955.0)
22800	(-0.456228722521877, 5.190463027802319e-5, 21955.0)
22820	(-0.45615318322330434, 5.187592860626657e-5, 21955.0)
22840	(-0.45607768957304956, 5.184726803754044e-5, 21955.0)
22860	(-0.45600224158379676, 5.181859416007968e-5, 21955.0)
22880	(-0.4559268392292057, 5.178993377922774e-5, 21955.0)
22900	(-0.4558514823247327, 5.17613955735622e-5, 21955.0)
22920	(-0.45577617081840727, 5.1732888499685906e-5, 21955.0)
22940	(-0.45570090467253505, 5.170440275926932e-5, 21955.0)
22960	(-0.45562568377973994, 5.167598623279358e-5, 21955.0)
22980	(-0.45555050807456354, 5.1647610137448515e-5, 21955.0)
23000	(-0.4554753774916999, 5.161927437968871e-5, 21958.0)
23020	(-0.45540029196595055, 5.1590978896903965e-5, 21958.0)
23040	(-0.4553252514322925, 5.156272357961217e-5, 21958.0)
23060	(-0.4552502558258802, 5.1534508317107324e-5, 21958.0)
23080	(-0.4551753050820211, 5.150633301523688e-5, 21958.0)
23100	(-0.4551003991361742, 5.147819758095557e-5, 21958.0)
23120	(-0.45502553792395006, 5.145010192121939e-5, 21958.0)
23140	(-0.45495072138111076, 5.1422045942756784e-5, 21958.0)
23160	(-0.45487594944356863, 5.139402955332774e-5, 21958.0)
23180	(-0.4548012220473862, 5.136605266061759e-5, 21958.0)
23200	(-0.4547265391287753, 5.133811517292396e-5, 21958.0)
23220	(-0.45465190062409816, 5.131021699770685e-5, 21958.0)
23240	(-0.45457730646986416, 5.128235804464153e-5, 21958.0)
23260	(-0.4545027566027322, 5.125453822176457e-5, 21958.0)
23280	(-0.45442825095950856, 5.122675743852678e-5, 21958.0)
23300	(-0.45435378947714705, 5.11990156042288e-5, 21958.0)
23320	(-0.4542793720927478, 5.117131262897534e-5, 21958.0)
23340	(-0.4542049987435585, 5.1143648422034065e-5, 21958.0)
23360	(-0.4541306693669721, 5.111602289412593e-5, 21958.0)
23380	(-0.4540563839820345, 5.1088379897726784e-5, 21958.0)
23400	(-0.4539821425118187, 5.1060785442375327e-5, 21958.0)
23420	(-0.4539079448877122, 5.103323382156578e-5, 21958.0)
23440	(-0.45383379098752624, 5.1005761900455965e-5, 21958.0)
23460	(-0.45375968074937484, 5.0978328215294656e-5, 21958.0)
23480	(-0.4536856141115154, 5.0950932677891846e-5, 21958.0)
23500	(-0.4536115910123484, 5.0923575200366755e-5, 21958.0)
23520	(-0.45353761139041615, 5.089625569541524e-5, 21958.0)
23540	(-0.45346367518440367, 5.086897407539345e-5, 21958.0)
23560	(-0.45338978233315785, 5.0841730239216436e-5, 21957.0)
23580	(-0.4533159327760593, 5.081452382998688e-5, 21957.0)
23600	(-0.4532421264517702, 5.0787355352346114e-5, 21957.0)
23620	(-0.4531683632995394, 5.076022441288402e-5, 21957.0)
23640	(-0.45309464325875515, 5.073313092596456e-5, 21957.0)
23660	(-0.4530209662689454, 5.0706074805612624e-5, 21957.0)
23680	(-0.4529473322697765, 5.0679055966774794e-5, 21957.0)
23700	(-0.4528737418129929, 5.065165311047063e-5, 21957.0)
23720	(-0.45280019458890064, 5.062445914185989e-5, 21957.0)
23740	(-0.4527266902598358, 5.059749336035529e-5, 21957.0)
23760	(-0.4526532286802008, 5.057062359042607e-5, 21957.0)
23780	(-0.45257980979033813, 5.054379068732369e-5, 21957.0)
23800	(-0.4525064335736292, 5.0516965028797537e-5, 21957.0)
23820	(-0.4524330999803248, 5.049016943042144e-5, 21957.0)
23840	(-0.45235980889877875, 5.046344652132034e-5, 21957.0)
23860	(-0.45228656026987624, 5.043676014525652e-5, 21957.0)
23880	(-0.45221335403463825, 5.041011021872339e-5, 21957.0)
23900	(-0.45214019013421913, 5.038349665974945e-5, 21957.0)
23920	(-0.45206706850990797, 5.0356919385413846e-5, 21957.0)
23940	(-0.45199398910312755, 5.033037831345191e-5, 21957.0)
23960	(-0.4519209518554342, 5.0303873361720085e-5, 21957.0)
23980	(-0.45184795670851585, 5.027740444930491e-5, 21957.0)
24000	(-0.4517750036041944, 5.025097149373204e-5, 21957.0)
24020	(-0.4517020924844227, 5.022457441452214e-5, 21957.0)
24040	(-0.45162922329128546, 5.019821313051464e-5, 21957.0)
24060	(-0.45155639596699926, 5.0171887560517654e-5, 21957.0)
24080	(-0.4514836104539107, 5.014559762460848e-5, 21957.0)
24100	(-0.45141086686488385, 5.0119225842644166e-5, 21957.0)
24120	(-0.4513381653264454, 5.00927627863464e-5, 21957.0)
24140	(-0.4512655054609134, 5.0066555884227075e-5, 21957.0)
24160	(-0.451192887178159, 5.0040407030664146e-5, 21957.0)
24180	(-0.4511203104211699, 5.0014293417207346e-5, 21957.0)
24200	(-0.45104777513306077, 4.998821496589309e-5, 21957.0)
24220	(-0.450975281257076, 4.996217159673821e-5, 21957.0)
24240	(-0.450902828736587, 4.9936163231603775e-5, 21957.0)
24260	(-0.45083041751509256, 4.991018979216782e-5, 21957.0)
24280	(-0.4507580475362184, 4.988425120030791e-5, 21957.0)
24300	(-0.45068571874371727, 4.985834737779514e-5, 21957.0)
24320	(-0.4506134310814676, 4.9832478247327414e-5, 21957.0)
24340	(-0.45054118449347386, 4.980664373138167e-5, 21957.0)
24360	(-0.45046897892386645, 4.978084375232863e-5, 21957.0)
24380	(-0.4503968143169, 4.975507823384903e-5, 21957.0)
24400	(-0.4503246906169548, 4.9729347098484304e-5, 21957.0)
24420	(-0.45025260776853426, 4.97036502705838e-5, 21957.0)
24440	(-0.45018056571626724, 4.9677987672821776e-5, 21957.0)
24460	(-0.4501085644049049, 4.965235923002525e-5, 21957.0)
24480	(-0.45003660377932253, 4.9626764865652485e-5, 21957.0)
24500	(-0.4499646837845178, 4.960120450451096e-5, 21957.0)
24520	(-0.44989280436561147, 4.95756780707669e-5, 21957.0)
24540	(-0.44982096546784606, 4.955018548943831e-5, 21957.0)
24560	(-0.44974916703658596, 4.952472668555297e-5, 21957.0)
24580	(-0.4496774090173173, 4.949930158414844e-5, 21957.0)
24600	(-0.44960569135564754, 4.947391011046357e-5, 21957.0)
24620	(-0.44953401399730436, 4.944855219058969e-5, 21957.0)
24640	(-0.4494623768881366, 4.942322774982405e-5, 21957.0)
24660	(-0.44939077997411325, 4.9397936714239935e-5, 21957.0)
24680	(-0.4493192232013231, 4.937267900999749e-5, 21957.0)
24700	(-0.44924770651597445, 4.934745456357368e-5, 21957.0)
24720	(-0.4491762298643955, 4.932226330103449e-5, 21957.0)
24740	(-0.4491047931930329, 4.929710514941411e-5, 21957.0)
24760	(-0.4490333964484527, 4.927198003525931e-5, 21957.0)
24780	(-0.44896203957733866, 4.924688788593207e-5, 21957.0)
24800	(-0.44889072252649437, 4.9221828627579125e-5, 21957.0)
24820	(-0.4488194452428402, 4.919680218831201e-5, 21957.0)
24840	(-0.44874820767341544, 4.917180849468227e-5, 21957.0)
24860	(-0.4486770097653766, 4.914684747455517e-5, 21957.0)
24880	(-0.44860585146599863, 4.912191905477241e-5, 21957.0)
24900	(-0.44853473272267386, 4.9097023162914825e-5, 21957.0)
24920	(-0.4484636534829121, 4.907215972649772e-5, 21957.0)
24940	(-0.44839261369434136, 4.904732867254939e-5, 21957.0)
24960	(-0.44832161337090237, 4.902248422139854e-5, 21957.0)
24980	(-0.4482506527695048, 4.8997458597275936e-5, 21957.0)
25000	(-0.44817973146312845, 4.8972724058716736e-5, 21957.0)
25020	(-0.4481088493998786, 4.8948021607090445e-5, 21957.0)
25040	(-0.4480380065279801, 4.8923351168368905e-5, 21957.0)
25060	(-0.44796720279577745, 4.889871266830499e-5, 21957.0)
25080	(-0.4478964381517352, 4.887410603247094e-5, 21957.0)
25100	(-0.44782571254444037, 4.88495311846096e-5, 21957.0)
25120	(-0.4477550259226024, 4.882498804858953e-5, 21957.0)
25140	(-0.4476843782350561, 4.880047654618097e-5, 21957.0)
25160	(-0.4476137694307619, 4.8775996598819304e-5, 21957.0)
25180	(-0.44754319945880916, 4.875154812591757e-5, 21957.0)
25200	(-0.44747266826841825, 4.872713104509604e-5, 21957.0)
25220	(-0.4474021758089425, 4.87027452728338e-5, 21957.0)
25240	(-0.4473317220298706, 4.8678390723777955e-5, 21957.0)
25260	(-0.44726130688082716, 4.865406731227759e-5, 21957.0)
25280	(-0.4471909303115745, 4.862977495134789e-5, 21957.0)
25300	(-0.44712059227200834, 4.860551355688965e-5, 21957.0)
25320	(-0.44705029271215413, 4.858128304749831e-5, 21957.0)
25340	(-0.44698003158215577, 4.855708334933721e-5, 21957.0)
25360	(-0.4469098088322619, 4.85329143981349e-5, 21957.0)
25380	(-0.44683962441280317, 4.850877614525029e-5, 21957.0)
25400	(-0.44676947827416985, 4.848466855756213e-5, 21957.0)
25420	(-0.44669937036678525, 4.846059162023634e-5, 21957.0)
25440	(-0.44662930064108625, 4.8436545331934607e-5, 21957.0)
25460	(-0.4465592692185595, 4.841241144899176e-5, 21957.0)
25480	(-0.4464892761356407, 4.8388248757545546e-5, 21957.0)
25500	(-0.446419321086423, 4.836429394841866e-5, 21957.0)
25520	(-0.44634940402140655, 4.834036977653589e-5, 21957.0)
25540	(-0.4462795248911584, 4.831647620358821e-5, 21957.0)
25560	(-0.4462096836463362, 4.829261317497327e-5, 21957.0)
25580	(-0.446139880237708, 4.826878062217078e-5, 21957.0)
25600	(-0.4460701146161654, 4.8244978467805946e-5, 21957.0)
25620	(-0.4460003867327308, 4.8221206629255696e-5, 21957.0)
25640	(-0.4459306965385616, 4.81974650209892e-5, 21957.0)
25660	(-0.4458610439849494, 4.817375355809939e-5, 21957.0)
25680	(-0.4457914290233174, 4.8150072157378344e-5, 21957.0)
25700	(-0.445721851605219, 4.8126420736588194e-5, 21957.0)
25720	(-0.4456523116823322, 4.810279921722634e-5, 21957.0)
25740	(-0.4455828092064586, 4.807920752168476e-5, 21957.0)
25760	(-0.44551334477781945, 4.80551970620653e-5, 21957.0)
25780	(-0.445443917816592, 4.803158418788229e-5, 21957.0)
25800	(-0.4453745281606782, 4.800807995565055e-5, 21957.0)
25820	(-0.4453051757623325, 4.798460526451242e-5, 21957.0)
25840	(-0.44523586057391834, 4.796116004664185e-5, 21957.0)
25860	(-0.4451665825524613, 4.793774108359541e-5, 21957.0)
25880	(-0.4450973417034248, 4.7914314861903886e-5, 21957.0)
25900	(-0.4450281379222899, 4.789095749678632e-5, 21957.0)
25920	(-0.4449589711618404, 4.7867629344434606e-5, 21957.0)
25940	(-0.44488984137496274, 4.784433034139895e-5, 21957.0)
25960	(-0.44482074851464576, 4.782106042428333e-5, 21957.0)
25980	(-0.4447516925339788, 4.7797819531090454e-5, 21957.0)
26000	(-0.44468267338615197, 4.777460759949295e-5, 21957.0)
26020	(-0.4446136910244549, 4.775142456813989e-5, 21957.0)
26040	(-0.44454474540227723, 4.77282703752352e-5, 21957.0)
26060	(-0.4444758375875913, 4.7704373373956335e-5, 21957.0)
26080	(-0.4444069665432014, 4.768119095598855e-5, 21957.0)
26100	(-0.4443381320989454, 4.765812293271739e-5, 21957.0)
26120	(-0.44426933420859765, 4.763508351123983e-5, 21957.0)
26140	(-0.44420057282602904, 4.761207263203275e-5, 21957.0)
26160	(-0.44413184790520704, 4.758909023555122e-5, 21957.0)
26180	(-0.44406315940019575, 4.756613626222855e-5, 21957.0)
26200	(-0.4439945072651546, 4.754321065332211e-5, 21957.0)
26220	(-0.4439258914543392, 4.7520313349529496e-5, 21957.0)
26240	(-0.4438573119221002, 4.749744429225719e-5, 21957.0)
26260	(-0.44378876862288286, 4.747460342327478e-5, 21957.0)
26280	(-0.4437202621960708, 4.74513163012947e-5, 21957.0)
26300	(-0.44365179213884726, 4.742837406941762e-5, 21957.0)
26320	(-0.4435833581775264, 4.740561806367082e-5, 21957.0)
26340	(-0.4435149602669241, 4.7382890018449105e-5, 21957.0)
26360	(-0.44344659836194983, 4.7360189875993564e-5, 21957.0)
26380	(-0.44337827241760613, 4.733751757898577e-5, 21957.0)
26400	(-0.44330998238898894, 4.731487306985563e-5, 21957.0)
26420	(-0.4432417282312866, 4.729225629166602e-5, 21957.0)
26440	(-0.4431735099765466, 4.726961399196156e-5, 21957.0)
26460	(-0.4431053275364999, 4.72470295450205e-5, 21957.0)
26480	(-0.4430371808337499, 4.7224495428899884e-5, 21957.0)
26500	(-0.44296906982385204, 4.720198881751268e-5, 21957.0)
26520	(-0.44290099446245296, 4.717950965474198e-5, 21957.0)
26540	(-0.44283295470529077, 4.7157057884142686e-5, 21957.0)
26560	(-0.4427649505081939, 4.713463345009574e-5, 21957.0)
26580	(-0.4426969818270822, 4.7112236296230737e-5, 21957.0)
26600	(-0.4426290486179652, 4.708986636731136e-5, 21957.0)
26620	(-0.44256115083694286, 4.70675236075424e-5, 21957.0)
26640	(-0.44249328844020475, 4.704520796176275e-5, 21957.0)
26660	(-0.4424254613840302, 4.7022919374598836e-5, 21957.0)
26680	(-0.4423576696247877, 4.70006577911959e-5, 21957.0)
26700	(-0.44228991311893484, 4.6978423156486864e-5, 21957.0)
26720	(-0.44222219182301836, 4.6956215415654175e-5, 21957.0)
26740	(-0.44215450569367315, 4.6934034514322425e-5, 21957.0)
26760	(-0.442086854687623, 4.6911880397673044e-5, 21957.0)
26780	(-0.4420192387616791, 4.688975301186865e-5, 21957.0)
26800	(-0.44195165787274066, 4.686765230266737e-5, 21957.0)
26820	(-0.441884111977795, 4.684557821573078e-5, 21957.0)
26840	(-0.4418166010339161, 4.682353069762493e-5, 21957.0)
26860	(-0.4417491249982657, 4.680150969435752e-5, 21957.0)
26880	(-0.4416816838280915, 4.677951515284096e-5, 21957.0)
26900	(-0.441614277480729, 4.675754701892876e-5, 21957.0)
26920	(-0.4415469059135992, 4.673560524007245e-5, 21957.0)
26940	(-0.44147956908420954, 4.6713689762818787e-5, 21957.0)
26960	(-0.4414122669501536, 4.669180053415748e-5, 21957.0)
26980	(-0.4413449994691098, 4.666993750182953e-5, 21957.0)
27000	(-0.4412777665988432, 4.664810061232449e-5, 21957.0)
27020	(-0.4412105682972032, 4.662628981373063e-5, 21964.0)
27040	(-0.4411434045220763, 4.6604505086821464e-5, 21964.0)
27060	(-0.44107627523144155, 4.658274637402967e-5, 21964.0)
27080	(-0.441009180383401, 4.656101359654103e-5, 21964.0)
27100	(-0.4409421199361421, 4.653930670156006e-5, 21964.0)
27120	(-0.4408750938479357, 4.651762563773648e-5, 21964.0)
27140	(-0.4408081020771367, 4.6495970353316275e-5, 21964.0)
27160	(-0.44074114458218355, 4.647434079671953e-5, 21964.0)
27180	(-0.4406742213215978, 4.645273691673324e-5, 21964.0)
27200	(-0.4406073322539842, 4.643115866204895e-5, 21964.0)
27220	(-0.44054047733803076, 4.640960598133989e-5, 21964.0)
27240	(-0.4404736565325081, 4.6388078823684874e-5, 21964.0)
27260	(-0.4404068697962684, 4.63665771387997e-5, 21964.0)
27280	(-0.44034011708824716, 4.63451008753415e-5, 21964.0)
27300	(-0.4402733983674614, 4.632364998298983e-5, 21964.0)
27320	(-0.4402067135930098, 4.6302224411406285e-5, 21964.0)
27340	(-0.4401400627240729, 4.628082411011884e-5, 21964.0)
27360	(-0.44007344571991214, 4.6259449029331376e-5, 21964.0)
27380	(-0.4400068625398705, 4.623809911865171e-5, 21964.0)
27400	(-0.43994031314927173, 4.6216770230703314e-5, 21963.0)
27420	(-0.4398737975020444, 4.619547028545887e-5, 21963.0)
27440	(-0.4398073155574221, 4.617419560519e-5, 21963.0)
27460	(-0.43974086727506995, 4.615294589636949e-5, 21963.0)
27480	(-0.4396744526147327, 4.613172111002029e-5, 21963.0)
27500	(-0.43960807153623577, 4.611052119629948e-5, 21963.0)
27520	(-0.43954172399948366, 4.608934610646489e-5, 21963.0)
27540	(-0.4394754099644601, 4.606819579167986e-5, 21963.0)
27560	(-0.439409129391228, 4.6047070203128936e-5, 21963.0)
27580	(-0.4393428827486723, 4.6025615820751165e-5, 21963.0)
27600	(-0.43927666954549954, 4.600449974197603e-5, 21963.0)
27620	(-0.43921048968551407, 4.598344749414133e-5, 21963.0)
27640	(-0.4391443431290885, 4.596241978184132e-5, 21963.0)
27660	(-0.43907822983667344, 4.5941416557023703e-5, 21963.0)
27680	(-0.4390121497687979, 4.5920437771272e-5, 21963.0)
27700	(-0.43894610288606806, 4.5899483377001344e-5, 21963.0)
27720	(-0.43888008914916815, 4.5878553326108494e-5, 21963.0)
27740	(-0.4388141085188589, 4.585764757143778e-5, 21963.0)
27760	(-0.43874816095597935, 4.5836766064543506e-5, 21963.0)
27780	(-0.4386822464214438, 4.581590875920101e-5, 21963.0)
27800	(-0.438616364876245, 4.5795075606892435e-5, 21963.0)
27820	(-0.43855051628145053, 4.577426656151415e-5, 21963.0)
27840	(-0.43848470059820543, 4.575348157524807e-5, 21963.0)
27860	(-0.43841891778773007, 4.573272060168733e-5, 21963.0)
27880	(-0.4383531678113211, 4.57119835937139e-5, 21963.0)
27900	(-0.4382874506303506, 4.569127050488795e-5, 21963.0)
27920	(-0.4382217662062659, 4.567058128867609e-5, 21963.0)
27940	(-0.4381561145005899, 4.564991589860573e-5, 21963.0)
27960	(-0.43809049547492057, 4.5629274288226544e-5, 21963.0)
27980	(-0.4380249090909303, 4.560865641176677e-5, 21963.0)
28000	(-0.43795935531036656, 4.558806222278218e-5, 21963.0)
28020	(-0.43789383409505106, 4.556749167558447e-5, 21963.0)
28040	(-0.4378283454068796, 4.554694472443062e-5, 21963.0)
28060	(-0.43776288920782225, 4.5526421323484345e-5, 21963.0)
28080	(-0.4376974654599228, 4.550592142731799e-5, 21963.0)
28100	(-0.4376320741252987, 4.548544499041078e-5, 21963.0)
28120	(-0.43756671516614104, 4.546499196741902e-5, 21963.0)
28140	(-0.43750138854471354, 4.544456231352381e-5, 21963.0)
28160	(-0.4374360942233539, 4.5424155983040846e-5, 21963.0)
28180	(-0.4373708321644718, 4.5403772931583055e-5, 21963.0)
28200	(-0.43730560233055016, 4.53834131140139e-5, 21963.0)
28220	(-0.43724040499515815, 4.536286007922831e-5, 21963.0)
28240	(-0.4371752398881963, 4.5342492100637224e-5, 21963.0)
28260	(-0.43711010689466867, 4.532220128098414e-5, 21963.0)
28280	(-0.43704500597734564, 4.5301933517913604e-5, 21963.0)
28300	(-0.43697993709906846, 4.528168876771776e-5, 21963.0)
28320	(-0.43691490022275115, 4.5261466985437176e-5, 21963.0)
28340	(-0.43684989531137763, 4.5241268128028585e-5, 21963.0)
28360	(-0.4367849223280041, 4.5221092150849444e-5, 21963.0)
28380	(-0.43671998123575706, 4.520093901051685e-5, 21963.0)
28400	(-0.43665507199783365, 4.51808086635168e-5, 21963.0)
28420	(-0.4365901945775027, 4.5160701065508605e-5, 21963.0)
28440	(-0.4365253489381015, 4.514061617437761e-5, 21963.0)
28460	(-0.4364605350430398, 4.5120553945327754e-5, 21963.0)
28480	(-0.4363957528557952, 4.5100514336523443e-5, 21963.0)
28500	(-0.43633100233991634, 4.508049730414324e-5, 21963.0)
28520	(-0.4362662834590217, 4.506050280508494e-5, 21963.0)
28540	(-0.4362015961767984, 4.504053079700442e-5, 21963.0)
28560	(-0.43613694045700335, 4.5020581236808364e-5, 21963.0)
28580	(-0.4360723162634623, 4.500065408208432e-5, 21963.0)
28600	(-0.43600772356007045, 4.49807492899412e-5, 21963.0)
28620	(-0.43594316231079117, 4.496086681828495e-5, 21963.0)
28640	(-0.43587863247965647, 4.494100662481355e-5, 21963.0)
28660	(-0.4358141340307669, 4.4921168667210304e-5, 21963.0)
28680	(-0.4357496669282911, 4.4901352903491866e-5, 21963.0)
28700	(-0.4356852311364663, 4.488155929123501e-5, 21963.0)
28720	(-0.43562082661959683, 4.486178778912323e-5, 21963.0)
28740	(-0.4355564533420545, 4.4842038355554994e-5, 21963.0)
28760	(-0.43549211126827975, 4.482231094806356e-5, 21963.0)
28780	(-0.43542780036277917, 4.48026055259079e-5, 21963.0)
28800	(-0.4353635205901275, 4.4782922046979186e-5, 21963.0)
28820	(-0.4352992719149654, 4.4763260470662534e-5, 21963.0)
28840	(-0.4352350543020015, 4.474362075497514e-5, 21963.0)
28860	(-0.43517086771601, 4.4724002859428407e-5, 21963.0)
28880	(-0.43510671212183233, 4.470440674255257e-5, 21963.0)
28900	(-0.4350425874843758, 4.468483236371472e-5, 21963.0)
28920	(-0.43497849376861386, 4.466527968207441e-5, 21963.0)
28940	(-0.4349144309395859, 4.464574865693193e-5, 21963.0)
28960	(-0.4348503989623974, 4.462623924753481e-5, 21963.0)
28980	(-0.43478639781257583, 4.460674419492243e-5, 21963.0)
29000	(-0.43472242748637274, 4.458724905775995e-5, 21963.0)
29020	(-0.43465848790762357, 4.456780431587253e-5, 21963.0)
29040	(-0.43459457904169413, 4.454838102910695e-5, 21963.0)
29060	(-0.4345307008540159, 4.452897915687343e-5, 21963.0)
29080	(-0.4344668533100843, 4.450959865980674e-5, 21963.0)
29100	(-0.4344030363754599, 4.449023949756051e-5, 21963.0)
29120	(-0.4343392500157672, 4.447090163085824e-5, 21963.0)
29140	(-0.4342754941966956, 4.445158501944228e-5, 21963.0)
29160	(-0.4342117688839984, 4.4432289624008896e-5, 21963.0)
29180	(-0.4341480740434928, 4.4413015405008605e-5, 21963.0)
29200	(-0.4340844096410594, 4.439376232349772e-5, 21963.0)
29220	(-0.4340207756426433, 4.437453033939653e-5, 21963.0)
29240	(-0.43395717201425255, 4.4355319414044074e-5, 21963.0)
29260	(-0.4338935987219584, 4.433612950837895e-5, 21963.0)
29280	(-0.4338300557318952, 4.4316960583403815e-5, 21963.0)
29300	(-0.43376654301026096, 4.429781259987569e-5, 21963.0)
29320	(-0.43370306052331586, 4.427868551939005e-5, 21963.0)
29340	(-0.4336396082373831, 4.425957930302582e-5, 21963.0)
29360	(-0.433576186118848, 4.4240493912506946e-5, 21963.0)
29380	(-0.43351279413415816, 4.422142930935065e-5, 21963.0)
29400	(-0.4334494322498247, 4.420238545424774e-5, 21963.0)
29420	(-0.43338610043241893, 4.418336231016073e-5, 21963.0)
29440	(-0.43332279864857526, 4.41643598381028e-5, 21963.0)
29460	(-0.4332595268649889, 4.414537800054578e-5, 21963.0)
29480	(-0.4331962850484178, 4.412641675874787e-5, 21963.0)
29500	(-0.4331330731656808, 4.4107476075038776e-5, 21963.0)
29520	(-0.43306989118365713, 4.408855591227765e-5, 21963.0)
29540	(-0.4330067390692885, 4.406965623180012e-5, 21963.0)
29560	(-0.43294361678957693, 4.4050776996362135e-5, 21963.0)
29580	(-0.432880524311585, 4.4031918168629505e-5, 21963.0)
29600	(-0.43281746160243645, 4.401307971082908e-5, 21963.0)
29620	(-0.43275442862931546, 4.39942615855624e-5, 21963.0)
29640	(-0.4326914253594662, 4.397546375588328e-5, 21963.0)
29660	(-0.4326284517601931, 4.395668618456171e-5, 21963.0)
29680	(-0.43256550779886055, 4.3937928834587534e-5, 21963.0)
29700	(-0.43250259344289366, 4.3919191668395515e-5, 21963.0)
29720	(-0.43243970865977627, 4.390047464980289e-5, 21963.0)
29740	(-0.4323768534170523, 4.388177774168441e-5, 21963.0)
29760	(-0.43231402768232524, 4.386310090721234e-5, 21963.0)
29780	(-0.4322512314232575, 4.3844444110089127e-5, 21963.0)
29800	(-0.4321884646075708, 4.382580731361726e-5, 21963.0)
29820	(-0.432125727203046, 4.380719048135819e-5, 21963.0)
29840	(-0.43206301917752266, 4.378859357693856e-5, 21963.0)
29860	(-0.43200034049889896, 4.377001656428284e-5, 21963.0)
29880	(-0.43193769113513225, 4.375145940676054e-5, 21963.0)
29900	(-0.43187507105423745, 4.373292206889195e-5, 21963.0)
29920	(-0.4318124802242889, 4.3714404513867046e-5, 21963.0)
29940	(-0.4317499186134175, 4.369590670695725e-5, 21963.0)
29960	(-0.43168738618981345, 4.367742861132828e-5, 21963.0)
29980	(-0.4316248829217247, 4.3658970191413164e-5, 21963.0)
30000	(-0.4315624087774559, 4.3640531412214596e-5, 21963.0)
 24.100553 seconds (1.86 M allocations: 10.685 GiB, 1.19% gc time)

In order to obtain the results in the original dimension, we need to obtain the "group matrix". Multiplying the group matrix by the penalized part of the coefficients gives the aggregate coefficient for each penalized variable. Non-penalized variables (in this case, the last two variables) should be treated separately.

_, grpmat, _ = ParProx.mapper_mat_idx(group_to_variables, length(gene_names));
size(grpmat)
(1043, 21963)
β_orig = vcat(grpmat * collect(V.β[1:end-2]), collect(V.β)[end-1:end]);

The following prints the coefficients in the replicated dimensions:

for (v, β) in zip(variable_names_replicated[V.β .!= 0], V.β[V.β .!= 0])
    println("$v\t$β")
end
KEGG:00280: Valine, leucine and isoleucine degradation	ABAT	4-aminobutyrate aminotransferase	0.0008323544134017853
KEGG:00280: Valine, leucine and isoleucine degradation	AUH	AU RNA binding protein/enoyl-CoA hydratase	-0.001459342688879147
KEGG:00280: Valine, leucine and isoleucine degradation	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010615725170478396
KEGG:00280: Valine, leucine and isoleucine degradation	IVD	isovaleryl-CoA dehydrogenase	-0.0009348559171503025
KEGG:00280: Valine, leucine and isoleucine degradation	MCCC1	methylcrotonoyl-CoA carboxylase 1 (alpha)	8.306605556755142e-5
KEGG:00280: Valine, leucine and isoleucine degradation	MCCC2	methylcrotonoyl-CoA carboxylase 2 (beta)	-0.0007834944198441149
KEGG:00280: Valine, leucine and isoleucine degradation	MUT	methylmalonyl CoA mutase	0.002754888016414541
KEGG:04727: GABAergic synapse	ABAT	4-aminobutyrate aminotransferase	0.0008232735329612728
KEGG:04727: GABAergic synapse	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014658463388531478
KEGG:04727: GABAergic synapse	PRKCA	protein kinase C, alpha	-5.901736217620095e-6
KEGG:04727: GABAergic synapse	PRKX	protein kinase, X-linked	0.0003862539887885206
KEGG:01100: Metabolic pathways	ABAT	4-aminobutyrate aminotransferase	0.000836153979263033
KEGG:01100: Metabolic pathways	ACADL	acyl-CoA dehydrogenase, long chain	0.000985316179371731
KEGG:01100: Metabolic pathways	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030292702181800232
KEGG:01100: Metabolic pathways	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023384057178505273
KEGG:01100: Metabolic pathways	ALLC	allantoicase	-0.0009259344378902448
KEGG:01100: Metabolic pathways	ALOX12	arachidonate 12-lipoxygenase	-0.0019606743810480507
KEGG:01100: Metabolic pathways	AMD1	adenosylmethionine decarboxylase 1	-0.002535890300186688
KEGG:01100: Metabolic pathways	ASS1	argininosuccinate synthase 1	0.0001442647137212184
KEGG:01100: Metabolic pathways	AUH	AU RNA binding protein/enoyl-CoA hydratase	-0.0014668253656568747
KEGG:01100: Metabolic pathways	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020747510439733958
KEGG:01100: Metabolic pathways	CBS	cystathionine-beta-synthase	0.0015224224134832848
KEGG:01100: Metabolic pathways	CPOX	coproporphyrinogen oxidase	0.0012789641964398662
KEGG:01100: Metabolic pathways	CTH	cystathionine gamma-lyase	0.0017546337885964059
KEGG:01100: Metabolic pathways	CTPS1	CTP synthase 1	-0.00042155251296389196
KEGG:01100: Metabolic pathways	CTPS2	CTP synthase 2	0.0017650016553290625
KEGG:01100: Metabolic pathways	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047356623759338873
KEGG:01100: Metabolic pathways	DCT	dopachrome tautomerase	-0.0023607667959928765
KEGG:01100: Metabolic pathways	DHCR24	24-dehydrocholesterol reductase	-0.0017137397769336163
KEGG:01100: Metabolic pathways	DHFR	dihydrofolate reductase	-0.0003076937765407042
KEGG:01100: Metabolic pathways	DTYMK	deoxythymidylate kinase (thymidylate kinase)	0.0034935954624852584
KEGG:01100: Metabolic pathways	GAL3ST1	galactose-3-O-sulfotransferase 1	0.0018631853227812842
KEGG:01100: Metabolic pathways	GALK2	galactokinase 2	3.174981063618672e-5
KEGG:01100: Metabolic pathways	GALNT6	polypeptide N-acetylgalactosaminyltransferase 6	-0.0017830737236985235
KEGG:01100: Metabolic pathways	GCDH	glutaryl-CoA dehydrogenase	-5.142324143013625e-6
KEGG:01100: Metabolic pathways	GCLM	glutamate-cysteine ligase, modifier subunit	-0.0037732217757471508
KEGG:01100: Metabolic pathways	GCNT1	glucosaminyl (N-acetyl) transferase 1, core 2	0.0006985769533269946
KEGG:01100: Metabolic pathways	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.0024411127133358045
KEGG:01100: Metabolic pathways	GCNT3	glucosaminyl (N-acetyl) transferase 3, mucin type	-0.00232044843057285
KEGG:01100: Metabolic pathways	GCNT4	glucosaminyl (N-acetyl) transferase 4, core 2	0.00045352466828224493
KEGG:01100: Metabolic pathways	GLUD2	glutamate dehydrogenase 2	-0.0006607507670226809
KEGG:01100: Metabolic pathways	GMPS	guanine monphosphate synthase	0.0017809600837371206
KEGG:01100: Metabolic pathways	GUK1	guanylate kinase 1	0.0032840032282921323
KEGG:01100: Metabolic pathways	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.001067822967489376
KEGG:01100: Metabolic pathways	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.0011894467283326514
KEGG:01100: Metabolic pathways	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011670301666150756
KEGG:01100: Metabolic pathways	HSD17B6	hydroxysteroid (17-beta) dehydrogenase 6	-0.0008712071093238519
KEGG:01100: Metabolic pathways	IDO1	indoleamine 2,3-dioxygenase 1	0.0012307680167228242
KEGG:01100: Metabolic pathways	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018789353029630797
KEGG:01100: Metabolic pathways	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.0003495009634217896
KEGG:01100: Metabolic pathways	INPP4B	inositol polyphosphate-4-phosphatase, type II, 105kDa	0.00028939335968377277
KEGG:01100: Metabolic pathways	IVD	isovaleryl-CoA dehydrogenase	-0.0009384574293990809
KEGG:01100: Metabolic pathways	LDHC	lactate dehydrogenase C	0.0014884182403979073
KEGG:01100: Metabolic pathways	LIAS	lipoic acid synthetase	-0.0005559477430808899
KEGG:01100: Metabolic pathways	MCCC1	methylcrotonoyl-CoA carboxylase 1 (alpha)	8.57497893915052e-5
KEGG:01100: Metabolic pathways	MCCC2	methylcrotonoyl-CoA carboxylase 2 (beta)	-0.0007881466527775404
KEGG:01100: Metabolic pathways	MGAM	maltase-glucoamylase (alpha-glucosidase)	-0.0013146570407050662
KEGG:01100: Metabolic pathways	MTAP	methylthioadenosine phosphorylase	0.002668361053392181
KEGG:01100: Metabolic pathways	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006655943430386312
KEGG:01100: Metabolic pathways	MUT	methylmalonyl CoA mutase	0.0027674298852422034
KEGG:01100: Metabolic pathways	ODC1	ornithine decarboxylase 1	0.0008286228438253796
KEGG:01100: Metabolic pathways	OGDH	oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide)	-0.0002956255707684114
KEGG:01100: Metabolic pathways	PGLS	6-phosphogluconolactonase	0.0017539382257704033
KEGG:01100: Metabolic pathways	PHGDH	phosphoglycerate dehydrogenase	0.00029513645244017705
KEGG:01100: Metabolic pathways	PLA2G5	phospholipase A2, group V	0.0020854610553521975
KEGG:01100: Metabolic pathways	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001551250705580812
KEGG:01100: Metabolic pathways	PNPO	pyridoxamine 5'-phosphate oxidase	-0.0010955847891319294
KEGG:01100: Metabolic pathways	POLA1	polymerase (DNA directed), alpha 1, catalytic subunit	0.0012769114916353396
KEGG:01100: Metabolic pathways	POLA2	polymerase (DNA directed), alpha 2, accessory subunit	-0.0014984362498909217
KEGG:01100: Metabolic pathways	POLD1	polymerase (DNA directed), delta 1, catalytic subunit	-0.0004456093543240707
KEGG:01100: Metabolic pathways	POLD2	polymerase (DNA directed), delta 2, accessory subunit	0.0007421477949456386
KEGG:01100: Metabolic pathways	POLD3	polymerase (DNA-directed), delta 3, accessory subunit	0.0017466587412103048
KEGG:01100: Metabolic pathways	POLD4	polymerase (DNA-directed), delta 4, accessory subunit	-0.0006409905849416634
KEGG:01100: Metabolic pathways	POLE	polymerase (DNA directed), epsilon, catalytic subunit	0.0029581383098528655
KEGG:01100: Metabolic pathways	POLE2	polymerase (DNA directed), epsilon 2, accessory subunit	0.001330710767815852
KEGG:01100: Metabolic pathways	POLE3	polymerase (DNA directed), epsilon 3, accessory subunit	0.0008084517388967187
KEGG:01100: Metabolic pathways	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018615916236063394
KEGG:01100: Metabolic pathways	PRIM1	primase, DNA, polypeptide 1 (49kDa)	0.0006376004836594551
KEGG:01100: Metabolic pathways	PRIM2	primase, DNA, polypeptide 2 (58kDa)	-0.0008903320119452112
KEGG:01100: Metabolic pathways	PSAT1	phosphoserine aminotransferase 1	-0.0007241305025313403
KEGG:01100: Metabolic pathways	PSPH	phosphoserine phosphatase	-0.0019408383378121973
KEGG:01100: Metabolic pathways	QDPR	quinoid dihydropteridine reductase	-0.002865829961782042
KEGG:01100: Metabolic pathways	RRM1	ribonucleotide reductase M1	0.0019181942335011154
KEGG:01100: Metabolic pathways	RRM2	ribonucleotide reductase M2	-0.0005663338491549907
KEGG:01100: Metabolic pathways	SHMT2	serine hydroxymethyltransferase 2 (mitochondrial)	-0.0011001374615877278
KEGG:01100: Metabolic pathways	SORD	sorbitol dehydrogenase	-0.0020272390844878222
KEGG:01100: Metabolic pathways	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0019057089696524507
KEGG:01100: Metabolic pathways	SPHK1	sphingosine kinase 1	0.0018174636412165567
KEGG:01100: Metabolic pathways	SPR	sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase)	-0.0012378419013538608
KEGG:01100: Metabolic pathways	TAT	tyrosine aminotransferase	0.001056957198899772
KEGG:01100: Metabolic pathways	TH	tyrosine hydroxylase	-0.00034287296760169417
KEGG:01100: Metabolic pathways	TYMS	thymidylate synthetase	0.0015685929022796515
KEGG:01100: Metabolic pathways	UGCG	UDP-glucose ceramide glucosyltransferase	0.0003693509631973444
KEGG:01100: Metabolic pathways	UGDH	UDP-glucose 6-dehydrogenase	0.0005025506410051839
KEGG:01100: Metabolic pathways	UGP2	UDP-glucose pyrophosphorylase 2	0.0007901636826903183
KEGG:01100: Metabolic pathways	UGT8	UDP glycosyltransferase 8	0.0024046174229095836
KEGG:00250: Alanine, aspartate and glutamate metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008330016098156057
KEGG:00250: Alanine, aspartate and glutamate metabolism	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023280289143487428
KEGG:00250: Alanine, aspartate and glutamate metabolism	ASS1	argininosuccinate synthase 1	0.00014221332941440803
KEGG:00250: Alanine, aspartate and glutamate metabolism	GLUD2	glutamate dehydrogenase 2	-0.0006588423570298237
KEGG:00640: Propanoate metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008383848057490675
KEGG:00640: Propanoate metabolism	LDHC	lactate dehydrogenase C	0.0014929699399719584
KEGG:00640: Propanoate metabolism	MUT	methylmalonyl CoA mutase	0.0027741889752544023
KEGG:00410: beta-Alanine metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008217362443510855
KEGG:00650: Butanoate metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008342785686320111
KEGG:00650: Butanoate metabolism	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.002331490731821373
KEGG:00650: Butanoate metabolism	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.0002073436385173155
KEGG:00650: Butanoate metabolism	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010643922027909467
GO:0001666: response to hypoxia	ABAT	4-aminobutyrate aminotransferase	0.0008334434534379154
GO:0001666: response to hypoxia	ADM	adrenomedullin	0.002238812559897346
GO:0001666: response to hypoxia	AGER	advanced glycosylation end product-specific receptor	-0.00017426454237396907
GO:0001666: response to hypoxia	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002914150843654699
GO:0001666: response to hypoxia	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005354719528487098
GO:0001666: response to hypoxia	CCL2	chemokine (C-C motif) ligand 2	0.0008172213365582931
GO:0001666: response to hypoxia	CD24	CD24 molecule	0.0010725532147139417
GO:0001666: response to hypoxia	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007788010520266241
GO:0001666: response to hypoxia	CRYAB	crystallin, alpha B	0.0009855156589479077
GO:0001666: response to hypoxia	CST3	cystatin C	-7.084825260829519e-5
GO:0001666: response to hypoxia	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.002118492984099295
GO:0001666: response to hypoxia	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012092035888901782
GO:0001666: response to hypoxia	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007954308332594617
GO:0001666: response to hypoxia	DRD2	dopamine receptor D2	-0.00023411324962894836
GO:0001666: response to hypoxia	ENG	endoglin	0.0008271176427567824
GO:0001666: response to hypoxia	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006464543407707818
GO:0001666: response to hypoxia	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007812013655777391
GO:0001666: response to hypoxia	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006595603547464595
GO:0001666: response to hypoxia	LEP	leptin	0.0031927134861560623
GO:0001666: response to hypoxia	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011323873096091156
GO:0001666: response to hypoxia	PML	promyelocytic leukemia	-0.0006798120904419594
GO:0001666: response to hypoxia	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001499441259070322
GO:0001666: response to hypoxia	SLC11A2	solute carrier family 11 (proton-coupled divalent metal ion transporter), member 2	-0.0006653504084603687
GO:0001666: response to hypoxia	TFRC	transferrin receptor	0.0010849330467224139
GO:0001666: response to hypoxia	TGFB1	transforming growth factor, beta 1	-7.324269878783425e-5
GO:0001666: response to hypoxia	TGFB2	transforming growth factor, beta 2	-0.001059988161415871
GO:0001666: response to hypoxia	TGFB3	transforming growth factor, beta 3	-0.001825167790215569
GO:0001666: response to hypoxia	TH	tyrosine hydroxylase	-0.000342123414899764
GO:0001666: response to hypoxia	THBS1	thrombospondin 1	-0.001036550292497587
GO:0001666: response to hypoxia	TXN2	thioredoxin 2	0.0013835636435942482
GO:0001666: response to hypoxia	VEGFA	vascular endothelial growth factor A	0.0005957623131915809
GO:0007268: synaptic transmission	ABAT	4-aminobutyrate aminotransferase	0.0008344128582778237
GO:0007268: synaptic transmission	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023257367857581427
GO:0007268: synaptic transmission	ASIC2	acid-sensing (proton-gated) ion channel 2	0.0022770056248329193
GO:0007268: synaptic transmission	BCHE	butyrylcholinesterase	-5.891714260375189e-6
GO:0007268: synaptic transmission	CACNB3	calcium channel, voltage-dependent, beta 3 subunit	0.00021248498616726816
GO:0007268: synaptic transmission	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007771671025138413
GO:0007268: synaptic transmission	CREB1	cAMP responsive element binding protein 1	0.00065603373873862
GO:0007268: synaptic transmission	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011771406287013868
GO:0007268: synaptic transmission	DRD4	dopamine receptor D4	-0.0019426101743123011
GO:0007268: synaptic transmission	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014819946432346226
GO:0007268: synaptic transmission	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.00023303218514897253
GO:0007268: synaptic transmission	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005243373591696023
GO:0007268: synaptic transmission	HTR6	5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled	-0.0010808645611208798
GO:0007268: synaptic transmission	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007757206538099175
GO:0007268: synaptic transmission	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006552123640800502
GO:0007268: synaptic transmission	KCNV2	potassium channel, subfamily V, member 2	0.0009250237892459796
GO:0007268: synaptic transmission	LRP6	low density lipoprotein receptor-related protein 6	0.00014822359348205604
GO:0007268: synaptic transmission	PICK1	protein interacting with PRKCA 1	-0.0009541127470417693
GO:0007268: synaptic transmission	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015258877278244266
GO:0007268: synaptic transmission	PRKCA	protein kinase C, alpha	-6.141223100982476e-6
GO:0007268: synaptic transmission	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014964152404464417
GO:0007268: synaptic transmission	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025108737549834133
GO:0007268: synaptic transmission	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0008991927780949915
GO:0007268: synaptic transmission	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.003117455212633517
GO:0007268: synaptic transmission	SLC5A7	solute carrier family 5 (sodium/choline cotransporter), member 7	0.002009606065392055
GO:0007268: synaptic transmission	SYT1	synaptotagmin I	-0.00144002040301243
GO:0007269: neurotransmitter secretion	ABAT	4-aminobutyrate aminotransferase	0.0008382109591487198
GO:0007269: neurotransmitter secretion	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023423281457344205
GO:0007269: neurotransmitter secretion	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0009061343508545285
GO:0007269: neurotransmitter secretion	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031362699928707705
GO:0007269: neurotransmitter secretion	SLC5A7	solute carrier family 5 (sodium/choline cotransporter), member 7	0.002019773564388274
GO:0007269: neurotransmitter secretion	SYT1	synaptotagmin I	-0.0014518725800134703
GO:0007269: neurotransmitter secretion	WNT7A	wingless-type MMTV integration site family, member 7A	1.9218868493483403e-5
GO:0007620: copulation	ABAT	4-aminobutyrate aminotransferase	0.0008306490238316081
GO:0007620: copulation	PI3	peptidase inhibitor 3, skin-derived	-0.0010312990109310955
GO:0007626: locomotory behavior	ABAT	4-aminobutyrate aminotransferase	0.0008188020442316773
GO:0007626: locomotory behavior	AVP	arginine vasopressin	-0.0009119172021728824
GO:0007626: locomotory behavior	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007604539753433605
GO:0007626: locomotory behavior	DRD2	dopamine receptor D2	-0.00023041388671371214
GO:0007626: locomotory behavior	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.0011642187897423887
GO:0007626: locomotory behavior	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005148148706419102
GO:0007626: locomotory behavior	HTT	huntingtin	-0.0009518194507996052
GO:0007626: locomotory behavior	PTEN	phosphatase and tensin homolog	2.454760211536911e-5
GO:0007626: locomotory behavior	TH	tyrosine hydroxylase	-0.00033776756931748974
GO:0009449: gamma-aminobutyric acid biosynthetic process	ABAT	4-aminobutyrate aminotransferase	0.0008414548467394142
GO:0009449: gamma-aminobutyric acid biosynthetic process	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031463396344390097
GO:0009450: gamma-aminobutyric acid catabolic process	ABAT	4-aminobutyrate aminotransferase	0.0008384285830425878
GO:0009450: gamma-aminobutyric acid catabolic process	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023452776173856025
GO:0010039: response to iron ion	ABAT	4-aminobutyrate aminotransferase	0.0008341486169944332
GO:0010039: response to iron ion	BCL2	B-cell CLL/lymphoma 2	-5.314774669704228e-6
GO:0010039: response to iron ion	CCND1	cyclin D1	-0.002640764841484498
GO:0010039: response to iron ion	CPOX	coproporphyrinogen oxidase	0.0012771007140909793
GO:0010039: response to iron ion	DRD2	dopamine receptor D2	-0.00023434337596458932
GO:0010039: response to iron ion	SLC11A2	solute carrier family 11 (proton-coupled divalent metal ion transporter), member 2	-0.0006660535507818981
GO:0010039: response to iron ion	TFRC	transferrin receptor	0.0010863007139147044
GO:0031652: positive regulation of heat generation	ABAT	4-aminobutyrate aminotransferase	0.0008217362443510855
GO:0032024: positive regulation of insulin secretion	ABAT	4-aminobutyrate aminotransferase	0.0008012149650160562
GO:0032024: positive regulation of insulin secretion	GJA1	gap junction protein, alpha 1, 43kDa	-0.0001415710709742187
GO:0032024: positive regulation of insulin secretion	ISL1	ISL LIM homeobox 1	8.229230395477158e-5
GO:0032024: positive regulation of insulin secretion	JAK2	Janus kinase 2	-3.731858130527172e-5
GO:0032024: positive regulation of insulin secretion	SOX4	SRY (sex determining region Y)-box 4	-4.3476389792572075e-5
GO:0032024: positive regulation of insulin secretion	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005478985119265808
GO:0035094: response to nicotine	ABAT	4-aminobutyrate aminotransferase	0.0008162557589217793
GO:0035094: response to nicotine	AVP	arginine vasopressin	-0.0009092874589890041
GO:0035094: response to nicotine	BCL2	B-cell CLL/lymphoma 2	-5.08663682741707e-6
GO:0035094: response to nicotine	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.000758327813289944
GO:0035094: response to nicotine	DRD2	dopamine receptor D2	-0.00023001114993561648
GO:0035094: response to nicotine	GPX1	glutathione peroxidase 1	0.0003867305456564964
GO:0035094: response to nicotine	HDAC2	histone deacetylase 2	-0.00118854149922459
GO:0035094: response to nicotine	HMOX1	heme oxygenase (decycling) 1	-0.0002107114039207381
GO:0035094: response to nicotine	PDX1	pancreatic and duodenal homeobox 1	0.0002469304872419897
GO:0035094: response to nicotine	STAR	steroidogenic acute regulatory protein	0.0008692233019067945
GO:0042135: neurotransmitter catabolic process	ABAT	4-aminobutyrate aminotransferase	0.0008384285830425878
GO:0042135: neurotransmitter catabolic process	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023452776173856025
GO:0042493: response to drug	ABAT	4-aminobutyrate aminotransferase	0.0008321786943666631
GO:0042493: response to drug	AOC1	amine oxidase, copper containing 1	-0.0014209148964643874
GO:0042493: response to drug	APOD	apolipoprotein D	0.002623707637651464
GO:0042493: response to drug	ASS1	argininosuccinate synthase 1	0.0001419417065117436
GO:0042493: response to drug	BAK1	BCL2-antagonist/killer 1	-0.0018729836222525882
GO:0042493: response to drug	BAX	BCL2-associated X protein	-0.0004245802503364795
GO:0042493: response to drug	BCHE	butyrylcholinesterase	-6.491329207779367e-6
GO:0042493: response to drug	BCL2	B-cell CLL/lymphoma 2	-5.1331737549187e-6
GO:0042493: response to drug	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005348390110634777
GO:0042493: response to drug	CCNB1	cyclin B1	-0.0008812927404760948
GO:0042493: response to drug	CCND1	cyclin D1	-0.0026276380682070835
GO:0042493: response to drug	CCNE1	cyclin E1	0.0003702280230757504
GO:0042493: response to drug	CDH3	cadherin 3, type 1, P-cadherin (placental)	-0.0012289660774525367
GO:0042493: response to drug	COL1A1	collagen, type I, alpha 1	-0.0005247261735010595
GO:0042493: response to drug	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012710699120922074
GO:0042493: response to drug	CREB1	cAMP responsive element binding protein 1	0.0006567835291725941
GO:0042493: response to drug	CST3	cystatin C	-6.962448601715975e-5
GO:0042493: response to drug	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011684991017535412
GO:0042493: response to drug	CTPS1	CTP synthase 1	-0.0004206897806356904
GO:0042493: response to drug	DRD2	dopamine receptor D2	-0.00023377312726287954
GO:0042493: response to drug	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009820486763327393
GO:0042493: response to drug	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.001481889287900839
GO:0042493: response to drug	GATA3	GATA binding protein 3	-3.8842319950124925e-5
GO:0042493: response to drug	GATA4	GATA binding protein 4	-0.0010929060562918144
GO:0042493: response to drug	GATA6	GATA binding protein 6	-2.8269350521338632e-5
GO:0042493: response to drug	GCLM	glutamate-cysteine ligase, modifier subunit	-0.0037559422305854543
GO:0042493: response to drug	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.0003144384741648851
GO:0042493: response to drug	HDAC2	histone deacetylase 2	-0.0012056782378296583
GO:0042493: response to drug	HMGB2	high mobility group box 2	0.0003057390485903444
GO:0042493: response to drug	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005239845147079947
GO:0042493: response to drug	ICAM1	intercellular adhesion molecule 1	0.0007285199041821113
GO:0042493: response to drug	IFNG	interferon, gamma	-4.8881451727045555e-5
GO:0042493: response to drug	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014438128930480135
GO:0042493: response to drug	IL4	interleukin 4	0.0002594464935783
GO:0042493: response to drug	INHBA	inhibin, beta A	-0.0013498319703095438
GO:0042493: response to drug	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0013976669336090658
GO:0042493: response to drug	LOX	lysyl oxidase	-0.0005752529576941597
GO:0042493: response to drug	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009304291800217337
GO:0042493: response to drug	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014181651652112254
GO:0042493: response to drug	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029183920086953494
GO:0042493: response to drug	MCM7	minichromosome maintenance complex component 7	-0.0016415981644914992
GO:0042493: response to drug	MDK	midkine (neurite growth-promoting factor 2)	0.0016614123198063536
GO:0042493: response to drug	MGMT	O-6-methylguanine-DNA methyltransferase	0.0004062990333310245
GO:0042493: response to drug	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004249372548586614
GO:0042493: response to drug	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011347891996923494
GO:0042493: response to drug	PDX1	pancreatic and duodenal homeobox 1	0.00025660085816398936
GO:0042493: response to drug	POR	P450 (cytochrome) oxidoreductase	0.0004564298553459016
GO:0042493: response to drug	PTCH1	patched 1	-6.604529345629705e-5
GO:0042493: response to drug	PTEN	phosphatase and tensin homolog	1.753387340373074e-5
GO:0042493: response to drug	PTN	pleiotrophin	0.0003004802981246497
GO:0042493: response to drug	RAD51	RAD51 recombinase	-0.0018583682484856414
GO:0042493: response to drug	RET	ret proto-oncogene	-0.0004905437144619254
GO:0042493: response to drug	SEMA3C	sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C	-0.00022098422485490054
GO:0042493: response to drug	SFRP1	secreted frizzled-related protein 1	0.001278451366795575
GO:0042493: response to drug	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031160119825241377
GO:0042493: response to drug	SORD	sorbitol dehydrogenase	-0.0020159685579222647
GO:0042493: response to drug	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006417811924567619
GO:0042493: response to drug	STAR	steroidogenic acute regulatory protein	0.0008928183981245765
GO:0042493: response to drug	TGFB1	transforming growth factor, beta 1	-7.280948934419738e-5
GO:0042493: response to drug	TGFB2	transforming growth factor, beta 2	-0.001057361724904403
GO:0042493: response to drug	THBS1	thrombospondin 1	-0.001034138272631389
GO:0042493: response to drug	THRA	thyroid hormone receptor, alpha	0.0007620199142163859
GO:0042493: response to drug	TP73	tumor protein p73	0.001026151602683219
GO:0042493: response to drug	TXN2	thioredoxin 2	0.0013811834239350364
GO:0042493: response to drug	TYMS	thymidylate synthetase	0.001558261207687442
GO:0042493: response to drug	VEGFC	vascular endothelial growth factor C	-0.003358609850114735
GO:0042493: response to drug	VLDLR	very low density lipoprotein receptor	0.0009510405671015775
GO:0042493: response to drug	XBP1	X-box binding protein 1	0.0002669525011888224
GO:0045471: response to ethanol	ABAT	4-aminobutyrate aminotransferase	0.0008299947113849659
GO:0045471: response to ethanol	AVP	arginine vasopressin	-0.0009337376715532951
GO:0045471: response to ethanol	BAK1	BCL2-antagonist/killer 1	-0.0018691442589787507
GO:0045471: response to ethanol	CCL2	chemokine (C-C motif) ligand 2	0.0008139543961952788
GO:0045471: response to ethanol	CCND1	cyclin D1	-0.002622325511988202
GO:0045471: response to ethanol	CCNE1	cyclin E1	0.000369873320706469
GO:0045471: response to ethanol	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007754511338242426
GO:0045471: response to ethanol	EGR1	early growth response 1	0.001089172855630868
GO:0045471: response to ethanol	GATA3	GATA binding protein 3	-3.929473943456693e-5
GO:0045471: response to ethanol	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.0003135356100082612
GO:0045471: response to ethanol	ICAM1	intercellular adhesion molecule 1	0.0007273693293157987
GO:0045471: response to ethanol	IL4	interleukin 4	0.00025901329791812734
GO:0045471: response to ethanol	MGMT	O-6-methylguanine-DNA methyltransferase	0.0004056809053482326
GO:0045471: response to ethanol	PTEN	phosphatase and tensin homolog	1.75865159111261e-5
GO:0045471: response to ethanol	RXRA	retinoid X receptor, alpha	0.0011109968272105305
GO:0045471: response to ethanol	STAR	steroidogenic acute regulatory protein	0.0008910161245458169
GO:0045471: response to ethanol	TH	tyrosine hydroxylase	-0.0003412037158551918
GO:0045471: response to ethanol	TYMS	thymidylate synthetase	0.0015551981636797308
GO:0045776: negative regulation of blood pressure	ABAT	4-aminobutyrate aminotransferase	0.0008395157508078794
GO:0045776: negative regulation of blood pressure	DRD2	dopamine receptor D2	-0.00023535337223040106
GO:0045776: negative regulation of blood pressure	VEGFC	vascular endothelial growth factor C	-0.003389864116282027
GO:0048148: behavioral response to cocaine	ABAT	4-aminobutyrate aminotransferase	0.0008314822091479581
GO:0048148: behavioral response to cocaine	DRD2	dopamine receptor D2	-0.0002328653894670139
GO:0048148: behavioral response to cocaine	DRD4	dopamine receptor D4	-0.0019342023186998314
KEGG:02010: ABC transporters	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0006355: regulation of transcription, DNA-templated	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023416654345713383
GO:0006355: regulation of transcription, DNA-templated	ACVRL1	activin A receptor type II-like 1	0.001946145126392016
GO:0006355: regulation of transcription, DNA-templated	APEX1	APEX nuclease (multifunctional DNA repair enzyme) 1	0.00020012066304845786
GO:0006355: regulation of transcription, DNA-templated	ATF5	activating transcription factor 5	-0.0027384173944665713
GO:0006355: regulation of transcription, DNA-templated	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004858616370202321
GO:0006355: regulation of transcription, DNA-templated	CASP8AP2	caspase 8 associated protein 2	0.0012735027160679785
GO:0006355: regulation of transcription, DNA-templated	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002745449759790138
GO:0006355: regulation of transcription, DNA-templated	CELSR2	cadherin, EGF LAG seven-pass G-type receptor 2	-0.0011360981432418863
GO:0006355: regulation of transcription, DNA-templated	CHAF1B	chromatin assembly factor 1, subunit B (p60)	0.006292511066352083
GO:0006355: regulation of transcription, DNA-templated	CHD3	chromodomain helicase DNA binding protein 3	0.00011917125375918101
GO:0006355: regulation of transcription, DNA-templated	CLOCK	clock circadian regulator	0.00020035738705752516
GO:0006355: regulation of transcription, DNA-templated	DAXX	death-domain associated protein	0.0008926960114535764
GO:0006355: regulation of transcription, DNA-templated	DLX6	distal-less homeobox 6	-0.00018007477071055246
GO:0006355: regulation of transcription, DNA-templated	E2F1	E2F transcription factor 1	0.0021001730920734304
GO:0006355: regulation of transcription, DNA-templated	ENG	endoglin	0.0008277045008275169
GO:0006355: regulation of transcription, DNA-templated	ESR1	estrogen receptor 1	-0.000949051921127011
GO:0006355: regulation of transcription, DNA-templated	EYA3	EYA transcriptional coactivator and phosphatase 3	0.0008375143974783712
GO:0006355: regulation of transcription, DNA-templated	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013690751833421615
GO:0006355: regulation of transcription, DNA-templated	FOXC1	forkhead box C1	-2.2551636859671693e-5
GO:0006355: regulation of transcription, DNA-templated	FOXM1	forkhead box M1	0.00019711988572973039
GO:0006355: regulation of transcription, DNA-templated	FZD7	frizzled class receptor 7	0.0010715426643732198
GO:0006355: regulation of transcription, DNA-templated	GATA4	GATA binding protein 4	-0.0010960469903292568
GO:0006355: regulation of transcription, DNA-templated	GLRX2	glutaredoxin 2	0.0011173084831466254
GO:0006355: regulation of transcription, DNA-templated	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006473802200420285
GO:0006355: regulation of transcription, DNA-templated	HINFP	histone H4 transcription factor	0.0009935293433366494
GO:0006355: regulation of transcription, DNA-templated	HMGA1	high mobility group AT-hook 1	-0.0003192983440858224
GO:0006355: regulation of transcription, DNA-templated	HMGA2	high mobility group AT-hook 2	0.0015108935737475357
GO:0006355: regulation of transcription, DNA-templated	HMGB3	high mobility group box 3	0.00046420608836882793
GO:0006355: regulation of transcription, DNA-templated	HOXA3	homeobox A3	0.0009898676244079934
GO:0006355: regulation of transcription, DNA-templated	HOXB1	homeobox B1	0.0036909602546054657
GO:0006355: regulation of transcription, DNA-templated	HOXB13	homeobox B13	0.0018279178412547701
GO:0006355: regulation of transcription, DNA-templated	HOXB2	homeobox B2	0.002777830801883462
GO:0006355: regulation of transcription, DNA-templated	HOXD13	homeobox D13	-0.0005931751328169794
GO:0006355: regulation of transcription, DNA-templated	INSR	insulin receptor	-0.001364894678668541
GO:0006355: regulation of transcription, DNA-templated	JMJD6	jumonji domain containing 6	0.003595176943406384
GO:0006355: regulation of transcription, DNA-templated	KANK1	KN motif and ankyrin repeat domains 1	0.002536265891080382
GO:0006355: regulation of transcription, DNA-templated	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00019955351860871602
GO:0006355: regulation of transcription, DNA-templated	LHX6	LIM homeobox 6	0.0013455375779938107
GO:0006355: regulation of transcription, DNA-templated	MEF2C	myocyte enhancer factor 2C	0.0009745956786313338
GO:0006355: regulation of transcription, DNA-templated	MTERF1	mitochondrial transcription termination factor 1	0.0002865548486519686
GO:0006355: regulation of transcription, DNA-templated	NEUROD4	neuronal differentiation 4	0.0015087356138340658
GO:0006355: regulation of transcription, DNA-templated	NOTCH1	notch 1	0.0005192910047033057
GO:0006355: regulation of transcription, DNA-templated	NRBF2	nuclear receptor binding factor 2	-0.0009522439220127646
GO:0006355: regulation of transcription, DNA-templated	PADI4	peptidyl arginine deiminase, type IV	-0.0008276419108376792
GO:0006355: regulation of transcription, DNA-templated	PITX2	paired-like homeodomain 2	0.002178824277367716
GO:0006355: regulation of transcription, DNA-templated	PML	promyelocytic leukemia	-0.0006808680696586665
GO:0006355: regulation of transcription, DNA-templated	POU1F1	POU class 1 homeobox 1	0.00013762929217908933
GO:0006355: regulation of transcription, DNA-templated	PRDM4	PR domain containing 4	0.0008414084890226063
GO:0006355: regulation of transcription, DNA-templated	PTTG1	pituitary tumor-transforming 1	-0.00036232234391625544
GO:0006355: regulation of transcription, DNA-templated	PTTG2	pituitary tumor-transforming 2	-0.0017268107379317713
GO:0006355: regulation of transcription, DNA-templated	PTTG3P	pituitary tumor-transforming 3, pseudogene	-4.039121476881649e-5
GO:0006355: regulation of transcription, DNA-templated	RBBP4	retinoblastoma binding protein 4	-0.0018629889162687437
GO:0006355: regulation of transcription, DNA-templated	RFC1	replication factor C (activator 1) 1, 145kDa	0.0010605418258528652
GO:0006355: regulation of transcription, DNA-templated	RREB1	ras responsive element binding protein 1	-0.001984071087583619
GO:0006355: regulation of transcription, DNA-templated	SIX1	SIX homeobox 1	-0.0018722733006293455
GO:0006355: regulation of transcription, DNA-templated	SOX4	SRY (sex determining region Y)-box 4	-3.847491638180213e-5
GO:0006355: regulation of transcription, DNA-templated	TBPL1	TBP-like 1	-0.0007898968812773782
GO:0006355: regulation of transcription, DNA-templated	TBX21	T-box 21	0.0003990177683590805
GO:0006355: regulation of transcription, DNA-templated	TGFBR1	transforming growth factor, beta receptor 1	0.00034029091337871547
GO:0006355: regulation of transcription, DNA-templated	TP53	tumor protein p53	0.001177115301619081
GO:0006355: regulation of transcription, DNA-templated	TULP3	tubby like protein 3	0.0009574557678974639
GO:0006355: regulation of transcription, DNA-templated	TXLNG	taxilin gamma	-0.0008385220667024983
GO:0006355: regulation of transcription, DNA-templated	WT1	Wilms tumor 1	-0.0005075515558327779
GO:0006355: regulation of transcription, DNA-templated	WWTR1	WW domain containing transcription regulator 1	0.0009013744323481764
GO:0006355: regulation of transcription, DNA-templated	YBX1	Y box binding protein 1	-0.0009151955467048583
GO:0006355: regulation of transcription, DNA-templated	ZFP36L2	ZFP36 ring finger protein-like 2	-0.00036338286685005646
GO:0006355: regulation of transcription, DNA-templated	ZNF205	zinc finger protein 205	0.0005968252310036012
GO:0006355: regulation of transcription, DNA-templated	ZNF207	zinc finger protein 207	-0.00038983401064739934
GO:0006355: regulation of transcription, DNA-templated	ZNF266	zinc finger protein 266	0.0004130464185346674
GO:0006355: regulation of transcription, DNA-templated	ZNF335	zinc finger protein 335	-0.0003652254104425741
GO:0006355: regulation of transcription, DNA-templated	ZNF442	zinc finger protein 442	0.0010595863897576066
GO:0008203: cholesterol metabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002345487810176391
GO:0008203: cholesterol metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016361504466810516
GO:0008203: cholesterol metabolic process	IL4	interleukin 4	0.0002596518069478492
GO:0008203: cholesterol metabolic process	LEP	leptin	0.0032021505124831783
GO:0008203: cholesterol metabolic process	LRP5	low density lipoprotein receptor-related protein 5	2.981304340339875e-5
GO:0008203: cholesterol metabolic process	RXRA	retinoid X receptor, alpha	0.001118434059028742
GO:0008203: cholesterol metabolic process	SOAT1	sterol O-acyltransferase 1	-0.0004083545783319703
GO:0008203: cholesterol metabolic process	STAR	steroidogenic acute regulatory protein	0.0008976499727709575
GO:0008203: cholesterol metabolic process	VLDLR	very low density lipoprotein receptor	0.0009564620301798076
GO:0009720: detection of hormone stimulus	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0010033: response to organic substance	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002333067227811543
GO:0010033: response to organic substance	CREB1	cAMP responsive element binding protein 1	0.0006548028848150212
GO:0010033: response to organic substance	CRIP1	cysteine-rich protein 1 (intestinal)	0.001720436410130986
GO:0010033: response to organic substance	GLRX2	glutaredoxin 2	0.0011134929047623768
GO:0010033: response to organic substance	MAPT	microtubule-associated protein tau	0.0015495420225335108
GO:0010033: response to organic substance	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.000657326926198393
GO:0010033: response to organic substance	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006650579785260211
GO:0010745: negative regulation of macrophage derived foam cell differentiation	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023466386573099116
GO:0010745: negative regulation of macrophage derived foam cell differentiation	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.000803253750478068
GO:0010872: regulation of cholesterol esterification	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0010875: positive regulation of cholesterol efflux	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002326271039840744
GO:0010875: positive regulation of cholesterol efflux	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007981704538679055
GO:0010875: positive regulation of cholesterol efflux	PTCH1	patched 1	-6.733786411850881e-5
GO:0010875: positive regulation of cholesterol efflux	SIRT1	sirtuin 1	-3.108596316558611e-6
GO:0010887: negative regulation of cholesterol storage	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023466386573099116
GO:0010887: negative regulation of cholesterol storage	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.000803253750478068
GO:0032367: intracellular cholesterol transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023414183670599823
GO:0032367: intracellular cholesterol transport	STAR	steroidogenic acute regulatory protein	0.0008955133587820492
GO:0032367: intracellular cholesterol transport	VPS4A	vacuolar protein sorting 4 homolog A (S. cerevisiae)	-0.0006857834708294202
GO:0033344: cholesterol efflux	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023351541238514494
GO:0033344: cholesterol efflux	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005351373609785363
GO:0033344: cholesterol efflux	SOAT1	sterol O-acyltransferase 1	-0.00040815997631377267
GO:0033700: phospholipid efflux	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0033993: response to lipid	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002348053988443846
GO:0033993: response to lipid	GATA2	GATA binding protein 2	-0.00045468612400768345
GO:0033993: response to lipid	PCNA	proliferating cell nuclear antigen	0.0012333088339832423
GO:0034374: low-density lipoprotein particle remodeling	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002347734965353924
GO:0034374: low-density lipoprotein particle remodeling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011404141840943827
GO:0034374: low-density lipoprotein particle remodeling	AGTR1	angiotensin II receptor, type 1	0.0003465689823358318
GO:0034375: high-density lipoprotein particle remodeling	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0034436: glycoprotein transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023604555192209137
GO:0034436: glycoprotein transport	GUK1	guanylate kinase 1	0.00330184361255477
GO:0034436: glycoprotein transport	VLDLR	very low density lipoprotein receptor	0.0009646216533888687
GO:0042157: lipoprotein metabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0042632: cholesterol homeostasis	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023332367560422555
GO:0042632: cholesterol homeostasis	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014868902932814725
GO:0042632: cholesterol homeostasis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005350171271437999
GO:0042632: cholesterol homeostasis	CD24	CD24 molecule	0.0010673039896267867
GO:0042632: cholesterol homeostasis	HPN	hepsin	0.003153234475892597
GO:0042632: cholesterol homeostasis	LRP5	low density lipoprotein receptor-related protein 5	3.040272412830929e-5
GO:0042632: cholesterol homeostasis	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008000871231898226
GO:0042632: cholesterol homeostasis	SIRT1	sirtuin 1	-2.7065479982396626e-6
GO:0042632: cholesterol homeostasis	SOAT1	sterol O-acyltransferase 1	-0.0004086500224572342
GO:0042632: cholesterol homeostasis	XBP1	X-box binding protein 1	0.0002685974596927556
GO:0042987: amyloid precursor protein catabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002356926099937953
GO:0042987: amyloid precursor protein catabolic process	DHCR24	24-dehydrocholesterol reductase	-0.0017218261808735018
GO:0043691: reverse cholesterol transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0044281: small molecule metabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023373006184539986
GO:0044281: small molecule metabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009806184984740072
GO:0044281: small molecule metabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011354676229892824
GO:0044281: small molecule metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001131605797955749
GO:0044281: small molecule metabolic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007299030112991716
GO:0044281: small molecule metabolic process	ALOX12	arachidonate 12-lipoxygenase	-0.0019519243432385431
GO:0044281: small molecule metabolic process	AMD1	adenosylmethionine decarboxylase 1	-0.00252711994101235
GO:0044281: small molecule metabolic process	ASS1	argininosuccinate synthase 1	0.00014210037478324931
GO:0044281: small molecule metabolic process	AUH	AU RNA binding protein/enoyl-CoA hydratase	-0.0014606095431669815
GO:0044281: small molecule metabolic process	AZIN1	antizyme inhibitor 1	-0.00012711882989741366
GO:0044281: small molecule metabolic process	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.0002072196415209429
GO:0044281: small molecule metabolic process	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005352462335167764
GO:0044281: small molecule metabolic process	CBS	cystathionine-beta-synthase	0.0015155290105719082
GO:0044281: small molecule metabolic process	CHST15	carbohydrate (N-acetylgalactosamine 4-sulfate 6-O) sulfotransferase 15	-0.0008251421276839759
GO:0044281: small molecule metabolic process	CPOX	coproporphyrinogen oxidase	0.0012717567178886773
GO:0044281: small molecule metabolic process	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012720760621700968
GO:0044281: small molecule metabolic process	CROT	carnitine O-octanoyltransferase	-0.0004380009443825057
GO:0044281: small molecule metabolic process	CTH	cystathionine gamma-lyase	0.0017469343321310426
GO:0044281: small molecule metabolic process	CTPS1	CTP synthase 1	-0.00042104465046334793
GO:0044281: small molecule metabolic process	CTPS2	CTP synthase 2	0.0017590352351665832
GO:0044281: small molecule metabolic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003975547127915588
GO:0044281: small molecule metabolic process	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047043275777649624
GO:0044281: small molecule metabolic process	CYP4B1	cytochrome P450, family 4, subfamily B, polypeptide 1	-0.0013549255428817462
GO:0044281: small molecule metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016319722932243993
GO:0044281: small molecule metabolic process	DCT	dopachrome tautomerase	-0.002351662469383146
GO:0044281: small molecule metabolic process	DHCR24	24-dehydrocholesterol reductase	-0.001706145747730388
GO:0044281: small molecule metabolic process	DHFR	dihydrofolate reductase	-0.00030787753765544406
GO:0044281: small molecule metabolic process	DTYMK	deoxythymidylate kinase (thymidylate kinase)	0.0034793847935863337
GO:0044281: small molecule metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005244086502352607
GO:0044281: small molecule metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020678983391271178
GO:0044281: small molecule metabolic process	GCDH	glutaryl-CoA dehydrogenase	-4.8769419853950765e-6
GO:0044281: small molecule metabolic process	GCHFR	GTP cyclohydrolase I feedback regulator	-0.0008418507162816582
GO:0044281: small molecule metabolic process	GCLM	glutamate-cysteine ligase, modifier subunit	-0.0037590667334135726
GO:0044281: small molecule metabolic process	GMPS	guanine monphosphate synthase	0.0017725539984257545
GO:0044281: small molecule metabolic process	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005669395518063692
GO:0044281: small molecule metabolic process	GPX1	glutathione peroxidase 1	0.00038770796335673124
GO:0044281: small molecule metabolic process	GSTM1	glutathione S-transferase mu 1	-0.001473001020169157
GO:0044281: small molecule metabolic process	GSTM2	glutathione S-transferase mu 2 (muscle)	-0.0019128202855439639
GO:0044281: small molecule metabolic process	GSTM3	glutathione S-transferase mu 3 (brain)	-0.001288025125840596
GO:0044281: small molecule metabolic process	GSTP1	glutathione S-transferase pi 1	0.00023126604079261767
GO:0044281: small molecule metabolic process	GUK1	guanylate kinase 1	0.0032717822596017546
GO:0044281: small molecule metabolic process	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010627053518895474
GO:0044281: small molecule metabolic process	HMOX1	heme oxygenase (decycling) 1	-0.0002173147123863941
GO:0044281: small molecule metabolic process	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.0011850174365291715
GO:0044281: small molecule metabolic process	HS2ST1	heparan sulfate 2-O-sulfotransferase 1	-0.0008098221661686955
GO:0044281: small molecule metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011616703408892073
GO:0044281: small molecule metabolic process	IDO1	indoleamine 2,3-dioxygenase 1	0.0012247051510665388
GO:0044281: small molecule metabolic process	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018705519376337983
GO:0044281: small molecule metabolic process	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.00034713673821601404
GO:0044281: small molecule metabolic process	INPP4B	inositol polyphosphate-4-phosphatase, type II, 105kDa	0.00029002999121887187
GO:0044281: small molecule metabolic process	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007795693559122959
GO:0044281: small molecule metabolic process	IVD	isovaleryl-CoA dehydrogenase	-0.0009353098630946354
GO:0044281: small molecule metabolic process	KPNB1	karyopherin (importin) beta 1	0.0007714731747169496
GO:0044281: small molecule metabolic process	MCCC1	methylcrotonoyl-CoA carboxylase 1 (alpha)	8.376352857033799e-5
GO:0044281: small molecule metabolic process	MCCC2	methylcrotonoyl-CoA carboxylase 2 (beta)	-0.0007843290744811765
GO:0044281: small molecule metabolic process	MED1	mediator complex subunit 1	0.0011280056167164048
GO:0044281: small molecule metabolic process	MGAM	maltase-glucoamylase (alpha-glucosidase)	-0.0013076289398003891
GO:0044281: small molecule metabolic process	MTAP	methylthioadenosine phosphorylase	0.002655983017541137
GO:0044281: small molecule metabolic process	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006638600248168458
GO:0044281: small molecule metabolic process	MTMR2	myotubularin related protein 2	-0.0004608399973891541
GO:0044281: small molecule metabolic process	MUT	methylmalonyl CoA mutase	0.0027569030328873333
GO:0044281: small molecule metabolic process	NUDT1	nudix (nucleoside diphosphate linked moiety X)-type motif 1	0.0018356933277766559
GO:0044281: small molecule metabolic process	NUP153	nucleoporin 153kDa	0.0008242990270838395
GO:0044281: small molecule metabolic process	ODC1	ornithine decarboxylase 1	0.0008245338645328432
GO:0044281: small molecule metabolic process	OGDH	oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide)	-0.0002944944326599107
GO:0044281: small molecule metabolic process	PDK1	pyruvate dehydrogenase kinase, isozyme 1	0.0014229685868522122
GO:0044281: small molecule metabolic process	PDK2	pyruvate dehydrogenase kinase, isozyme 2	0.0014785758412337589
GO:0044281: small molecule metabolic process	PDK3	pyruvate dehydrogenase kinase, isozyme 3	0.0007714443325769018
GO:0044281: small molecule metabolic process	PEX11A	peroxisomal biogenesis factor 11 alpha	0.0007169087210258605
GO:0044281: small molecule metabolic process	PGLS	6-phosphogluconolactonase	0.0017488904597297995
GO:0044281: small molecule metabolic process	PHGDH	phosphoglycerate dehydrogenase	0.0002919052400168685
GO:0044281: small molecule metabolic process	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007801866571449217
GO:0044281: small molecule metabolic process	PLA2G5	phospholipase A2, group V	0.002077474892648903
GO:0044281: small molecule metabolic process	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015338744229837422
GO:0044281: small molecule metabolic process	PNPO	pyridoxamine 5'-phosphate oxidase	-0.0010903692355139565
GO:0044281: small molecule metabolic process	POLD1	polymerase (DNA directed), delta 1, catalytic subunit	-0.00044472844066504886
GO:0044281: small molecule metabolic process	PRKCA	protein kinase C, alpha	-5.866899738273976e-6
GO:0044281: small molecule metabolic process	PSAT1	phosphoserine aminotransferase 1	-0.0007224615812606295
GO:0044281: small molecule metabolic process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.0003316121703645836
GO:0044281: small molecule metabolic process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.001094473474880451
GO:0044281: small molecule metabolic process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-5.9887371760312385e-5
GO:0044281: small molecule metabolic process	PSPH	phosphoserine phosphatase	-0.0019339171391770395
GO:0044281: small molecule metabolic process	PTEN	phosphatase and tensin homolog	1.749550998646242e-5
GO:0044281: small molecule metabolic process	QDPR	quinoid dihydropteridine reductase	-0.0028537157178306154
GO:0044281: small molecule metabolic process	RRM1	ribonucleotide reductase M1	0.0019079777013236187
GO:0044281: small molecule metabolic process	RRM2	ribonucleotide reductase M2	-0.0005665510292744956
GO:0044281: small molecule metabolic process	RXRA	retinoid X receptor, alpha	0.0011142677289570052
GO:0044281: small molecule metabolic process	SEH1L	SEH1-like (S. cerevisiae)	-0.0007321582541877544
GO:0044281: small molecule metabolic process	SLC25A37	solute carrier family 25 (mitochondrial iron transporter), member 37	-0.0002787947864612836
GO:0044281: small molecule metabolic process	SLC2A5	solute carrier family 2 (facilitated glucose/fructose transporter), member 5	0.000231138793805967
GO:0044281: small molecule metabolic process	SLC35D1	solute carrier family 35 (UDP-GlcA/UDP-GalNAc transporter), member D1	-6.698629543688218e-5
GO:0044281: small molecule metabolic process	SLC44A4	solute carrier family 44, member 4	0.002852317752395857
GO:0044281: small molecule metabolic process	SLC6A8	solute carrier family 6 (neurotransmitter transporter), member 8	-0.0010431893460143566
GO:0044281: small molecule metabolic process	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.00034516995628864613
GO:0044281: small molecule metabolic process	SORD	sorbitol dehydrogenase	-0.0020177145208289124
GO:0044281: small molecule metabolic process	SPHK1	sphingosine kinase 1	0.001809404706955886
GO:0044281: small molecule metabolic process	SPR	sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase)	-0.0012311909799859442
GO:0044281: small molecule metabolic process	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006423794498907137
GO:0044281: small molecule metabolic process	STAR	steroidogenic acute regulatory protein	0.0008936042515129587
GO:0044281: small molecule metabolic process	SULT4A1	sulfotransferase family 4A, member 1	-0.0011680790625527703
GO:0044281: small molecule metabolic process	TAT	tyrosine aminotransferase	0.001052009483898624
GO:0044281: small molecule metabolic process	TH	tyrosine hydroxylase	-0.0003419874362343102
GO:0044281: small molecule metabolic process	TNFRSF21	tumor necrosis factor receptor superfamily, member 21	0.0003481871459634777
GO:0044281: small molecule metabolic process	TPR	translocated promoter region, nuclear basket protein	-0.0006965563073315001
GO:0044281: small molecule metabolic process	TYMS	thymidylate synthetase	0.0015596642566728517
GO:0044281: small molecule metabolic process	UGCG	UDP-glucose ceramide glucosyltransferase	0.00036898840251944453
GO:0044281: small molecule metabolic process	UGDH	UDP-glucose 6-dehydrogenase	0.0005017948944982192
GO:0044281: small molecule metabolic process	UGP2	UDP-glucose pyrophosphorylase 2	0.0007844667407606125
GO:0045542: positive regulation of cholesterol biosynthetic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023467586157089014
GO:0045542: positive regulation of cholesterol biosynthetic process	POR	P450 (cytochrome) oxidoreductase	0.00045894675342146287
GO:0055085: transmembrane transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023373963132747723
GO:0055085: transmembrane transport	ASIC2	acid-sensing (proton-gated) ion channel 2	0.002278419859172249
GO:0055085: transmembrane transport	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0014972326308670325
GO:0055085: transmembrane transport	AVP	arginine vasopressin	-0.0009360706646363325
GO:0055085: transmembrane transport	BCL2	B-cell CLL/lymphoma 2	-4.8237896521701355e-6
GO:0055085: transmembrane transport	CLCN2	chloride channel, voltage-sensitive 2	0.0010591561287887508
GO:0055085: transmembrane transport	CP	ceruloplasmin (ferroxidase)	0.0013070700736619433
GO:0055085: transmembrane transport	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014832472302783264
GO:0055085: transmembrane transport	HMOX1	heme oxygenase (decycling) 1	-0.00021720973432194692
GO:0055085: transmembrane transport	MRS2	MRS2 magnesium transporter	0.0006567646168481227
GO:0055085: transmembrane transport	NUP153	nucleoporin 153kDa	0.0008235870970852995
GO:0055085: transmembrane transport	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014977626876629012
GO:0055085: transmembrane transport	SEH1L	SEH1-like (S. cerevisiae)	-0.0007328517484202863
GO:0055085: transmembrane transport	SLC11A2	solute carrier family 11 (proton-coupled divalent metal ion transporter), member 2	-0.0006650349956668869
GO:0055085: transmembrane transport	SLC15A1	solute carrier family 15 (oligopeptide transporter), member 1	-0.0027585655642272506
GO:0055085: transmembrane transport	SLC15A2	solute carrier family 15 (oligopeptide transporter), member 2	-0.0001230866347961231
GO:0055085: transmembrane transport	SLC17A3	solute carrier family 17 (organic anion transporter), member 3	-0.0008661666739755717
GO:0055085: transmembrane transport	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0009006843346179442
GO:0055085: transmembrane transport	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031193849803142835
GO:0055085: transmembrane transport	SLC1A5	solute carrier family 1 (neutral amino acid transporter), member 5	0.0015350964550970086
GO:0055085: transmembrane transport	SLC22A18	solute carrier family 22, member 18	0.0007342816565890953
GO:0055085: transmembrane transport	SLC22A4	solute carrier family 22 (organic cation/zwitterion transporter), member 4	-0.00047978319345127167
GO:0055085: transmembrane transport	SLC22A5	solute carrier family 22 (organic cation/carnitine transporter), member 5	-0.0018523046292869606
GO:0055085: transmembrane transport	SLC25A44	solute carrier family 25, member 44	0.00034531985411083167
GO:0055085: transmembrane transport	SLC2A5	solute carrier family 2 (facilitated glucose/fructose transporter), member 5	0.0002310158243279611
GO:0055085: transmembrane transport	SLC31A1	solute carrier family 31 (copper transporter), member 1	-2.6521411238811043e-5
GO:0055085: transmembrane transport	SLC35D1	solute carrier family 35 (UDP-GlcA/UDP-GalNAc transporter), member D1	-6.695539968320691e-5
GO:0055085: transmembrane transport	SLC39A14	solute carrier family 39 (zinc transporter), member 14	0.00019671081815350637
GO:0055085: transmembrane transport	SLC39A6	solute carrier family 39 (zinc transporter), member 6	0.0003055208990129551
GO:0055085: transmembrane transport	SLC44A4	solute carrier family 44, member 4	0.002853944155337939
GO:0055085: transmembrane transport	SLC4A7	solute carrier family 4, sodium bicarbonate cotransporter, member 7	0.0008821552977918823
GO:0055085: transmembrane transport	SLC5A7	solute carrier family 5 (sodium/choline cotransporter), member 7	0.0020106521532091306
GO:0055085: transmembrane transport	SLC7A5	solute carrier family 7 (amino acid transporter light chain, L system), member 5	-0.0025734284231520616
GO:0055085: transmembrane transport	SLC7A7	solute carrier family 7 (amino acid transporter light chain, y+L system), member 7	-0.0005985999534865753
GO:0055085: transmembrane transport	SLC7A8	solute carrier family 7 (amino acid transporter light chain, L system), member 8	-0.0004690251307187529
GO:0055085: transmembrane transport	STEAP3	STEAP family member 3, metalloreductase	0.002607597853962524
GO:0055085: transmembrane transport	TFRC	transferrin receptor	0.0010839266451801008
GO:0055085: transmembrane transport	TPR	translocated promoter region, nuclear basket protein	-0.0006968639987634024
GO:0055085: transmembrane transport	TTYH1	tweety family member 1	0.0008688345226562566
GO:0055091: phospholipid homeostasis	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:0055099: response to high density lipoprotein particle	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747847
GO:1901998: toxin transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002346795806007112
GO:1901998: toxin transport	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002923295895721559
GO:1901998: toxin transport	DNM1	dynamin 1	-0.001314818284281503
GO:1901998: toxin transport	LRP6	low density lipoprotein receptor-related protein 6	0.00015035712009481194
GO:1901998: toxin transport	NRP1	neuropilin 1	-0.0006458480958389626
GO:1901998: toxin transport	SLC17A3	solute carrier family 17 (organic anion transporter), member 3	-0.0008704568727983807
GO:1901998: toxin transport	SLC7A8	solute carrier family 7 (amino acid transporter light chain, L system), member 8	-0.00047314882636165966
GO:0000447: endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)	ABT1	activator of basal transcription 1	0.0025808828118788606
GO:0000472: endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)	ABT1	activator of basal transcription 1	0.0025808828118788606
GO:0000480: endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)	ABT1	activator of basal transcription 1	0.0025808828118788606
GO:0006357: regulation of transcription from RNA polymerase II promoter	ABT1	activator of basal transcription 1	0.002548599425667887
GO:0006357: regulation of transcription from RNA polymerase II promoter	ATF5	activating transcription factor 5	-0.002742692228784359
GO:0006357: regulation of transcription from RNA polymerase II promoter	BATF	basic leucine zipper transcription factor, ATF-like	0.0020423455617131856
GO:0006357: regulation of transcription from RNA polymerase II promoter	BBS7	Bardet-Biedl syndrome 7	-0.0009800454774115735
GO:0006357: regulation of transcription from RNA polymerase II promoter	CHD3	chromodomain helicase DNA binding protein 3	0.00011870809770782319
GO:0006357: regulation of transcription from RNA polymerase II promoter	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002826665662063507
GO:0006357: regulation of transcription from RNA polymerase II promoter	CLOCK	clock circadian regulator	0.00019956451248389576
GO:0006357: regulation of transcription from RNA polymerase II promoter	DEK	DEK proto-oncogene	0.0024966760926128503
GO:0006357: regulation of transcription from RNA polymerase II promoter	ECM1	extracellular matrix protein 1	-0.0015634305285417934
GO:0006357: regulation of transcription from RNA polymerase II promoter	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011776085549585957
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXA2	forkhead box A2	-1.631171154918549e-5
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017528806946937778
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXE3	forkhead box E3	0.0010535980170645678
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXO3	forkhead box O3	0.00120390467137831
GO:0006357: regulation of transcription from RNA polymerase II promoter	GRHL2	grainyhead-like 2 (Drosophila)	0.0010091329198541833
GO:0006357: regulation of transcription from RNA polymerase II promoter	HMGB1	high mobility group box 1	-0.0007775343098847409
GO:0006357: regulation of transcription from RNA polymerase II promoter	HMGB2	high mobility group box 2	0.00031056276397000365
GO:0006357: regulation of transcription from RNA polymerase II promoter	INHBA	inhibin, beta A	-0.001359277785437204
GO:0006357: regulation of transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.002182533756769118
GO:0006357: regulation of transcription from RNA polymerase II promoter	PKN1	protein kinase N1	-0.0019083906098755522
GO:0006357: regulation of transcription from RNA polymerase II promoter	PURA	purine-rich element binding protein A	-0.00017148223536069102
GO:0006357: regulation of transcription from RNA polymerase II promoter	RAD21	RAD21 homolog (S. pombe)	-0.00010205743301588331
GO:0006357: regulation of transcription from RNA polymerase II promoter	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003465312712153093
GO:0006357: regulation of transcription from RNA polymerase II promoter	SOX10	SRY (sex determining region Y)-box 10	0.00019354372544261642
GO:0006357: regulation of transcription from RNA polymerase II promoter	STAT5A	signal transducer and activator of transcription 5A	0.0016005449419091407
GO:0006357: regulation of transcription from RNA polymerase II promoter	TBX3	T-box 3	0.0012283722603860588
GO:0006357: regulation of transcription from RNA polymerase II promoter	TCF15	transcription factor 15 (basic helix-loop-helix)	-0.0026613922801142294
GO:0006357: regulation of transcription from RNA polymerase II promoter	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005761274762007429
GO:0006357: regulation of transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010656573993014773
GO:0006357: regulation of transcription from RNA polymerase II promoter	TFCP2L1	transcription factor CP2-like 1	0.00045058761855385274
GO:0006357: regulation of transcription from RNA polymerase II promoter	TFDP1	transcription factor Dp-1	0.0014508550242735452
GO:0006357: regulation of transcription from RNA polymerase II promoter	THRA	thyroid hormone receptor, alpha	0.0007651182613818635
GO:0006357: regulation of transcription from RNA polymerase II promoter	VEGFA	vascular endothelial growth factor A	0.0005979345192633118
GO:0006357: regulation of transcription from RNA polymerase II promoter	WDR77	WD repeat domain 77	0.00013432231809843407
GO:0006357: regulation of transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.0005088512230075559
GO:0006357: regulation of transcription from RNA polymerase II promoter	YY1	YY1 transcription factor	0.0013448430086207984
GO:0006366: transcription from RNA polymerase II promoter	ABT1	activator of basal transcription 1	0.002547272200698457
GO:0006366: transcription from RNA polymerase II promoter	ALX1	ALX homeobox 1	0.002297254352941164
GO:0006366: transcription from RNA polymerase II promoter	ATF5	activating transcription factor 5	-0.0027416416805262317
GO:0006366: transcription from RNA polymerase II promoter	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004868934145365415
GO:0006366: transcription from RNA polymerase II promoter	BATF	basic leucine zipper transcription factor, ATF-like	0.0020420813105212986
GO:0006366: transcription from RNA polymerase II promoter	CDC40	cell division cycle 40	0.004175257673659741
GO:0006366: transcription from RNA polymerase II promoter	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.000274256007773169
GO:0006366: transcription from RNA polymerase II promoter	CHD5	chromodomain helicase DNA binding protein 5	-0.0005202110736977482
GO:0006366: transcription from RNA polymerase II promoter	CLOCK	clock circadian regulator	0.0001997256928343236
GO:0006366: transcription from RNA polymerase II promoter	CREB1	cAMP responsive element binding protein 1	0.0006608582004217469
GO:0006366: transcription from RNA polymerase II promoter	DEK	DEK proto-oncogene	0.0024953548997541414
GO:0006366: transcription from RNA polymerase II promoter	DLX5	distal-less homeobox 5	-0.0032907753226698346
GO:0006366: transcription from RNA polymerase II promoter	DMRT1	doublesex and mab-3 related transcription factor 1	0.0015087448243979954
GO:0006366: transcription from RNA polymerase II promoter	EGR1	early growth response 1	0.001095705668025827
GO:0006366: transcription from RNA polymerase II promoter	EGR2	early growth response 2	0.0014438711865747285
GO:0006366: transcription from RNA polymerase II promoter	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011765086377914663
GO:0006366: transcription from RNA polymerase II promoter	ESR1	estrogen receptor 1	-0.0009513485164322877
GO:0006366: transcription from RNA polymerase II promoter	ETV4	ets variant 4	0.000195948033489356
GO:0006366: transcription from RNA polymerase II promoter	FOXA1	forkhead box A1	2.6456481133220743e-5
GO:0006366: transcription from RNA polymerase II promoter	FOXA2	forkhead box A2	-1.6394897312831046e-5
GO:0006366: transcription from RNA polymerase II promoter	FOXC1	forkhead box C1	-2.121341454536409e-5
GO:0006366: transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.001752253623986773
GO:0006366: transcription from RNA polymerase II promoter	FOXE3	forkhead box E3	0.0010532326424197399
GO:0006366: transcription from RNA polymerase II promoter	FOXH1	forkhead box H1	-0.0013755641386214122
GO:0006366: transcription from RNA polymerase II promoter	FOXM1	forkhead box M1	0.0001985638369795798
GO:0006366: transcription from RNA polymerase II promoter	GATA2	GATA binding protein 2	-0.00045336436088381273
GO:0006366: transcription from RNA polymerase II promoter	GATA3	GATA binding protein 3	-4.0087938729144274e-5
GO:0006366: transcription from RNA polymerase II promoter	GATA4	GATA binding protein 4	-0.0010977494600769586
GO:0006366: transcription from RNA polymerase II promoter	GATA6	GATA binding protein 6	-2.765440487488997e-5
GO:0006366: transcription from RNA polymerase II promoter	GLI2	GLI family zinc finger 2	0.0018581536683981111
GO:0006366: transcription from RNA polymerase II promoter	GLI3	GLI family zinc finger 3	-0.002158124667481367
GO:0006366: transcription from RNA polymerase II promoter	GRHL2	grainyhead-like 2 (Drosophila)	0.001008849373771276
GO:0006366: transcription from RNA polymerase II promoter	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006793749302363292
GO:0006366: transcription from RNA polymerase II promoter	HMGA1	high mobility group AT-hook 1	-0.0003188397277203901
GO:0006366: transcription from RNA polymerase II promoter	HMGA2	high mobility group AT-hook 2	0.0015122341438013312
GO:0006366: transcription from RNA polymerase II promoter	HOXA10	homeobox A10	-0.002989096040837077
GO:0006366: transcription from RNA polymerase II promoter	HOXA5	homeobox A5	0.0010693644314674722
GO:0006366: transcription from RNA polymerase II promoter	HOXD13	homeobox D13	-0.0005931588345513606
GO:0006366: transcription from RNA polymerase II promoter	IRF7	interferon regulatory factor 7	-0.0013096129999209795
GO:0006366: transcription from RNA polymerase II promoter	ISL1	ISL LIM homeobox 1	7.84458015195169e-5
GO:0006366: transcription from RNA polymerase II promoter	KLF11	Kruppel-like factor 11	0.0006196512224498412
GO:0006366: transcription from RNA polymerase II promoter	KLF15	Kruppel-like factor 15	0.0004664762545163967
GO:0006366: transcription from RNA polymerase II promoter	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006623352953525664
GO:0006366: transcription from RNA polymerase II promoter	LEF1	lymphoid enhancer-binding factor 1	-0.00010032359727423998
GO:0006366: transcription from RNA polymerase II promoter	LHX1	LIM homeobox 1	-0.0007608294814884721
GO:0006366: transcription from RNA polymerase II promoter	LMO4	LIM domain only 4	0.002117183041789784
GO:0006366: transcription from RNA polymerase II promoter	MEF2C	myocyte enhancer factor 2C	0.0009762179405557786
GO:0006366: transcription from RNA polymerase II promoter	MSX1	msh homeobox 1	-0.0027769676042985565
GO:0006366: transcription from RNA polymerase II promoter	NFIB	nuclear factor I/B	0.00292867480402316
GO:0006366: transcription from RNA polymerase II promoter	NFX1	nuclear transcription factor, X-box binding 1	-6.898439822970358e-5
GO:0006366: transcription from RNA polymerase II promoter	PAX2	paired box 2	-0.0016186836670777438
GO:0006366: transcription from RNA polymerase II promoter	PAX3	paired box 3	-0.002952102092386441
GO:0006366: transcription from RNA polymerase II promoter	PAX6	paired box 6	0.0019408539579817135
GO:0006366: transcription from RNA polymerase II promoter	PAX8	paired box 8	0.0009497071214020339
GO:0006366: transcription from RNA polymerase II promoter	PDX1	pancreatic and duodenal homeobox 1	0.0002583528469544677
GO:0006366: transcription from RNA polymerase II promoter	PHOX2B	paired-like homeobox 2b	0.00039080774700344387
GO:0006366: transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.0021816286096449766
GO:0006366: transcription from RNA polymerase II promoter	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018597504149469592
GO:0006366: transcription from RNA polymerase II promoter	POU1F1	POU class 1 homeobox 1	0.0001378738043097243
GO:0006366: transcription from RNA polymerase II promoter	PRDM4	PR domain containing 4	0.0008418544216438411
GO:0006366: transcription from RNA polymerase II promoter	PTTG1	pituitary tumor-transforming 1	-0.00036145872540921007
GO:0006366: transcription from RNA polymerase II promoter	RAD21	RAD21 homolog (S. pombe)	-0.00010210734744061769
GO:0006366: transcription from RNA polymerase II promoter	RREB1	ras responsive element binding protein 1	-0.0019859971741953476
GO:0006366: transcription from RNA polymerase II promoter	SIX1	SIX homeobox 1	-0.0018746941995814422
GO:0006366: transcription from RNA polymerase II promoter	SIX3	SIX homeobox 3	0.0020434175117996414
GO:0006366: transcription from RNA polymerase II promoter	SNRPB	small nuclear ribonucleoprotein polypeptides B and B1	0.0006676086128169167
GO:0006366: transcription from RNA polymerase II promoter	SOX10	SRY (sex determining region Y)-box 10	0.00019295429910308544
GO:0006366: transcription from RNA polymerase II promoter	SOX11	SRY (sex determining region Y)-box 11	-0.00020860374601907073
GO:0006366: transcription from RNA polymerase II promoter	SOX4	SRY (sex determining region Y)-box 4	-3.747035500166552e-5
GO:0006366: transcription from RNA polymerase II promoter	SOX9	SRY (sex determining region Y)-box 9	-0.0005197028005894811
GO:0006366: transcription from RNA polymerase II promoter	TBPL1	TBP-like 1	-0.0007895771694666623
GO:0006366: transcription from RNA polymerase II promoter	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.000480716536991307
GO:0006366: transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.001064701664121606
GO:0006366: transcription from RNA polymerase II promoter	THRA	thyroid hormone receptor, alpha	0.0007648602333120475
GO:0006366: transcription from RNA polymerase II promoter	TP73	tumor protein p73	0.0010304016491717305
GO:0006366: transcription from RNA polymerase II promoter	TRPS1	trichorhinophalangeal syndrome I	-0.0001791505616862379
GO:0006366: transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.0005085229322826395
GO:0006366: transcription from RNA polymerase II promoter	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009593203466696432
GO:0006366: transcription from RNA polymerase II promoter	XBP1	X-box binding protein 1	0.00026695799299309087
GO:0006366: transcription from RNA polymerase II promoter	YBX1	Y box binding protein 1	-0.0009148360015116447
GO:0006366: transcription from RNA polymerase II promoter	ZNF148	zinc finger protein 148	0.0021093563376307174
GO:0021522: spinal cord motor neuron differentiation	ABT1	activator of basal transcription 1	0.002542266267672148
GO:0021522: spinal cord motor neuron differentiation	DICER1	dicer 1, ribonuclease type III	-1.6282337556684733e-5
GO:0021522: spinal cord motor neuron differentiation	ISL1	ISL LIM homeobox 1	7.84279431322235e-5
GO:0021522: spinal cord motor neuron differentiation	LMO4	LIM domain only 4	0.0021133847233919356
GO:0021522: spinal cord motor neuron differentiation	PTCH1	patched 1	-6.54497255037256e-5
GO:0021522: spinal cord motor neuron differentiation	SHH	sonic hedgehog	0.000600634764553926
GO:0021522: spinal cord motor neuron differentiation	SOX4	SRY (sex determining region Y)-box 4	-3.747943937512233e-5
GO:0034462: small-subunit processome assembly	ABT1	activator of basal transcription 1	0.0025808828118788606
KEGG:03320: PPAR signaling pathway	ACADL	acyl-CoA dehydrogenase, long chain	0.0009646794784327427
KEGG:03320: PPAR signaling pathway	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012641780921739986
KEGG:03320: PPAR signaling pathway	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007937988522384971
KEGG:03320: PPAR signaling pathway	RXRA	retinoid X receptor, alpha	0.0011022238142090102
KEGG:00071: Fatty acid degradation	ACADL	acyl-CoA dehydrogenase, long chain	0.0009596892229527936
KEGG:00071: Fatty acid degradation	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012597313822292192
KEGG:00071: Fatty acid degradation	GCDH	glutaryl-CoA dehydrogenase	-3.881428098773405e-6
GO:0001659: temperature homeostasis	ACADL	acyl-CoA dehydrogenase, long chain	0.0009707249903913637
GO:0001659: temperature homeostasis	DRD2	dopamine receptor D2	-0.00023210985418317722
GO:0001659: temperature homeostasis	FOXO1	forkhead box O1	0.0017839815989336971
GO:0001659: temperature homeostasis	GPX1	glutathione peroxidase 1	0.00038926038498236375
GO:0006635: fatty acid beta-oxidation	ACADL	acyl-CoA dehydrogenase, long chain	0.0009899911006884666
GO:0006635: fatty acid beta-oxidation	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012798922242036417
GO:0006635: fatty acid beta-oxidation	CROT	carnitine O-octanoyltransferase	-0.00044311775031812857
GO:0006635: fatty acid beta-oxidation	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.001171959150548373
GO:0006635: fatty acid beta-oxidation	LEP	leptin	0.0032193828718324264
GO:0006635: fatty acid beta-oxidation	MUT	methylmalonyl CoA mutase	0.0027779529764799197
GO:0019254: carnitine metabolic process, CoA-linked	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096732
GO:0033539: fatty acid beta-oxidation using acyl-CoA dehydrogenase	ACADL	acyl-CoA dehydrogenase, long chain	0.000957333808573319
GO:0033539: fatty acid beta-oxidation using acyl-CoA dehydrogenase	GCDH	glutaryl-CoA dehydrogenase	-3.6161329727610898e-6
GO:0033539: fatty acid beta-oxidation using acyl-CoA dehydrogenase	IVD	isovaleryl-CoA dehydrogenase	-0.0009192251735621493
GO:0042413: carnitine catabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096732
GO:0042758: long-chain fatty acid catabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096732
GO:0044242: cellular lipid catabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009700934142145932
GO:0044242: cellular lipid catabolic process	SIRT2	sirtuin 2	-0.00084212566063987
GO:0044255: cellular lipid metabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009737906064588631
GO:0044255: cellular lipid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011311121673556706
GO:0044255: cellular lipid metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001121058767068387
GO:0044255: cellular lipid metabolic process	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020683157912009185
GO:0044255: cellular lipid metabolic process	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.001266437485622105
GO:0044255: cellular lipid metabolic process	CROT	carnitine O-octanoyltransferase	-0.00043391504498231187
GO:0044255: cellular lipid metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005201646931292291
GO:0044255: cellular lipid metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020743620684240288
GO:0044255: cellular lipid metabolic process	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005636324959056464
GO:0044255: cellular lipid metabolic process	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.001055229412639203
GO:0044255: cellular lipid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.001153829470771508
GO:0044255: cellular lipid metabolic process	MED1	mediator complex subunit 1	0.0011190885481381853
GO:0044255: cellular lipid metabolic process	MUT	methylmalonyl CoA mutase	0.002741522685246228
GO:0044255: cellular lipid metabolic process	PEX11A	peroxisomal biogenesis factor 11 alpha	0.000713230848043177
GO:0044255: cellular lipid metabolic process	RXRA	retinoid X receptor, alpha	0.0011076667250260503
GO:0044255: cellular lipid metabolic process	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003428031927468975
GO:0044255: cellular lipid metabolic process	TNFRSF21	tumor necrosis factor receptor superfamily, member 21	0.00034500180558703024
GO:0045717: negative regulation of fatty acid biosynthetic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096732
GO:0046322: negative regulation of fatty acid oxidation	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096732
GO:0051289: protein homotetramerization	ACADL	acyl-CoA dehydrogenase, long chain	0.000979038090400719
GO:0051289: protein homotetramerization	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023240892942921524
GO:0051289: protein homotetramerization	CTH	cystathionine gamma-lyase	0.0017440659159030823
GO:0051289: protein homotetramerization	EVL	Enah/Vasp-like	0.0019369334211724013
GO:0051289: protein homotetramerization	GOLGA2	golgin A2	0.0001677115618592145
GO:0051289: protein homotetramerization	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.0011848873314536895
GO:0051289: protein homotetramerization	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.0003455513770533281
GO:0051289: protein homotetramerization	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007752722053270476
GO:0051289: protein homotetramerization	RXRA	retinoid X receptor, alpha	0.0011134638179271614
GO:0051289: protein homotetramerization	SHMT2	serine hydroxymethyltransferase 2 (mitochondrial)	-0.001098172311602726
GO:0055088: lipid homeostasis	ACADL	acyl-CoA dehydrogenase, long chain	0.0009540101374639423
GO:0055088: lipid homeostasis	GCDH	glutaryl-CoA dehydrogenase	-3.4228792044652644e-6
GO:0055088: lipid homeostasis	IVD	isovaleryl-CoA dehydrogenase	-0.0009170692873098368
GO:0055088: lipid homeostasis	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.00078771538672708
GO:0055114: oxidation-reduction process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009832253573415454
GO:0055114: oxidation-reduction process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014911606652435309
GO:0055114: oxidation-reduction process	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003023800666767996
GO:0055114: oxidation-reduction process	AOC1	amine oxidase, copper containing 1	-0.0014253945956716415
GO:0055114: oxidation-reduction process	APEX1	APEX nuclease (multifunctional DNA repair enzyme) 1	0.00020058830408911811
GO:0055114: oxidation-reduction process	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020740454285367665
GO:0055114: oxidation-reduction process	CBS	cystathionine-beta-synthase	0.00151924482540022
GO:0055114: oxidation-reduction process	CP	ceruloplasmin (ferroxidase)	0.0013095237798756377
GO:0055114: oxidation-reduction process	CPOX	coproporphyrinogen oxidase	0.0012756851172449329
GO:0055114: oxidation-reduction process	CYB5R4	cytochrome b5 reductase 4	-2.843469780966517e-5
GO:0055114: oxidation-reduction process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039822360454679474
GO:0055114: oxidation-reduction process	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.0004721558687292176
GO:0055114: oxidation-reduction process	CYP4B1	cytochrome P450, family 4, subfamily B, polypeptide 1	-0.0013589948123098425
GO:0055114: oxidation-reduction process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016352255250777297
GO:0055114: oxidation-reduction process	DCT	dopachrome tautomerase	-0.0023567373536330944
GO:0055114: oxidation-reduction process	DHCR24	24-dehydrocholesterol reductase	-0.0017102597662740217
GO:0055114: oxidation-reduction process	DHFR	dihydrofolate reductase	-0.0003078650587550914
GO:0055114: oxidation-reduction process	GLRX2	glutaredoxin 2	0.0011177438867716774
GO:0055114: oxidation-reduction process	GLUD2	glutamate dehydrogenase 2	-0.0006598971773004485
GO:0055114: oxidation-reduction process	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005683640146230376
GO:0055114: oxidation-reduction process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.001164534189004905
GO:0055114: oxidation-reduction process	HSD17B6	hydroxysteroid (17-beta) dehydrogenase 6	-0.0008687761628787207
GO:0055114: oxidation-reduction process	HSDL2	hydroxysteroid dehydrogenase like 2	0.0013704336903226132
GO:0055114: oxidation-reduction process	IDO1	indoleamine 2,3-dioxygenase 1	0.0012279669183532964
GO:0055114: oxidation-reduction process	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018751854036111262
GO:0055114: oxidation-reduction process	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.0003483834535493435
GO:0055114: oxidation-reduction process	JMJD6	jumonji domain containing 6	0.003596320288057918
GO:0055114: oxidation-reduction process	LOX	lysyl oxidase	-0.0005774280777408365
GO:0055114: oxidation-reduction process	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006649171409238842
GO:0055114: oxidation-reduction process	PAX2	paired box 2	-0.001616831255375579
GO:0055114: oxidation-reduction process	PHGDH	phosphoglycerate dehydrogenase	0.00029349516813282787
GO:0055114: oxidation-reduction process	PNPO	pyridoxamine 5'-phosphate oxidase	-0.001093185610558937
GO:0055114: oxidation-reduction process	POR	P450 (cytochrome) oxidoreductase	0.0004580076238634591
GO:0055114: oxidation-reduction process	PRDX4	peroxiredoxin 4	0.0015269658420196234
GO:0055114: oxidation-reduction process	QDPR	quinoid dihydropteridine reductase	-0.002860363096816946
GO:0055114: oxidation-reduction process	RRM1	ribonucleotide reductase M1	0.0019135618967990823
GO:0055114: oxidation-reduction process	RRM2	ribonucleotide reductase M2	-0.0005666355485736758
GO:0055114: oxidation-reduction process	SORD	sorbitol dehydrogenase	-0.002022930934530211
GO:0055114: oxidation-reduction process	SPR	sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase)	-0.0012347649997144633
GO:0055114: oxidation-reduction process	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006443451086806783
GO:0055114: oxidation-reduction process	STEAP3	STEAP family member 3, metalloreductase	0.0026130796359889745
GO:0055114: oxidation-reduction process	STEAP4	STEAP family member 4	-0.0027720278485580847
GO:0055114: oxidation-reduction process	TH	tyrosine hydroxylase	-0.0003424965178086478
GO:0055114: oxidation-reduction process	TXN2	thioredoxin 2	0.0013852052524674075
GO:0055114: oxidation-reduction process	UGDH	UDP-glucose 6-dehydrogenase	0.0005023683750838104
GO:0090181: regulation of cholesterol metabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096732
KEGG:00120: Primary bile acid biosynthesis	ACOT8	acyl-CoA thioesterase 8	0.0011250415158007088
KEGG:00120: Primary bile acid biosynthesis	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016078807902458243
KEGG:00120: Primary bile acid biosynthesis	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011418915082748648
KEGG:04146: Peroxisome	ACOT8	acyl-CoA thioesterase 8	0.0011267202985504373
KEGG:04146: Peroxisome	CROT	carnitine O-octanoyltransferase	-0.00043112880764478625
KEGG:04146: Peroxisome	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.001049136670314674
KEGG:04146: Peroxisome	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.001147517066830305
KEGG:04146: Peroxisome	PEX11A	peroxisomal biogenesis factor 11 alpha	0.000709396474355137
GO:0006637: acyl-CoA metabolic process	ACOT8	acyl-CoA thioesterase 8	0.001129636542134424
GO:0006637: acyl-CoA metabolic process	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010515053781074918
GO:0006699: bile acid biosynthetic process	ACOT8	acyl-CoA thioesterase 8	0.0011264948182661987
GO:0006699: bile acid biosynthetic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016106635738449647
GO:0006699: bile acid biosynthetic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011450626516497017
GO:0006699: bile acid biosynthetic process	STAR	steroidogenic acute regulatory protein	0.0008797005036514007
GO:0008206: bile acid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.001140037826062164
GO:0008206: bile acid metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014955608771145689
GO:0008206: bile acid metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016378248230008348
GO:0008206: bile acid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011683509725662004
GO:0008206: bile acid metabolic process	LEP	leptin	0.003209837568461649
GO:0008206: bile acid metabolic process	RXRA	retinoid X receptor, alpha	0.0011208793103175206
GO:0016032: viral process	ACOT8	acyl-CoA thioesterase 8	0.001133208798509395
GO:0016032: viral process	BAX	BCL2-associated X protein	-0.00042398891945445434
GO:0016032: viral process	BICD1	bicaudal D homolog 1 (Drosophila)	0.0024310978956263852
GO:0016032: viral process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.00289938193304857
GO:0016032: viral process	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.763728910336948e-5
GO:0016032: viral process	BRD4	bromodomain containing 4	0.0005528164370892123
GO:0016032: viral process	BUB1	BUB1 mitotic checkpoint serine/threonine kinase	0.0013179357273544671
GO:0016032: viral process	CALCOCO2	calcium binding and coiled-coil domain 2	0.0024467567733152213
GO:0016032: viral process	CCDC86	coiled-coil domain containing 86	0.0007146750595481009
GO:0016032: viral process	CREB1	cAMP responsive element binding protein 1	0.0006538948245720483
GO:0016032: viral process	CUL7	cullin 7	-0.00011804496107927625
GO:0016032: viral process	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008536315779739254
GO:0016032: viral process	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007903798646155342
GO:0016032: viral process	DAXX	death-domain associated protein	0.0008866141034356596
GO:0016032: viral process	E4F1	E4F transcription factor 1	0.0014775115079607123
GO:0016032: viral process	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.0007391653691435422
GO:0016032: viral process	GFI1	growth factor independent 1 transcription repressor	0.0016586385649570573
GO:0016032: viral process	GRB2	growth factor receptor-bound protein 2	0.00042792859477506774
GO:0016032: viral process	HMGA1	high mobility group AT-hook 1	-0.00031825120185198047
GO:0016032: viral process	IL6ST	interleukin 6 signal transducer	0.0018687901797503595
GO:0016032: viral process	IPO5	importin 5	0.00167576941341883
GO:0016032: viral process	KPNB1	karyopherin (importin) beta 1	0.0007693123028523798
GO:0016032: viral process	KRT18	keratin 18	-0.0010121472598493162
GO:0016032: viral process	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001414738636521309
GO:0016032: viral process	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.000340713239752686
GO:0016032: viral process	MFGE8	milk fat globule-EGF factor 8 protein	0.0017956025031863698
GO:0016032: viral process	MSH6	mutS homolog 6	0.0010715194755071406
GO:0016032: viral process	NFX1	nuclear transcription factor, X-box binding 1	-7.167051402400389e-5
GO:0016032: viral process	NUP153	nucleoporin 153kDa	0.0008197281779380463
GO:0016032: viral process	PML	promyelocytic leukemia	-0.0006785609772968491
GO:0016032: viral process	POLA1	polymerase (DNA directed), alpha 1, catalytic subunit	0.001263754007428563
GO:0016032: viral process	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018466217380317504
GO:0016032: viral process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.0003300625245152298
GO:0016032: viral process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010919739958158607
GO:0016032: viral process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.0484852038221524e-5
GO:0016032: viral process	RB1	retinoblastoma 1	-0.0014873904032028222
GO:0016032: viral process	RHOA	ras homolog family member A	0.0006670271923979146
GO:0016032: viral process	SEH1L	SEH1-like (S. cerevisiae)	-0.0007307140972634646
GO:0016032: viral process	SF3B2	splicing factor 3b, subunit 2, 145kDa	0.0006803728928588612
GO:0016032: viral process	SIRT1	sirtuin 1	-2.5573716027935093e-6
GO:0016032: viral process	TFRC	transferrin receptor	0.0010804880289843417
GO:0016032: viral process	TP53	tumor protein p53	0.0011687103860240399
GO:0016032: viral process	TP73	tumor protein p73	0.0010235047059473914
GO:0016032: viral process	TPR	translocated promoter region, nuclear basket protein	-0.0006945451334456987
GO:0016032: viral process	UNG	uracil-DNA glycosylase	0.0005621207451607174
GO:0016032: viral process	VPS4A	vacuolar protein sorting 4 homolog A (S. cerevisiae)	-0.0006818751482759127
GO:0016559: peroxisome fission	ACOT8	acyl-CoA thioesterase 8	0.0011242906316926765
GO:0016559: peroxisome fission	PEX11A	peroxisomal biogenesis factor 11 alpha	0.0007019294818520595
GO:0033540: fatty acid beta-oxidation using acyl-CoA oxidase	ACOT8	acyl-CoA thioesterase 8	0.0011263428857322373
GO:0033540: fatty acid beta-oxidation using acyl-CoA oxidase	CROT	carnitine O-octanoyltransferase	-0.00043112441729309907
GO:0033540: fatty acid beta-oxidation using acyl-CoA oxidase	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011472315828132769
GO:0033559: unsaturated fatty acid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.001124133896008074
GO:0033559: unsaturated fatty acid metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005126286214051831
GO:0033559: unsaturated fatty acid metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020808309900323646
GO:0033559: unsaturated fatty acid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011418480529381597
GO:0036109: alpha-linolenic acid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.001124133896008074
GO:0036109: alpha-linolenic acid metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005126286214051831
GO:0036109: alpha-linolenic acid metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020808309900323646
GO:0036109: alpha-linolenic acid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011418480529381597
GO:0043649: dicarboxylic acid catabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011250785466930262
GO:0007275: multicellular organismal development	ACRV1	acrosomal vesicle protein 1	-0.0006026324800037686
GO:0007275: multicellular organismal development	AES	amino-terminal enhancer of split	0.001360825088687966
GO:0007275: multicellular organismal development	ALX1	ALX homeobox 1	0.0023048546834939384
GO:0007275: multicellular organismal development	CENPE	centromere protein E, 312kDa	0.0021641843690307517
GO:0007275: multicellular organismal development	DSPP	dentin sialophosphoprotein	0.0008332002663454988
GO:0007275: multicellular organismal development	EGFL6	EGF-like-domain, multiple 6	0.0001379128003375984
GO:0007275: multicellular organismal development	EYA3	EYA transcriptional coactivator and phosphatase 3	0.0008414052963303419
GO:0007275: multicellular organismal development	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.002446769111629608
GO:0007275: multicellular organismal development	GNRHR	gonadotropin-releasing hormone receptor	0.0007448181806739654
GO:0007275: multicellular organismal development	HELLS	helicase, lymphoid-specific	0.0034841415762245933
GO:0007275: multicellular organismal development	HMGA2	high mobility group AT-hook 2	0.0015176454559921598
GO:0007275: multicellular organismal development	HMGB3	high mobility group box 3	0.0004659141762664662
GO:0007275: multicellular organismal development	HOXA10	homeobox A10	-0.0029995805799603974
GO:0007275: multicellular organismal development	HOXB1	homeobox B1	0.003706400250668089
GO:0007275: multicellular organismal development	HOXB2	homeobox B2	0.0027884294923930467
GO:0007275: multicellular organismal development	HOXD13	homeobox D13	-0.0005948384976534225
GO:0007275: multicellular organismal development	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	5.999482185643308e-5
GO:0007275: multicellular organismal development	PAEP	progestagen-associated endometrial protein	0.0010706068741512254
GO:0007275: multicellular organismal development	RREB1	ras responsive element binding protein 1	-0.001992265423899651
GO:0007275: multicellular organismal development	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031544458464539704
GO:0007275: multicellular organismal development	SUCO	SUN domain containing ossification factor	0.0022617861242923373
GO:0007275: multicellular organismal development	TBX21	T-box 21	0.00040034523542279007
GO:0007275: multicellular organismal development	TP53	tumor protein p53	0.001184147516533695
GO:0001525: angiogenesis	ACVRL1	activin A receptor type II-like 1	0.0019380999107114754
GO:0001525: angiogenesis	APOD	apolipoprotein D	0.002619877964834697
GO:0001525: angiogenesis	ARHGAP24	Rho GTPase activating protein 24	-0.000931697167173971
GO:0001525: angiogenesis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005342965015624451
GO:0001525: angiogenesis	CCL2	chemokine (C-C motif) ligand 2	0.0008139262642777206
GO:0001525: angiogenesis	CCL8	chemokine (C-C motif) ligand 8	-0.0005893403229684576
GO:0001525: angiogenesis	CIB1	calcium and integrin binding 1 (calmyrin)	5.5605406253891496e-5
GO:0001525: angiogenesis	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003967426204059145
GO:0001525: angiogenesis	DICER1	dicer 1, ribonuclease type III	-1.6371415982969194e-5
GO:0001525: angiogenesis	ECM1	extracellular matrix protein 1	-0.0015511685488916944
GO:0001525: angiogenesis	EFNA1	ephrin-A1	-0.0005195861981931485
GO:0001525: angiogenesis	EPHB1	EPH receptor B1	0.00195840660180056
GO:0001525: angiogenesis	EPHB2	EPH receptor B2	-0.0007209679109037146
GO:0001525: angiogenesis	EPHB3	EPH receptor B3	0.0008808647439006739
GO:0001525: angiogenesis	FAP	fibroblast activation protein, alpha	-0.00048470306895753034
GO:0001525: angiogenesis	FGFR2	fibroblast growth factor receptor 2	0.0007605775669832327
GO:0001525: angiogenesis	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006448825921510363
GO:0001525: angiogenesis	HMOX1	heme oxygenase (decycling) 1	-0.00021674681670637907
GO:0001525: angiogenesis	HOXA3	homeobox A3	0.0009858971129960933
GO:0001525: angiogenesis	HOXB13	homeobox B13	0.0018204492376021157
GO:0001525: angiogenesis	JAG1	jagged 1	0.0017523636559871683
GO:0001525: angiogenesis	MED1	mediator complex subunit 1	0.0011248810657117857
GO:0001525: angiogenesis	MFGE8	milk fat globule-EGF factor 8 protein	0.0017984068326029315
GO:0001525: angiogenesis	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011267150998895675
GO:0001525: angiogenesis	NRP1	neuropilin 1	-0.0006407896487169691
GO:0001525: angiogenesis	PRKCA	protein kinase C, alpha	-5.91854794812538e-6
GO:0001525: angiogenesis	PRKX	protein kinase, X-linked	0.00039253274308216575
GO:0001525: angiogenesis	PTEN	phosphatase and tensin homolog	1.799585713303159e-5
GO:0001525: angiogenesis	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009790331924208252
GO:0001525: angiogenesis	S100A7	S100 calcium binding protein A7	0.001584666204889494
GO:0001525: angiogenesis	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011263528208728819
GO:0001525: angiogenesis	SIRT1	sirtuin 1	-2.1779228749137284e-6
GO:0001525: angiogenesis	SOX18	SRY (sex determining region Y)-box 18	0.0012851290560282945
GO:0001525: angiogenesis	TGFB2	transforming growth factor, beta 2	-0.0010555947352951396
GO:0001525: angiogenesis	TGFBR1	transforming growth factor, beta receptor 1	0.0003384609672932745
GO:0001525: angiogenesis	VASH1	vasohibin 1	0.0005968959576848897
GO:0001525: angiogenesis	VEGFA	vascular endothelial growth factor A	0.0005921704392206564
GO:0001525: angiogenesis	VEGFC	vascular endothelial growth factor C	-0.003353691530253523
GO:0001525: angiogenesis	WNT7A	wingless-type MMTV integration site family, member 7A	1.965404811143522e-5
GO:0001525: angiogenesis	XBP1	X-box binding protein 1	0.0002670899867725779
GO:0001701: in utero embryonic development	ACVRL1	activin A receptor type II-like 1	0.001942799063721505
GO:0001701: in utero embryonic development	ADAR	adenosine deaminase, RNA-specific	-0.00013659547190262355
GO:0001701: in utero embryonic development	ANGPT1	angiopoietin 1	0.0009002207230357265
GO:0001701: in utero embryonic development	AXIN1	axin 1	-0.0007326864437604171
GO:0001701: in utero embryonic development	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.000774343633711588
GO:0001701: in utero embryonic development	CCNB1	cyclin B1	-0.0008817261174187462
GO:0001701: in utero embryonic development	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011684514818058751
GO:0001701: in utero embryonic development	EPN1	epsin 1	-0.0005464726383597675
GO:0001701: in utero embryonic development	FGFR2	fibroblast growth factor receptor 2	0.0007627787719822482
GO:0001701: in utero embryonic development	FOXA2	forkhead box A2	-1.6718968042079953e-5
GO:0001701: in utero embryonic development	FOXC1	forkhead box C1	-2.2151633814181618e-5
GO:0001701: in utero embryonic development	GATA3	GATA binding protein 3	-3.911462876314579e-5
GO:0001701: in utero embryonic development	GATA4	GATA binding protein 4	-0.0010941244136378353
GO:0001701: in utero embryonic development	GATA6	GATA binding protein 6	-2.812049431486014e-5
GO:0001701: in utero embryonic development	GDF3	growth differentiation factor 3	-0.0018829331093555756
GO:0001701: in utero embryonic development	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016144995338351266
GO:0001701: in utero embryonic development	GLI2	GLI family zinc finger 2	0.0018523358131217692
GO:0001701: in utero embryonic development	GLI3	GLI family zinc finger 3	-0.002150375404943682
GO:0001701: in utero embryonic development	GRHL2	grainyhead-like 2 (Drosophila)	0.00100621463663259
GO:0001701: in utero embryonic development	HINFP	histone H4 transcription factor	0.0009920066048793137
GO:0001701: in utero embryonic development	IHH	indian hedgehog	-0.002039318298078182
GO:0001701: in utero embryonic development	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024249919024742867
GO:0001701: in utero embryonic development	JAG2	jagged 2	-5.707070766657264e-6
GO:0001701: in utero embryonic development	KLF2	Kruppel-like factor 2	-0.0012315113992547768
GO:0001701: in utero embryonic development	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00019928881893223967
GO:0001701: in utero embryonic development	MSH2	mutS homolog 2	0.001391454110996456
GO:0001701: in utero embryonic development	MSX1	msh homeobox 1	-0.0027672491734704397
GO:0001701: in utero embryonic development	MYH10	myosin, heavy chain 10, non-muscle	-0.0003286039508551053
GO:0001701: in utero embryonic development	NOTCH1	notch 1	0.0005185223076809097
GO:0001701: in utero embryonic development	PCNT	pericentrin	0.0017862910354671162
GO:0001701: in utero embryonic development	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036093766342838696
GO:0001701: in utero embryonic development	PITX2	paired-like homeodomain 2	0.002174714057885521
GO:0001701: in utero embryonic development	POLE	polymerase (DNA directed), epsilon, catalytic subunit	0.0029466219277846295
GO:0001701: in utero embryonic development	PTCH1	patched 1	-6.590551620196453e-5
GO:0001701: in utero embryonic development	RNASEH2B	ribonuclease H2, subunit B	-4.354330463459862e-5
GO:0001701: in utero embryonic development	RPA1	replication protein A1, 70kDa	0.0004389012384804939
GO:0001701: in utero embryonic development	RXRA	retinoid X receptor, alpha	0.0011143915942975632
GO:0001701: in utero embryonic development	SLIT2	slit homolog 2 (Drosophila)	-0.0016191656339764272
GO:0001701: in utero embryonic development	SMO	smoothened, frizzled class receptor	0.002137949263826816
GO:0001701: in utero embryonic development	SOX10	SRY (sex determining region Y)-box 10	0.00019024190012834562
GO:0001701: in utero embryonic development	SOX18	SRY (sex determining region Y)-box 18	0.0012877585846430399
GO:0001701: in utero embryonic development	TBX3	T-box 3	0.001225597536285135
GO:0001701: in utero embryonic development	TGFB3	transforming growth factor, beta 3	-0.0018226037846556839
GO:0001701: in utero embryonic development	TGFBR1	transforming growth factor, beta receptor 1	0.00033966513742213363
GO:0001701: in utero embryonic development	TP53	tumor protein p53	0.0011748888646252158
GO:0001701: in utero embryonic development	TWIST1	twist family bHLH transcription factor 1	-0.0013406405390829813
GO:0001701: in utero embryonic development	VEGFA	vascular endothelial growth factor A	0.0005945729999305591
GO:0001701: in utero embryonic development	WDR19	WD repeat domain 19	-0.0007217305444625023
GO:0001701: in utero embryonic development	YBX1	Y box binding protein 1	-0.0009133412869199115
GO:0001701: in utero embryonic development	ZBTB18	zinc finger and BTB domain containing 18	0.0012713024023252365
GO:0001701: in utero embryonic development	ZNF335	zinc finger protein 335	-0.00036476098645183205
GO:0001936: regulation of endothelial cell proliferation	ACVRL1	activin A receptor type II-like 1	0.0019639660590229095
GO:0001936: regulation of endothelial cell proliferation	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003050478342022815
GO:0001937: negative regulation of endothelial cell proliferation	ACVRL1	activin A receptor type II-like 1	0.001925087493871666
GO:0001937: negative regulation of endothelial cell proliferation	AGER	advanced glycosylation end product-specific receptor	-0.0001732035223705774
GO:0001937: negative regulation of endothelial cell proliferation	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005315075031537389
GO:0001937: negative regulation of endothelial cell proliferation	ENG	endoglin	0.0008160904693519046
GO:0001937: negative regulation of endothelial cell proliferation	GJA1	gap junction protein, alpha 1, 43kDa	-0.00015587520759072278
GO:0001937: negative regulation of endothelial cell proliferation	SULF1	sulfatase 1	-0.0007928164889860241
GO:0001937: negative regulation of endothelial cell proliferation	TGFBR1	transforming growth factor, beta receptor 1	0.0003354764853332717
GO:0001937: negative regulation of endothelial cell proliferation	THBS1	thrombospondin 1	-0.0010252126002097937
GO:0001937: negative regulation of endothelial cell proliferation	VASH1	vasohibin 1	0.0005934720064626204
GO:0001938: positive regulation of endothelial cell proliferation	ACVRL1	activin A receptor type II-like 1	0.0019231871063819406
GO:0001938: positive regulation of endothelial cell proliferation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007213552958856501
GO:0001938: positive regulation of endothelial cell proliferation	BMP4	bone morphogenetic protein 4	-0.00031903632616140764
GO:0001938: positive regulation of endothelial cell proliferation	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005312057885718255
GO:0001938: positive regulation of endothelial cell proliferation	CCL2	chemokine (C-C motif) ligand 2	0.000807347083386153
GO:0001938: positive regulation of endothelial cell proliferation	CXCL12	chemokine (C-X-C motif) ligand 12	-0.001194191398400773
GO:0001938: positive regulation of endothelial cell proliferation	ECM1	extracellular matrix protein 1	-0.001536347278065483
GO:0001938: positive regulation of endothelial cell proliferation	FGFR3	fibroblast growth factor receptor 3	0.00021856251848388484
GO:0001938: positive regulation of endothelial cell proliferation	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006403155718943287
GO:0001938: positive regulation of endothelial cell proliferation	HMGB2	high mobility group box 2	0.0002979610535235678
GO:0001938: positive regulation of endothelial cell proliferation	NRP1	neuropilin 1	-0.0006346855167324194
GO:0001938: positive regulation of endothelial cell proliferation	PRKCA	protein kinase C, alpha	-5.9308977617835276e-6
GO:0001938: positive regulation of endothelial cell proliferation	PROX1	prospero homeobox 1	0.0011075362866752767
GO:0001938: positive regulation of endothelial cell proliferation	TGFBR1	transforming growth factor, beta receptor 1	0.0003349533583460525
GO:0001938: positive regulation of endothelial cell proliferation	THBS4	thrombospondin 4	-0.00044152113232423285
GO:0001938: positive regulation of endothelial cell proliferation	VEGFA	vascular endothelial growth factor A	0.0005856396246766731
GO:0001938: positive regulation of endothelial cell proliferation	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006593814258707262
GO:0001946: lymphangiogenesis	ACVRL1	activin A receptor type II-like 1	0.0019461290919814197
GO:0001946: lymphangiogenesis	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017512462823182425
GO:0001946: lymphangiogenesis	PROX1	prospero homeobox 1	0.0011227685110076972
GO:0001946: lymphangiogenesis	SOX18	SRY (sex determining region Y)-box 18	0.001290912375720374
GO:0001955: blood vessel maturation	ACVRL1	activin A receptor type II-like 1	0.0019527148817602253
GO:0001955: blood vessel maturation	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011387836895902068
GO:0001974: blood vessel remodeling	ACVRL1	activin A receptor type II-like 1	0.0019370946521689786
GO:0001974: blood vessel remodeling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011264545369124859
GO:0001974: blood vessel remodeling	BAK1	BCL2-antagonist/killer 1	-0.0018697820976758981
GO:0001974: blood vessel remodeling	BAX	BCL2-associated X protein	-0.00042436271413715513
GO:0001974: blood vessel remodeling	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009795387522410447
GO:0001974: blood vessel remodeling	FOXC1	forkhead box C1	-2.3998618519730794e-5
GO:0001974: blood vessel remodeling	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.001742373618259222
GO:0001974: blood vessel remodeling	HOXA3	homeobox A3	0.000985499228754663
GO:0001974: blood vessel remodeling	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001297890536110022
GO:0001974: blood vessel remodeling	JAG1	jagged 1	0.0017521781321891052
GO:0001974: blood vessel remodeling	MEF2C	myocyte enhancer factor 2C	0.0009691194573440716
GO:0001974: blood vessel remodeling	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009788711086604436
GO:0001974: blood vessel remodeling	SEMA3C	sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C	-0.00021923608706525408
GO:0001974: blood vessel remodeling	TGFB2	transforming growth factor, beta 2	-0.0010548733572331348
GO:0002043: blood vessel endothelial cell proliferation involved in sprouting angiogenesis	ACVRL1	activin A receptor type II-like 1	0.0019410890620574757
GO:0002043: blood vessel endothelial cell proliferation involved in sprouting angiogenesis	BMP4	bone morphogenetic protein 4	-0.0003218816800786748
GO:0006275: regulation of DNA replication	ACVRL1	activin A receptor type II-like 1	0.001955725836585586
GO:0006468: protein phosphorylation	ACVRL1	activin A receptor type II-like 1	0.0019485157138485383
GO:0006468: protein phosphorylation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007327183796848716
GO:0006468: protein phosphorylation	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006272213753441931
GO:0006468: protein phosphorylation	AURKA	aurora kinase A	0.0010107899453714244
GO:0006468: protein phosphorylation	AURKB	aurora kinase B	0.0003518632567351573
GO:0006468: protein phosphorylation	AURKC	aurora kinase C	0.0008881894274280073
GO:0006468: protein phosphorylation	BIRC5	baculoviral IAP repeat containing 5	-0.0002606857821486693
GO:0006468: protein phosphorylation	BRD4	bromodomain containing 4	0.0005545687792096684
GO:0006468: protein phosphorylation	BUB1	BUB1 mitotic checkpoint serine/threonine kinase	0.0013285965783585124
GO:0006468: protein phosphorylation	BUB1B	BUB1 mitotic checkpoint serine/threonine kinase B	-0.0012838557908560724
GO:0006468: protein phosphorylation	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.0025945301030741784
GO:0006468: protein phosphorylation	CCL2	chemokine (C-C motif) ligand 2	0.0008186401066323777
GO:0006468: protein phosphorylation	CCL8	chemokine (C-C motif) ligand 8	-0.0005914416963834126
GO:0006468: protein phosphorylation	CCND1	cyclin D1	-0.0026407986233100127
GO:0006468: protein phosphorylation	CCNE1	cyclin E1	0.0003720105929423109
GO:0006468: protein phosphorylation	CDK8	cyclin-dependent kinase 8	0.0026184529641606505
GO:0006468: protein phosphorylation	CDKL5	cyclin-dependent kinase-like 5	0.00229020285140993
GO:0006468: protein phosphorylation	CFL1	cofilin 1 (non-muscle)	-0.001178267173903286
GO:0006468: protein phosphorylation	CREB1	cAMP responsive element binding protein 1	0.00066060535148953
GO:0006468: protein phosphorylation	CSNK2B	casein kinase 2, beta polypeptide	0.0015328764946920697
GO:0006468: protein phosphorylation	GSK3B	glycogen synthase kinase 3 beta	0.0015531071795888407
GO:0006468: protein phosphorylation	GUCY2C	guanylate cyclase 2C (heat stable enterotoxin receptor)	-0.001637252659157864
GO:0006468: protein phosphorylation	HIPK2	homeodomain interacting protein kinase 2	0.0007724939082316297
GO:0006468: protein phosphorylation	IGFBP3	insulin-like growth factor binding protein 3	0.0008382644580709862
GO:0006468: protein phosphorylation	IRAK1	interleukin-1 receptor-associated kinase 1	-0.001613054161846886
GO:0006468: protein phosphorylation	JAK2	Janus kinase 2	-3.1372600319166905e-5
GO:0006468: protein phosphorylation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014239427431591294
GO:0006468: protein phosphorylation	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.00034350186035423573
GO:0006468: protein phosphorylation	MMD	monocyte to macrophage differentiation-associated	0.002153739079745471
GO:0006468: protein phosphorylation	MOK	MOK protein kinase	0.0017939135079965568
GO:0006468: protein phosphorylation	NEK2	NIMA-related kinase 2	4.958374578080439e-5
GO:0006468: protein phosphorylation	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0021935872502431347
GO:0006468: protein phosphorylation	PBK	PDZ binding kinase	0.000843362346846555
GO:0006468: protein phosphorylation	PDK1	pyruvate dehydrogenase kinase, isozyme 1	0.001429343223770444
GO:0006468: protein phosphorylation	PDK2	pyruvate dehydrogenase kinase, isozyme 2	0.001483471570830367
GO:0006468: protein phosphorylation	PICK1	protein interacting with PRKCA 1	-0.0009574612238377188
GO:0006468: protein phosphorylation	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007828086515596967
GO:0006468: protein phosphorylation	PKN1	protein kinase N1	-0.0019077501569560065
GO:0006468: protein phosphorylation	PLK1	polo-like kinase 1	0.0010206881598149634
GO:0006468: protein phosphorylation	PLK3	polo-like kinase 3	0.0025700428188143373
GO:0006468: protein phosphorylation	PLK4	polo-like kinase 4	0.002993732145694106
GO:0006468: protein phosphorylation	PRKCA	protein kinase C, alpha	-5.876725573190935e-6
GO:0006468: protein phosphorylation	PRKCD	protein kinase C, delta	-0.001131596028028529
GO:0006468: protein phosphorylation	PRKCZ	protein kinase C, zeta	-0.001604605622205434
GO:0006468: protein phosphorylation	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0015024938699221523
GO:0006468: protein phosphorylation	RET	ret proto-oncogene	-0.0004922159180050816
GO:0006468: protein phosphorylation	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025200300285938156
GO:0006468: protein phosphorylation	STK24	serine/threonine kinase 24	0.002701339451967086
GO:0006468: protein phosphorylation	TEX14	testis expressed 14	0.0017302251876234879
GO:0006468: protein phosphorylation	TGFB1	transforming growth factor, beta 1	-7.328021797323927e-5
GO:0006468: protein phosphorylation	TGFB2	transforming growth factor, beta 2	-0.0010623869165459127
GO:0006468: protein phosphorylation	TGFBR1	transforming growth factor, beta receptor 1	0.0003409874916133343
GO:0007162: negative regulation of cell adhesion	ACVRL1	activin A receptor type II-like 1	0.0019268955101691453
GO:0007162: negative regulation of cell adhesion	AGER	advanced glycosylation end product-specific receptor	-0.00017354573912856184
GO:0007162: negative regulation of cell adhesion	ANGPT1	angiopoietin 1	0.0008935206257666975
GO:0007162: negative regulation of cell adhesion	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003440275050910194
GO:0007165: signal transduction	ACVRL1	activin A receptor type II-like 1	0.0019434882906068777
GO:0007165: signal transduction	ADM	adrenomedullin	0.002237431057860731
GO:0007165: signal transduction	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007304073870056507
GO:0007165: signal transduction	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006257732791294791
GO:0007165: signal transduction	AMHR2	anti-Mullerian hormone receptor, type II	-0.0002246880307821995
GO:0007165: signal transduction	ANK3	ankyrin 3, node of Ranvier (ankyrin G)	0.0007000095618207142
GO:0007165: signal transduction	AR	androgen receptor	0.0026377324035076117
GO:0007165: signal transduction	AVP	arginine vasopressin	-0.0009371013629622082
GO:0007165: signal transduction	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.0009769692989772165
GO:0007165: signal transduction	C3	complement component 3	0.002024181314913599
GO:0007165: signal transduction	CASP8AP2	caspase 8 associated protein 2	0.001271618818162307
GO:0007165: signal transduction	CCL2	chemokine (C-C motif) ligand 2	0.000816478158854772
GO:0007165: signal transduction	CCL7	chemokine (C-C motif) ligand 7	-0.0024021925909729408
GO:0007165: signal transduction	CCL8	chemokine (C-C motif) ligand 8	-0.0005902866570882138
GO:0007165: signal transduction	CHRNB1	cholinergic receptor, nicotinic, beta 1 (muscle)	-6.974939505178593e-6
GO:0007165: signal transduction	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007782428189131888
GO:0007165: signal transduction	CLOCK	clock circadian regulator	0.00020015421509193563
GO:0007165: signal transduction	CREB1	cAMP responsive element binding protein 1	0.0006580631426769611
GO:0007165: signal transduction	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.339144135618897e-5
GO:0007165: signal transduction	CSNK2B	casein kinase 2, beta polypeptide	0.0015282900222745022
GO:0007165: signal transduction	CXCL10	chemokine (C-X-C motif) ligand 10	6.252176489902915e-5
GO:0007165: signal transduction	CXCL12	chemokine (C-X-C motif) ligand 12	-0.001208108420582851
GO:0007165: signal transduction	DEK	DEK proto-oncogene	0.0024870755398202055
GO:0007165: signal transduction	DOCK1	dedicator of cytokinesis 1	-0.0006840752277506564
GO:0007165: signal transduction	ECM1	extracellular matrix protein 1	-0.0015567835148277808
GO:0007165: signal transduction	EDA	ectodysplasin A	-0.0008142998396472181
GO:0007165: signal transduction	EGFR	epidermal growth factor receptor	0.0006855542326527752
GO:0007165: signal transduction	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018282737676140524
GO:0007165: signal transduction	ESR1	estrogen receptor 1	-0.0009479087845693355
GO:0007165: signal transduction	FAS	Fas cell surface death receptor	-3.324798933360834e-5
GO:0007165: signal transduction	FGF3	fibroblast growth factor 3	0.0015606321391585841
GO:0007165: signal transduction	FGF7	fibroblast growth factor 7	0.000633527948945393
GO:0007165: signal transduction	GATA3	GATA binding protein 3	-3.902895825587388e-5
GO:0007165: signal transduction	GDNF	glial cell derived neurotrophic factor	0.0004446913272187222
GO:0007165: signal transduction	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016145881297111419
GO:0007165: signal transduction	GOLT1B	golgi transport 1B	-0.001820431394010147
GO:0007165: signal transduction	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008270252324948632
GO:0007165: signal transduction	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006463380068602731
GO:0007165: signal transduction	IGBP1	immunoglobulin (CD79A) binding protein 1	0.00284876102136823
GO:0007165: signal transduction	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001307394359057507
GO:0007165: signal transduction	IGF1R	insulin-like growth factor 1 receptor	0.001071834317358685
GO:0007165: signal transduction	IGFBP1	insulin-like growth factor binding protein 1	0.0003878467873103582
GO:0007165: signal transduction	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014475319462091507
GO:0007165: signal transduction	IGFBP4	insulin-like growth factor binding protein 4	-0.0012781286022579322
GO:0007165: signal transduction	IGFBP6	insulin-like growth factor binding protein 6	-0.0020276698443934178
GO:0007165: signal transduction	INHA	inhibin, alpha	0.0002116812875126058
GO:0007165: signal transduction	INPP4B	inositol polyphosphate-4-phosphatase, type II, 105kDa	0.0002898240135355376
GO:0007165: signal transduction	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016082176767364584
GO:0007165: signal transduction	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007801932860876993
GO:0007165: signal transduction	JAK2	Janus kinase 2	-3.184119929580908e-5
GO:0007165: signal transduction	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027462797660271563
GO:0007165: signal transduction	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011686347685723585
GO:0007165: signal transduction	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009315977289665424
GO:0007165: signal transduction	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014201196210848546
GO:0007165: signal transduction	MDK	midkine (neurite growth-promoting factor 2)	0.0016645696032585077
GO:0007165: signal transduction	MOK	MOK protein kinase	0.0017891484430256096
GO:0007165: signal transduction	NCK2	NCK adaptor protein 2	-0.00023207792304873992
GO:0007165: signal transduction	NDRG2	NDRG family member 2	0.0021729170842499307
GO:0007165: signal transduction	NMU	neuromedin U	0.0018500546101785198
GO:0007165: signal transduction	NRP1	neuropilin 1	-0.0006429554165685959
GO:0007165: signal transduction	OR5I1	olfactory receptor, family 5, subfamily I, member 1	0.0018819441389188877
GO:0007165: signal transduction	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036099984777882975
GO:0007165: signal transduction	PEX11A	peroxisomal biogenesis factor 11 alpha	0.0007172058370507027
GO:0007165: signal transduction	PGR	progesterone receptor	0.0003518137484191213
GO:0007165: signal transduction	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007806355534794369
GO:0007165: signal transduction	PKN1	protein kinase N1	-0.001902514536892684
GO:0007165: signal transduction	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015369129227155244
GO:0007165: signal transduction	PRDM4	PR domain containing 4	0.0008401522472600568
GO:0007165: signal transduction	PRKCA	protein kinase C, alpha	-5.8587157284661915e-6
GO:0007165: signal transduction	PRKCD	protein kinase C, delta	-0.0011280425279524254
GO:0007165: signal transduction	PRKCZ	protein kinase C, zeta	-0.001600397382618745
GO:0007165: signal transduction	PTK7	protein tyrosine kinase 7	-0.000225237085697346
GO:0007165: signal transduction	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014984721965360785
GO:0007165: signal transduction	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003489944204112378
GO:0007165: signal transduction	RASSF8	Ras association (RalGDS/AF-6) domain family (N-terminal) member 8	0.003320192670512797
GO:0007165: signal transduction	RET	ret proto-oncogene	-0.0004911562201324095
GO:0007165: signal transduction	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025137535542865573
GO:0007165: signal transduction	SNX17	sorting nexin 17	0.001641208519791494
GO:0007165: signal transduction	SOX9	SRY (sex determining region Y)-box 9	-0.0005184320937996083
GO:0007165: signal transduction	SPHK1	sphingosine kinase 1	0.0018104643880386773
GO:0007165: signal transduction	STK24	serine/threonine kinase 24	0.0026941011093451206
GO:0007165: signal transduction	STMN1	stathmin 1	0.0005589882128292233
GO:0007165: signal transduction	STX2	syntaxin 2	0.0003079835404112422
GO:0007165: signal transduction	TGFBR1	transforming growth factor, beta receptor 1	0.00033977308512114464
GO:0007165: signal transduction	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.00031715867109831993
GO:0007165: signal transduction	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002775153287852283
GO:0007165: signal transduction	TRAIP	TRAF interacting protein	0.0010222919425565634
GO:0007165: signal transduction	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005634964089186076
GO:0007165: signal transduction	VEGFC	vascular endothelial growth factor C	-0.0033632830815598386
GO:0007165: signal transduction	VLDLR	very low density lipoprotein receptor	0.0009526634738594299
GO:0007165: signal transduction	ZPR1	ZPR1 zinc finger	-0.00020945048144596645
GO:0007179: transforming growth factor beta receptor signaling pathway	ACVRL1	activin A receptor type II-like 1	0.0019477170205270313
GO:0007179: transforming growth factor beta receptor signaling pathway	AMHR2	anti-Mullerian hormone receptor, type II	-0.00022492873707298072
GO:0007179: transforming growth factor beta receptor signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.0008183175303271567
GO:0007179: transforming growth factor beta receptor signaling pathway	CCNC	cyclin C	0.0005688221525635009
GO:0007179: transforming growth factor beta receptor signaling pathway	CDK8	cyclin-dependent kinase 8	0.0026173712241212834
GO:0007179: transforming growth factor beta receptor signaling pathway	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018392719383721052
GO:0007179: transforming growth factor beta receptor signaling pathway	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028244334171750652
GO:0007179: transforming growth factor beta receptor signaling pathway	CREB1	cAMP responsive element binding protein 1	0.000660360464230068
GO:0007179: transforming growth factor beta receptor signaling pathway	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023502401060925236
GO:0007179: transforming growth factor beta receptor signaling pathway	ENG	endoglin	0.0008287895959262677
GO:0007179: transforming growth factor beta receptor signaling pathway	FOXH1	forkhead box H1	-0.001374724843840528
GO:0007179: transforming growth factor beta receptor signaling pathway	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.002437106835718055
GO:0007179: transforming growth factor beta receptor signaling pathway	HIPK2	homeodomain interacting protein kinase 2	0.0007721425017938066
GO:0007179: transforming growth factor beta receptor signaling pathway	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001138483627765814
GO:0007179: transforming growth factor beta receptor signaling pathway	PML	promyelocytic leukemia	-0.000680855457228716
GO:0007179: transforming growth factor beta receptor signaling pathway	PRKCZ	protein kinase C, zeta	-0.0016038789679217636
GO:0007179: transforming growth factor beta receptor signaling pathway	RHOA	ras homolog family member A	0.0006711381340593413
GO:0007179: transforming growth factor beta receptor signaling pathway	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011209206002378326
GO:0007179: transforming growth factor beta receptor signaling pathway	SKI	SKI proto-oncogene	-0.0006716534248830592
GO:0007179: transforming growth factor beta receptor signaling pathway	TFDP1	transcription factor Dp-1	0.0014487226922070134
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFB1	transforming growth factor, beta 1	-7.328683779457382e-5
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFB2	transforming growth factor, beta 2	-0.0010619459331235477
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFB3	transforming growth factor, beta 3	-0.0018281370084749261
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFBR1	transforming growth factor, beta receptor 1	0.00034086779108912684
GO:0007179: transforming growth factor beta receptor signaling pathway	TP53	tumor protein p53	0.0011789064079598336
GO:0007179: transforming growth factor beta receptor signaling pathway	WWTR1	WW domain containing transcription regulator 1	0.000903050246202591
GO:0008015: blood circulation	ACVRL1	activin A receptor type II-like 1	0.00195463313100496
GO:0008015: blood circulation	ADM	adrenomedullin	0.002250440583186858
GO:0008015: blood circulation	CXCL10	chemokine (C-X-C motif) ligand 10	6.365246412149726e-5
GO:0008015: blood circulation	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012155952786464237
GO:0008015: blood circulation	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023586915419635006
GO:0008015: blood circulation	HOXB2	homeobox B2	0.0027878740896505228
GO:0008217: regulation of blood pressure	ACVRL1	activin A receptor type II-like 1	0.001958271553016392
GO:0008217: regulation of blood pressure	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011463655435048636
GO:0008217: regulation of blood pressure	HMOX1	heme oxygenase (decycling) 1	-0.00021983845923779848
GO:0008217: regulation of blood pressure	LEP	leptin	0.0032197843419849363
GO:0008217: regulation of blood pressure	LRP5	low density lipoprotein receptor-related protein 5	2.9415784427956315e-5
GO:0008285: negative regulation of cell proliferation	ACVRL1	activin A receptor type II-like 1	0.0019450423689848504
GO:0008285: negative regulation of cell proliferation	ADM	adrenomedullin	0.0022391940259310077
GO:0008285: negative regulation of cell proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001134096808718154
GO:0008285: negative regulation of cell proliferation	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0012097239612722758
GO:0008285: negative regulation of cell proliferation	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030209456747757996
GO:0008285: negative regulation of cell proliferation	APC	adenomatous polyposis coli	0.0006440335004019947
GO:0008285: negative regulation of cell proliferation	AR	androgen receptor	0.002639767820816288
GO:0008285: negative regulation of cell proliferation	ATF5	activating transcription factor 5	-0.002736752461099584
GO:0008285: negative regulation of cell proliferation	BAK1	BCL2-antagonist/killer 1	-0.0018772370398121947
GO:0008285: negative regulation of cell proliferation	BCHE	butyrylcholinesterase	-6.9765294945671196e-6
GO:0008285: negative regulation of cell proliferation	BMP4	bone morphogenetic protein 4	-0.0003227789396435445
GO:0008285: negative regulation of cell proliferation	CD9	CD9 molecule	-0.002587709018700915
GO:0008285: negative regulation of cell proliferation	CDC6	cell division cycle 6	0.001354879995944263
GO:0008285: negative regulation of cell proliferation	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017593414912815558
GO:0008285: negative regulation of cell proliferation	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018366482265428055
GO:0008285: negative regulation of cell proliferation	CHD5	chromodomain helicase DNA binding protein 5	-0.0005192094837780244
GO:0008285: negative regulation of cell proliferation	CIB1	calcium and integrin binding 1 (calmyrin)	5.4573779760865477e-5
GO:0008285: negative regulation of cell proliferation	CSNK2B	casein kinase 2, beta polypeptide	0.0015297135610614445
GO:0008285: negative regulation of cell proliferation	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011700726060175801
GO:0008285: negative regulation of cell proliferation	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003978775054213933
GO:0008285: negative regulation of cell proliferation	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047153962910640785
GO:0008285: negative regulation of cell proliferation	DHCR24	24-dehydrocholesterol reductase	-0.0017085568606880301
GO:0008285: negative regulation of cell proliferation	DRD2	dopamine receptor D2	-0.00023414467350260122
GO:0008285: negative regulation of cell proliferation	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018313082969778518
GO:0008285: negative regulation of cell proliferation	FGFR3	fibroblast growth factor receptor 3	0.00022285984370167585
GO:0008285: negative regulation of cell proliferation	FLT3	fms-related tyrosine kinase 3	-0.0006819895209086501
GO:0008285: negative regulation of cell proliferation	GATA3	GATA binding protein 3	-3.901343515800583e-5
GO:0008285: negative regulation of cell proliferation	GLI3	GLI family zinc finger 3	-0.002153050127690326
GO:0008285: negative regulation of cell proliferation	HMGA1	high mobility group AT-hook 1	-0.00031887073191870757
GO:0008285: negative regulation of cell proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013110964500248772
GO:0008285: negative regulation of cell proliferation	IGFBP3	insulin-like growth factor binding protein 3	0.0008371353197730283
GO:0008285: negative regulation of cell proliferation	IGFBP6	insulin-like growth factor binding protein 6	-0.002029294690595641
GO:0008285: negative regulation of cell proliferation	INHBA	inhibin, beta A	-0.0013541910655605746
GO:0008285: negative regulation of cell proliferation	IRF6	interferon regulatory factor 6	-0.0016947300086202323
GO:0008285: negative regulation of cell proliferation	JAK2	Janus kinase 2	-3.1680093694854645e-5
GO:0008285: negative regulation of cell proliferation	KLF11	Kruppel-like factor 11	0.0006172392148230506
GO:0008285: negative regulation of cell proliferation	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006610398783569427
GO:0008285: negative regulation of cell proliferation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001421337585411186
GO:0008285: negative regulation of cell proliferation	MSX1	msh homeobox 1	-0.0027708860856549443
GO:0008285: negative regulation of cell proliferation	NCK2	NCK adaptor protein 2	-0.00023213668445202446
GO:0008285: negative regulation of cell proliferation	NDRG1	N-myc downstream regulated 1	-0.0009414853496860371
GO:0008285: negative regulation of cell proliferation	NF2	neurofibromin 2 (merlin)	-0.0012725663301033127
GO:0008285: negative regulation of cell proliferation	NOTCH1	notch 1	0.0005190883491611525
GO:0008285: negative regulation of cell proliferation	PDX1	pancreatic and duodenal homeobox 1	0.00025751202812592997
GO:0008285: negative regulation of cell proliferation	PHOX2B	paired-like homeobox 2b	0.0003906301614647678
GO:0008285: negative regulation of cell proliferation	PML	promyelocytic leukemia	-0.0006802973368918824
GO:0008285: negative regulation of cell proliferation	POU1F1	POU class 1 homeobox 1	0.00013753675609704284
GO:0008285: negative regulation of cell proliferation	PRKCA	protein kinase C, alpha	-5.880755402195299e-6
GO:0008285: negative regulation of cell proliferation	PROX1	prospero homeobox 1	0.0011222581274418976
GO:0008285: negative regulation of cell proliferation	PTEN	phosphatase and tensin homolog	1.699164479750526e-5
GO:0008285: negative regulation of cell proliferation	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.00032946570920118376
GO:0008285: negative regulation of cell proliferation	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.00033868018785245115
GO:0008285: negative regulation of cell proliferation	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014997181483652174
GO:0008285: negative regulation of cell proliferation	RARG	retinoic acid receptor, gamma	-0.0023208919093867437
GO:0008285: negative regulation of cell proliferation	RBBP4	retinoblastoma binding protein 4	-0.0018615449201155004
GO:0008285: negative regulation of cell proliferation	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009819875758064521
GO:0008285: negative regulation of cell proliferation	RXRA	retinoid X receptor, alpha	0.0011157885166322508
GO:0008285: negative regulation of cell proliferation	SERPINE2	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2	0.0025044221025937565
GO:0008285: negative regulation of cell proliferation	SFRP1	secreted frizzled-related protein 1	0.0012828129405696835
GO:0008285: negative regulation of cell proliferation	SIRT2	sirtuin 2	-0.0008528284020049034
GO:0008285: negative regulation of cell proliferation	SKI	SKI proto-oncogene	-0.0006708552260220728
GO:0008285: negative regulation of cell proliferation	SLIT2	slit homolog 2 (Drosophila)	-0.0016212717145099955
GO:0008285: negative regulation of cell proliferation	SOX4	SRY (sex determining region Y)-box 4	-3.823810295875472e-5
GO:0008285: negative regulation of cell proliferation	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004801644901072092
GO:0008285: negative regulation of cell proliferation	TGFB1	transforming growth factor, beta 1	-7.306558685080594e-5
GO:0008285: negative regulation of cell proliferation	TGFB2	transforming growth factor, beta 2	-0.001060124302051384
GO:0008285: negative regulation of cell proliferation	TGFB3	transforming growth factor, beta 3	-0.0018249530927945783
GO:0008285: negative regulation of cell proliferation	TP53	tumor protein p53	0.0011765917919464674
GO:0008285: negative regulation of cell proliferation	TP73	tumor protein p73	0.0010285762628291998
GO:0008285: negative regulation of cell proliferation	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005638134434367343
GO:0008285: negative regulation of cell proliferation	VEGFC	vascular endothelial growth factor C	-0.0033660776143192525
GO:0008285: negative regulation of cell proliferation	WT1	Wilms tumor 1	-0.0005072784612433902
GO:0010596: negative regulation of endothelial cell migration	ACVRL1	activin A receptor type II-like 1	0.0019392544309793536
GO:0010596: negative regulation of endothelial cell migration	AGER	advanced glycosylation end product-specific receptor	-0.00017405620776148904
GO:0010596: negative regulation of endothelial cell migration	SLIT2	slit homolog 2 (Drosophila)	-0.001615558291241135
GO:0010596: negative regulation of endothelial cell migration	THBS1	thrombospondin 1	-0.0010327682943718803
GO:0010596: negative regulation of endothelial cell migration	VASH1	vasohibin 1	0.000597519297321114
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	ACVRL1	activin A receptor type II-like 1	0.0019429630682778376
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	BMP4	bone morphogenetic protein 4	-0.000322482090991535
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	BMP7	bone morphogenetic protein 7	0.0008550989828034135
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	CSNK2B	casein kinase 2, beta polypeptide	0.0015282231022148666
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	ENG	endoglin	0.0008261881775255029
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	GDF3	growth differentiation factor 3	-0.001883076418283946
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	INHA	inhibin, alpha	0.00021133483828984187
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	INHBA	inhibin, beta A	-0.0013528337548718
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFB1	transforming growth factor, beta 1	-7.314932938012383e-5
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFB2	transforming growth factor, beta 2	-0.0010589174293650278
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFB3	transforming growth factor, beta 3	-0.0018232911276634784
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFBR1	transforming growth factor, beta receptor 1	0.0003398629920313265
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TTK	TTK protein kinase	0.0010856640624797387
GO:0023014: signal transduction by protein phosphorylation	ACVRL1	activin A receptor type II-like 1	0.0019476480050772888
GO:0023014: signal transduction by protein phosphorylation	AMHR2	anti-Mullerian hormone receptor, type II	-0.00022496307320129443
GO:0023014: signal transduction by protein phosphorylation	INSR	insulin receptor	-0.0013661233431596813
GO:0023014: signal transduction by protein phosphorylation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001423894219305826
GO:0023014: signal transduction by protein phosphorylation	STK24	serine/threonine kinase 24	0.0027001009317045898
GO:0023014: signal transduction by protein phosphorylation	TGFB2	transforming growth factor, beta 2	-0.0010619596012031705
GO:0023014: signal transduction by protein phosphorylation	TGFBR1	transforming growth factor, beta receptor 1	0.00034061196584385167
GO:0030308: negative regulation of cell growth	ACVRL1	activin A receptor type II-like 1	0.0019465937062195249
GO:0030308: negative regulation of cell growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001136679843623589
GO:0030308: negative regulation of cell growth	BCL2	B-cell CLL/lymphoma 2	-5.235961386149273e-6
GO:0030308: negative regulation of cell growth	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017620138049313182
GO:0030308: negative regulation of cell growth	CRYAB	crystallin, alpha B	0.0009872064460255256
GO:0030308: negative regulation of cell growth	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047250785522871147
GO:0030308: negative regulation of cell growth	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016379374024781966
GO:0030308: negative regulation of cell growth	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008299974383682906
GO:0030308: negative regulation of cell growth	INHBA	inhibin, beta A	-0.0013570205450785635
GO:0030308: negative regulation of cell growth	MSX1	msh homeobox 1	-0.0027741962132968607
GO:0030308: negative regulation of cell growth	NF2	neurofibromin 2 (merlin)	-0.0012725211664658478
GO:0030308: negative regulation of cell growth	PML	promyelocytic leukemia	-0.0006799242559832308
GO:0030308: negative regulation of cell growth	PRDM4	PR domain containing 4	0.0008408507580063658
GO:0030308: negative regulation of cell growth	PSRC1	proline/serine-rich coiled-coil 1	0.0006490186907055037
GO:0030308: negative regulation of cell growth	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003385804136027841
GO:0030308: negative regulation of cell growth	SERPINE2	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2	0.002506776530894682
GO:0030308: negative regulation of cell growth	SFRP1	secreted frizzled-related protein 1	0.0012865837019925064
GO:0030308: negative regulation of cell growth	SIRT1	sirtuin 1	-1.0999163846877685e-6
GO:0030308: negative regulation of cell growth	SLIT2	slit homolog 2 (Drosophila)	-0.0016231315668071
GO:0030308: negative regulation of cell growth	TGFB1	transforming growth factor, beta 1	-7.352850406007189e-5
GO:0030308: negative regulation of cell growth	TGFB2	transforming growth factor, beta 2	-0.0010613630616584163
GO:0030308: negative regulation of cell growth	TP53	tumor protein p53	0.0011786364252468068
GO:0030308: negative regulation of cell growth	WT1	Wilms tumor 1	-0.0005080295022154229
GO:0030336: negative regulation of cell migration	ACVRL1	activin A receptor type II-like 1	0.001941793158108352
GO:0030336: negative regulation of cell migration	ARPIN	actin-related protein 2/3 complex inhibitor	-0.00014142792688151705
GO:0030336: negative regulation of cell migration	BCL2	B-cell CLL/lymphoma 2	-5.0980556268562505e-6
GO:0030336: negative regulation of cell migration	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008561084499457642
GO:0030336: negative regulation of cell migration	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039733772998888807
GO:0030336: negative regulation of cell migration	DACH1	dachshund family transcription factor 1	0.002086477360333665
GO:0030336: negative regulation of cell migration	DAG1	dystroglycan 1 (dystrophin-associated glycoprotein 1)	0.000361209852176864
GO:0030336: negative regulation of cell migration	DRD2	dopamine receptor D2	-0.00023385001518940197
GO:0030336: negative regulation of cell migration	ENG	endoglin	0.0008254162355259503
GO:0030336: negative regulation of cell migration	KANK1	KN motif and ankyrin repeat domains 1	0.0025304489406819813
GO:0030336: negative regulation of cell migration	NF2	neurofibromin 2 (merlin)	-0.0012705218028460678
GO:0030336: negative regulation of cell migration	PTEN	phosphatase and tensin homolog	1.725585229445025e-5
GO:0030336: negative regulation of cell migration	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003382301403196738
GO:0030336: negative regulation of cell migration	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011234506285016817
GO:0030336: negative regulation of cell migration	SFRP1	secreted frizzled-related protein 1	0.0012798458679897993
GO:0030336: negative regulation of cell migration	SHH	sonic hedgehog	0.0005990921539456029
GO:0030336: negative regulation of cell migration	SLIT2	slit homolog 2 (Drosophila)	-0.0016182399277552253
GO:0030336: negative regulation of cell migration	STK24	serine/threonine kinase 24	0.002691671557617777
GO:0030336: negative regulation of cell migration	SULF1	sulfatase 1	-0.0008044807316197396
GO:0030336: negative regulation of cell migration	WNT4	wingless-type MMTV integration site family, member 4	-0.0002515854590578902
GO:0030509: BMP signaling pathway	ACVRL1	activin A receptor type II-like 1	0.0019435026586675321
GO:0030509: BMP signaling pathway	BMP4	bone morphogenetic protein 4	-0.00032207533292147474
GO:0030509: BMP signaling pathway	BMP7	bone morphogenetic protein 7	0.0008562001551039507
GO:0030509: BMP signaling pathway	DLX5	distal-less homeobox 5	-0.003285025452064133
GO:0030509: BMP signaling pathway	EGR1	early growth response 1	0.001093346901522614
GO:0030509: BMP signaling pathway	ENG	endoglin	0.0008263497207037057
GO:0030509: BMP signaling pathway	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009834225103412014
GO:0030509: BMP signaling pathway	GATA4	GATA binding protein 4	-0.0010940148851977716
GO:0030509: BMP signaling pathway	GDF3	growth differentiation factor 3	-0.0018837184756084154
GO:0030509: BMP signaling pathway	LEF1	lymphoid enhancer-binding factor 1	-9.961637110677e-5
GO:0030509: BMP signaling pathway	SKI	SKI proto-oncogene	-0.0006709456968314362
GO:0030513: positive regulation of BMP signaling pathway	ACVRL1	activin A receptor type II-like 1	0.0019424986883671076
GO:0030513: positive regulation of BMP signaling pathway	BMP4	bone morphogenetic protein 4	-0.0003223664537353747
GO:0030513: positive regulation of BMP signaling pathway	ENG	endoglin	0.000825885649978468
GO:0030513: positive regulation of BMP signaling pathway	GATA4	GATA binding protein 4	-0.0010939836837037236
GO:0030513: positive regulation of BMP signaling pathway	GATA6	GATA binding protein 6	-2.805840818749671e-5
GO:0030513: positive regulation of BMP signaling pathway	HES1	hes family bHLH transcription factor 1	-0.0009102898038528626
GO:0030513: positive regulation of BMP signaling pathway	MSX1	msh homeobox 1	-0.0027669619221695556
GO:0030513: positive regulation of BMP signaling pathway	NOTCH1	notch 1	0.0005184455403721941
GO:0030513: positive regulation of BMP signaling pathway	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009807306261139033
GO:0030513: positive regulation of BMP signaling pathway	SOX11	SRY (sex determining region Y)-box 11	-0.0002088241675552829
GO:0030513: positive regulation of BMP signaling pathway	SULF1	sulfatase 1	-0.0008052128386622089
GO:0032332: positive regulation of chondrocyte differentiation	ACVRL1	activin A receptor type II-like 1	0.00195365183251654
GO:0032332: positive regulation of chondrocyte differentiation	GLI3	GLI family zinc finger 3	-0.0021650768092271286
GO:0032332: positive regulation of chondrocyte differentiation	IHH	indian hedgehog	-0.002052110766871768
GO:0032332: positive regulation of chondrocyte differentiation	POR	P450 (cytochrome) oxidoreductase	0.00046015078850584324
GO:0032332: positive regulation of chondrocyte differentiation	SOX9	SRY (sex determining region Y)-box 9	-0.0005210372975415024
GO:0032924: activin receptor signaling pathway	ACVRL1	activin A receptor type II-like 1	0.00195000997336054
GO:0032924: activin receptor signaling pathway	INHBA	inhibin, beta A	-0.0013605193067040256
GO:0032924: activin receptor signaling pathway	TGFBR1	transforming growth factor, beta receptor 1	0.00034160273668654585
GO:0035313: wound healing, spreading of epidermal cells	ACVRL1	activin A receptor type II-like 1	0.0019396857516285292
GO:0035313: wound healing, spreading of epidermal cells	ARHGAP24	Rho GTPase activating protein 24	-0.0009324411740603245
GO:0035313: wound healing, spreading of epidermal cells	COL5A1	collagen, type V, alpha 1	-4.8411186035842724e-5
GO:0043535: regulation of blood vessel endothelial cell migration	ACVRL1	activin A receptor type II-like 1	0.0019411176309128094
GO:0043535: regulation of blood vessel endothelial cell migration	EFNA1	ephrin-A1	-0.0005207594575803084
GO:0043537: negative regulation of blood vessel endothelial cell migration	ACVRL1	activin A receptor type II-like 1	0.0019350997676852312
GO:0043537: negative regulation of blood vessel endothelial cell migration	CSNK2B	casein kinase 2, beta polypeptide	0.0015202083780707122
GO:0043537: negative regulation of blood vessel endothelial cell migration	HMGB1	high mobility group box 1	-0.000774125542755225
GO:0043537: negative regulation of blood vessel endothelial cell migration	TGFB1	transforming growth factor, beta 1	-7.219485695222207e-5
GO:0043537: negative regulation of blood vessel endothelial cell migration	THBS1	thrombospondin 1	-0.0010305616462237103
GO:0043537: negative regulation of blood vessel endothelial cell migration	VASH1	vasohibin 1	0.0005964130896585946
GO:0045602: negative regulation of endothelial cell differentiation	ACVRL1	activin A receptor type II-like 1	0.001955725836585586
GO:0045603: positive regulation of endothelial cell differentiation	ACVRL1	activin A receptor type II-like 1	0.001938663161837994
GO:0045603: positive regulation of endothelial cell differentiation	ALOX12	arachidonate 12-lipoxygenase	-0.0019479874804598785
GO:0045603: positive regulation of endothelial cell differentiation	BMP4	bone morphogenetic protein 4	-0.00032148546203489406
GO:0045603: positive regulation of endothelial cell differentiation	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.0001174331577793888
GO:0045603: positive regulation of endothelial cell differentiation	NOTCH1	notch 1	0.0005166574587866225
GO:0045766: positive regulation of angiogenesis	ACVRL1	activin A receptor type II-like 1	0.001948457666175293
GO:0045766: positive regulation of angiogenesis	ADM	adrenomedullin	0.0022431340315819956
GO:0045766: positive regulation of angiogenesis	ALOX12	arachidonate 12-lipoxygenase	-0.0019585587277376453
GO:0045766: positive regulation of angiogenesis	C3	complement component 3	0.002029742039891386
GO:0045766: positive regulation of angiogenesis	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021230040437213832
GO:0045766: positive regulation of angiogenesis	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008587629721976234
GO:0045766: positive regulation of angiogenesis	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039841652308391935
GO:0045766: positive regulation of angiogenesis	ECM1	extracellular matrix protein 1	-0.0015619311254693362
GO:0045766: positive regulation of angiogenesis	GATA2	GATA binding protein 2	-0.00045298233854311454
GO:0045766: positive regulation of angiogenesis	GATA4	GATA binding protein 4	-0.0010975927286488087
GO:0045766: positive regulation of angiogenesis	GATA6	GATA binding protein 6	-2.795763589190175e-5
GO:0045766: positive regulation of angiogenesis	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008303460376319978
GO:0045766: positive regulation of angiogenesis	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006478370845735982
GO:0045766: positive regulation of angiogenesis	HIPK2	homeodomain interacting protein kinase 2	0.0007724192858138795
GO:0045766: positive regulation of angiogenesis	HMOX1	heme oxygenase (decycling) 1	-0.00021825844159092622
GO:0045766: positive regulation of angiogenesis	ISL1	ISL LIM homeobox 1	7.865100337366e-5
GO:0045766: positive regulation of angiogenesis	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.0029816642478921068
GO:0045766: positive regulation of angiogenesis	PRKCA	protein kinase C, alpha	-5.865913487281124e-6
GO:0045766: positive regulation of angiogenesis	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011210625265470982
GO:0045766: positive regulation of angiogenesis	SPHK1	sphingosine kinase 1	0.0018153777778733
GO:0045766: positive regulation of angiogenesis	THBS1	thrombospondin 1	-0.0010384229136312746
GO:0045766: positive regulation of angiogenesis	TWIST1	twist family bHLH transcription factor 1	-0.001345317783625186
GO:0045766: positive regulation of angiogenesis	VEGFA	vascular endothelial growth factor A	0.0005970545210815666
GO:0045766: positive regulation of angiogenesis	VEGFC	vascular endothelial growth factor C	-0.003372177995694795
GO:0045766: positive regulation of angiogenesis	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006692282805074449
GO:0045893: positive regulation of transcription, DNA-templated	ACVRL1	activin A receptor type II-like 1	0.0019424699523251574
GO:0045893: positive regulation of transcription, DNA-templated	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001131951085849806
GO:0045893: positive regulation of transcription, DNA-templated	ALX1	ALX homeobox 1	0.002290436340917747
GO:0045893: positive regulation of transcription, DNA-templated	AR	androgen receptor	0.002636593340557386
GO:0045893: positive regulation of transcription, DNA-templated	ATAD2	ATPase family, AAA domain containing 2	-4.789011084695515e-5
GO:0045893: positive regulation of transcription, DNA-templated	ATF5	activating transcription factor 5	-0.002733053347596574
GO:0045893: positive regulation of transcription, DNA-templated	AXIN1	axin 1	-0.0007324973990418596
GO:0045893: positive regulation of transcription, DNA-templated	BLM	Bloom syndrome, RecQ helicase-like	0.0005237542326881843
GO:0045893: positive regulation of transcription, DNA-templated	BMP4	bone morphogenetic protein 4	-0.00032233914684371285
GO:0045893: positive regulation of transcription, DNA-templated	BMP7	bone morphogenetic protein 7	0.0008551480720348392
GO:0045893: positive regulation of transcription, DNA-templated	BRCA2	breast cancer 2, early onset	-1.0194446723873626e-5
GO:0045893: positive regulation of transcription, DNA-templated	CCNE1	cyclin E1	0.0003705151247849761
GO:0045893: positive regulation of transcription, DNA-templated	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.001756540742312784
GO:0045893: positive regulation of transcription, DNA-templated	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002815890929813173
GO:0045893: positive regulation of transcription, DNA-templated	CLOCK	clock circadian regulator	0.00020014388638220875
GO:0045893: positive regulation of transcription, DNA-templated	COL1A1	collagen, type I, alpha 1	-0.0005254580146218141
GO:0045893: positive regulation of transcription, DNA-templated	CREB1	cAMP responsive element binding protein 1	0.0006576257344525605
GO:0045893: positive regulation of transcription, DNA-templated	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011693183698617325
GO:0045893: positive regulation of transcription, DNA-templated	DLX5	distal-less homeobox 5	-0.0032809466100890547
GO:0045893: positive regulation of transcription, DNA-templated	DNAJC2	DnaJ (Hsp40) homolog, subfamily C, member 2	-0.0009830605135970505
GO:0045893: positive regulation of transcription, DNA-templated	E2F1	E2F transcription factor 1	0.002096015752039045
GO:0045893: positive regulation of transcription, DNA-templated	E2F3	E2F transcription factor 3	0.002160297774663672
GO:0045893: positive regulation of transcription, DNA-templated	EGR1	early growth response 1	0.0010922775714886648
GO:0045893: positive regulation of transcription, DNA-templated	EGR2	early growth response 2	0.0014373729383497186
GO:0045893: positive regulation of transcription, DNA-templated	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018253052870426632
GO:0045893: positive regulation of transcription, DNA-templated	ESR1	estrogen receptor 1	-0.0009472384920453684
GO:0045893: positive regulation of transcription, DNA-templated	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010147518385565997
GO:0045893: positive regulation of transcription, DNA-templated	FGF7	fibroblast growth factor 7	0.0006332387776418407
GO:0045893: positive regulation of transcription, DNA-templated	FOXA2	forkhead box A2	-1.6742221533040647e-5
GO:0045893: positive regulation of transcription, DNA-templated	FOXC1	forkhead box C1	-2.242247827307808e-5
GO:0045893: positive regulation of transcription, DNA-templated	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017469206154163354
GO:0045893: positive regulation of transcription, DNA-templated	FOXH1	forkhead box H1	-0.0013699111435599692
GO:0045893: positive regulation of transcription, DNA-templated	FOXM1	forkhead box M1	0.00019684151868649402
GO:0045893: positive regulation of transcription, DNA-templated	FOXO1	forkhead box O1	0.001798888668051454
GO:0045893: positive regulation of transcription, DNA-templated	FOXO3	forkhead box O3	0.0011990804052633506
GO:0045893: positive regulation of transcription, DNA-templated	FZD7	frizzled class receptor 7	0.0010694453897585473
GO:0045893: positive regulation of transcription, DNA-templated	GATA3	GATA binding protein 3	-3.879720197696245e-5
GO:0045893: positive regulation of transcription, DNA-templated	GATA4	GATA binding protein 4	-0.001093886335399841
GO:0045893: positive regulation of transcription, DNA-templated	GLI1	GLI family zinc finger 1	-0.0012959183367459671
GO:0045893: positive regulation of transcription, DNA-templated	GLI2	GLI family zinc finger 2	0.0018520766205114218
GO:0045893: positive regulation of transcription, DNA-templated	GLI3	GLI family zinc finger 3	-0.002149767998237583
GO:0045893: positive regulation of transcription, DNA-templated	HDAC2	histone deacetylase 2	-0.0012065957095432293
GO:0045893: positive regulation of transcription, DNA-templated	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006460986295605764
GO:0045893: positive regulation of transcription, DNA-templated	HINFP	histone H4 transcription factor	0.000991719121194569
GO:0045893: positive regulation of transcription, DNA-templated	HIPK2	homeodomain interacting protein kinase 2	0.0007703154598295992
GO:0045893: positive regulation of transcription, DNA-templated	HMGA1	high mobility group AT-hook 1	-0.0003185526900277933
GO:0045893: positive regulation of transcription, DNA-templated	HMGA2	high mobility group AT-hook 2	0.0015078669541719338
GO:0045893: positive regulation of transcription, DNA-templated	HMGB2	high mobility group box 2	0.00030640789679783984
GO:0045893: positive regulation of transcription, DNA-templated	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.0147338861706204e-5
GO:0045893: positive regulation of transcription, DNA-templated	IFNA2	interferon, alpha 2	-0.0017160038228046426
GO:0045893: positive regulation of transcription, DNA-templated	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013067562121328764
GO:0045893: positive regulation of transcription, DNA-templated	IL4	interleukin 4	0.0002595043823436948
GO:0045893: positive regulation of transcription, DNA-templated	INHBA	inhibin, beta A	-0.001351585042189351
GO:0045893: positive regulation of transcription, DNA-templated	INSR	insulin receptor	-0.0013621044597654382
GO:0045893: positive regulation of transcription, DNA-templated	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016074433700917162
GO:0045893: positive regulation of transcription, DNA-templated	IRF6	interferon regulatory factor 6	-0.0016923647209914827
GO:0045893: positive regulation of transcription, DNA-templated	IRF7	interferon regulatory factor 7	-0.0013057533261672223
GO:0045893: positive regulation of transcription, DNA-templated	KLF2	Kruppel-like factor 2	-0.0012312907135839455
GO:0045893: positive regulation of transcription, DNA-templated	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006600827015158209
GO:0045893: positive regulation of transcription, DNA-templated	LEF1	lymphoid enhancer-binding factor 1	-0.00010027652822402428
GO:0045893: positive regulation of transcription, DNA-templated	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.0003082385651295194
GO:0045893: positive regulation of transcription, DNA-templated	LHX1	LIM homeobox 1	-0.0007581026733613866
GO:0045893: positive regulation of transcription, DNA-templated	LRP5	low density lipoprotein receptor-related protein 5	3.030856743159405e-5
GO:0045893: positive regulation of transcription, DNA-templated	LRP6	low density lipoprotein receptor-related protein 6	0.0001493542632949018
GO:0045893: positive regulation of transcription, DNA-templated	MDK	midkine (neurite growth-promoting factor 2)	0.001663442920024831
GO:0045893: positive regulation of transcription, DNA-templated	MED1	mediator complex subunit 1	0.0011281820256609694
GO:0045893: positive regulation of transcription, DNA-templated	MEF2C	myocyte enhancer factor 2C	0.0009725002200719214
GO:0045893: positive regulation of transcription, DNA-templated	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011357788935995232
GO:0045893: positive regulation of transcription, DNA-templated	NOTCH1	notch 1	0.0005183413877689852
GO:0045893: positive regulation of transcription, DNA-templated	NPAT	nuclear protein, ataxia-telangiectasia locus	-0.0007091645380148387
GO:0045893: positive regulation of transcription, DNA-templated	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008004274557348044
GO:0045893: positive regulation of transcription, DNA-templated	NRIP1	nuclear receptor interacting protein 1	0.001070494863550287
GO:0045893: positive regulation of transcription, DNA-templated	PAX2	paired box 2	-0.0016127127247679825
GO:0045893: positive regulation of transcription, DNA-templated	PAX3	paired box 3	-0.002943129739047875
GO:0045893: positive regulation of transcription, DNA-templated	PAX6	paired box 6	0.0019341878361513515
GO:0045893: positive regulation of transcription, DNA-templated	PAX8	paired box 8	0.0009476601432854519
GO:0045893: positive regulation of transcription, DNA-templated	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015354664083042134
GO:0045893: positive regulation of transcription, DNA-templated	POU1F1	POU class 1 homeobox 1	0.0001372784624381572
GO:0045893: positive regulation of transcription, DNA-templated	PROX1	prospero homeobox 1	0.0011205378911210572
GO:0045893: positive regulation of transcription, DNA-templated	PSRC1	proline/serine-rich coiled-coil 1	0.0006466591884429116
GO:0045893: positive regulation of transcription, DNA-templated	PTCH1	patched 1	-6.600176165707577e-5
GO:0045893: positive regulation of transcription, DNA-templated	RB1	retinoblastoma 1	-0.0014928297893234339
GO:0045893: positive regulation of transcription, DNA-templated	RET	ret proto-oncogene	-0.0004908191583948977
GO:0045893: positive regulation of transcription, DNA-templated	RNF187	ring finger protein 187	-0.002224456602350203
GO:0045893: positive regulation of transcription, DNA-templated	RREB1	ras responsive element binding protein 1	-0.0019804178693297882
GO:0045893: positive regulation of transcription, DNA-templated	SALL1	spalt-like transcription factor 1	-0.002435057690651302
GO:0045893: positive regulation of transcription, DNA-templated	SFRP1	secreted frizzled-related protein 1	0.0012801395176055665
GO:0045893: positive regulation of transcription, DNA-templated	SHH	sonic hedgehog	0.0005993251429798957
GO:0045893: positive regulation of transcription, DNA-templated	SIX1	SIX homeobox 1	-0.0018685348885844179
GO:0045893: positive regulation of transcription, DNA-templated	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003452148327330156
GO:0045893: positive regulation of transcription, DNA-templated	SOX11	SRY (sex determining region Y)-box 11	-0.00020913766128075292
GO:0045893: positive regulation of transcription, DNA-templated	SOX18	SRY (sex determining region Y)-box 18	0.0012876607654467274
GO:0045893: positive regulation of transcription, DNA-templated	SOX4	SRY (sex determining region Y)-box 4	-3.847273016829213e-5
GO:0045893: positive regulation of transcription, DNA-templated	SOX9	SRY (sex determining region Y)-box 9	-0.0005182236558763611
GO:0045893: positive regulation of transcription, DNA-templated	TBX21	T-box 21	0.0003982966130727618
GO:0045893: positive regulation of transcription, DNA-templated	TBX3	T-box 3	0.0012256285385466947
GO:0045893: positive regulation of transcription, DNA-templated	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004796128279540784
GO:0045893: positive regulation of transcription, DNA-templated	TGFB1	transforming growth factor, beta 1	-7.288968852722854e-5
GO:0045893: positive regulation of transcription, DNA-templated	TGFB3	transforming growth factor, beta 3	-0.001822065873943306
GO:0045893: positive regulation of transcription, DNA-templated	TGFBR1	transforming growth factor, beta receptor 1	0.00033955340667908074
GO:0045893: positive regulation of transcription, DNA-templated	TP53	tumor protein p53	0.0011745536935249116
GO:0045893: positive regulation of transcription, DNA-templated	TP73	tumor protein p73	0.0010271237257381707
GO:0045893: positive regulation of transcription, DNA-templated	TRIM16	tripartite motif containing 16	-0.0014876241924654256
GO:0045893: positive regulation of transcription, DNA-templated	WNT1	wingless-type MMTV integration site family, member 1	0.000786379624795271
GO:0045893: positive regulation of transcription, DNA-templated	WNT4	wingless-type MMTV integration site family, member 4	-0.00025161322209507066
GO:0045893: positive regulation of transcription, DNA-templated	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006668628482081893
GO:0045893: positive regulation of transcription, DNA-templated	WNT7A	wingless-type MMTV integration site family, member 7A	1.953676721406485e-5
GO:0045893: positive regulation of transcription, DNA-templated	WT1	Wilms tumor 1	-0.000506402970040365
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ACVRL1	activin A receptor type II-like 1	0.0019443040642050952
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ADIRF	adipogenesis regulatory factor	-0.00016647884146727662
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000730798763396178
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006260107247967152
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ALX1	ALX homeobox 1	0.0022925475500006395
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	AR	androgen receptor	0.002638822738909425
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014328599434172361
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ATAD2	ATPase family, AAA domain containing 2	-4.7625349177237104e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ATAD2B	ATPase family, AAA domain containing 2B	-0.0006257229810351444
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ATF5	activating transcription factor 5	-0.002735667989973321
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004854033082600651
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BATF	basic leucine zipper transcription factor, ATF-like	0.002039557956209319
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.0009772475489915086
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BMP4	bone morphogenetic protein 4	-0.00032266633996005467
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BMP7	bone morphogenetic protein 7	0.0008558708714268639
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BRD4	bromodomain containing 4	0.0005538715296433379
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CCNC	cyclin C	0.0005675530115576565
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011383878037459392
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDK8	cyclin-dependent kinase 8	0.0026132659090249344
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017585356679328023
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.001835902323059661
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002740273814654646
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CKAP2	cytoskeleton associated protein 2	4.914027723800867e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CLOCK	clock circadian regulator	0.00020012973136357548
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CREB1	cAMP responsive element binding protein 1	0.0006584918070843075
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.0001169835294219796
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CXCL10	chemokine (C-X-C motif) ligand 10	6.257547612097457e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	DDX17	DEAD (Asp-Glu-Ala-Asp) box helicase 17	0.001762259909627511
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	DMRT1	doublesex and mab-3 related transcription factor 1	0.0015048980570308546
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	DRD2	dopamine receptor D2	-0.0002340815848517176
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	E2F1	E2F transcription factor 1	0.002098146047396106
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023461456649955404
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	E2F8	E2F transcription factor 8	0.001711327829127569
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EGFR	epidermal growth factor receptor	0.0006859607328492665
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EGR1	early growth response 1	0.0010933264118176426
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EGR2	early growth response 2	0.001439164722819457
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011713153360883143
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EN1	engrailed homeobox 1	-1.57943183982487e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ENG	endoglin	0.0008267683638286392
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ESR1	estrogen receptor 1	-0.0009483419545981594
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.001015823571455857
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ETV4	ets variant 4	0.00019492280020143077
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EYA1	EYA transcriptional coactivator and phosphatase 1	5.311280200307666e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FGFR2	fibroblast growth factor receptor 2	0.0007634000106427032
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXA1	forkhead box A1	2.774794035939208e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXA2	forkhead box A2	-1.666760328064849e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXC1	forkhead box C1	-2.2231713211088005e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017485811525600034
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXH1	forkhead box H1	-0.0013714971674223672
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXM1	forkhead box M1	0.00019721263082714995
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXO1	forkhead box O1	0.0018006087849650712
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXO3	forkhead box O3	0.0012003389763785048
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA2	GATA binding protein 2	-0.0004516560309394683
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA3	GATA binding protein 3	-3.90070464271817e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA4	GATA binding protein 4	-0.0010950113941441478
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA6	GATA binding protein 6	-2.8173187585815045e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GDNF	glial cell derived neurotrophic factor	0.0004448521982378432
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GLI1	GLI family zinc finger 1	-0.0012970825571942215
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GLI2	GLI family zinc finger 2	0.0018539204116941597
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GLI3	GLI family zinc finger 3	-0.002152105633066084
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008275668341616592
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GRHL2	grainyhead-like 2 (Drosophila)	0.001006963233202588
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GSK3B	glycogen synthase kinase 3 beta	0.0015494892993057777
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HDAC2	histone deacetylase 2	-0.0012074866134420418
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HES1	hes family bHLH transcription factor 1	-0.0009111680624738232
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.002699502812249957
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006777681632462487
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006466180484311894
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HIPK2	homeodomain interacting protein kinase 2	0.0007709706169694358
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGA1	high mobility group AT-hook 1	-0.0003187503253906784
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGA2	high mobility group AT-hook 2	0.0015092633026494986
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGB1	high mobility group box 1	-0.000776524654071891
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGB2	high mobility group box 2	0.00030719307885096204
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXA10	homeobox A10	-0.0029825409453013807
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXA5	homeobox A5	0.0010664548371083274
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXB1	homeobox B1	0.0036872808076660007
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXD13	homeobox D13	-0.000592597148068094
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IFNG	interferon, gamma	-4.891164908630395e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IGBP1	immunoglobulin (CD79A) binding protein 1	0.0028499359303685947
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013093438469579288
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IHH	indian hedgehog	-0.0020410469717874347
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IL4	interleukin 4	0.0002595770430440886
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	INHBA	inhibin, beta A	-0.0013533643395976798
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IRF7	interferon regulatory factor 7	-0.0013069223190736588
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ISL1	ISL LIM homeobox 1	7.899059658237333e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ITGA6	integrin, alpha 6	0.0016694025063890084
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	JAG1	jagged 1	0.001756963754220238
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	JAK2	Janus kinase 2	-3.17640082248964e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KLF15	Kruppel-like factor 15	0.00046526701612469165
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KLF2	Kruppel-like factor 2	-0.001232320746779286
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006607590505708985
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00019942560142910434
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LEF1	lymphoid enhancer-binding factor 1	-0.00010029885240289653
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LMO4	LIM domain only 4	0.002111834998459685
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LRP5	low density lipoprotein receptor-related protein 5	3.0262688070737325e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LRP6	low density lipoprotein receptor-related protein 6	0.00014955188373028675
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MED1	mediator complex subunit 1	0.0011294964355431274
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MEF2C	myocyte enhancer factor 2C	0.000973575540123278
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MLLT10	myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10	-0.0001632855831282175
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MSX1	msh homeobox 1	-0.0027696324611834636
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011367180778710062
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NCK1	NCK adaptor protein 1	-0.0007844735590932207
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NCK2	NCK adaptor protein 2	-0.00023211687434305652
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NFIB	nuclear factor I/B	0.0029199544503863135
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NOTCH1	notch 1	0.0005188996920113445
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008010554039037992
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.002975609596629131
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NRIP1	nuclear receptor interacting protein 1	0.0010713490281943918
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX2	paired box 2	-0.0016144289836253663
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX3	paired box 3	-0.0029458861572175294
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX6	paired box 6	0.0019361357343503488
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX8	paired box 8	0.0009483815195790162
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PDX1	pancreatic and duodenal homeobox 1	0.00025733616349433574
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PGR	progesterone receptor	0.00035194037278726614
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PHOX2B	paired-like homeobox 2b	0.00039054729677026585
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.0021765648777488647
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	POU1F1	POU class 1 homeobox 1	0.00013744987738267402
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018560194764092606
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PROX1	prospero homeobox 1	0.0011217509861606583
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RAD21	RAD21 homolog (S. pombe)	-0.00010233687057396996
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001499129217626
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RARG	retinoic acid receptor, gamma	-0.0023199929125297864
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RB1	retinoblastoma 1	-0.0014943260016971106
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.000981683409233213
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.002514774479188551
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RXRA	retinoid X receptor, alpha	0.0011153419614766478
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SALL1	spalt-like transcription factor 1	-0.0024379079972816292
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011235290357465468
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006588716807296494
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SHH	sonic hedgehog	0.0006000688860940624
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIRT1	sirtuin 1	-1.653383044326792e-6
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIRT2	sirtuin 2	-0.0008524578540420825
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIX1	SIX homeobox 1	-0.0018703894772010036
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIX3	SIX homeobox 3	0.0020377068984229947
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SKI	SKI proto-oncogene	-0.0006706217304763648
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SMO	smoothened, frizzled class receptor	0.0021397104584296328
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX10	SRY (sex determining region Y)-box 10	0.00019050168791481714
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX11	SRY (sex determining region Y)-box 11	-0.00020912628944135005
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX18	SRY (sex determining region Y)-box 18	0.0012887650551480561
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX4	SRY (sex determining region Y)-box 4	-3.8302354977654354e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX9	SRY (sex determining region Y)-box 9	-0.0005187298703103375
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031376050999923407
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	STAT5A	signal transducer and activator of transcription 5A	0.001596658780054534
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005738109595772473
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00047999911729672463
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010603330294379249
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TFDP1	transcription factor Dp-1	0.0014450484802161858
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TGFB1	transforming growth factor, beta 1	-7.30200965097283e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TGFB3	transforming growth factor, beta 3	-0.0018241169280980706
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	THRA	thyroid hormone receptor, alpha	0.0007633944560357847
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	THRB	thyroid hormone receptor, beta	0.001944425770973412
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TOP2A	topoisomerase (DNA) II alpha 170kDa	-8.251189842138396e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TP53	tumor protein p53	0.001175959863869127
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TP73	tumor protein p73	0.0010281381911382763
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TRPS1	trichorhinophalangeal syndrome I	-0.000177780086442827
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TWIST1	twist family bHLH transcription factor 1	-0.001341832189189521
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005636709231557237
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	VEGFA	vascular endothelial growth factor A	0.000595106422555796
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WNT1	wingless-type MMTV integration site family, member 1	0.0007871140874052547
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006675786331229676
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WNT7A	wingless-type MMTV integration site family, member 7A	1.9509947385213982e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.0005070002401581364
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009573922296456001
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WWTR1	WW domain containing transcription regulator 1	0.0009006582974867819
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	XBP1	X-box binding protein 1	0.0002673236707801496
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	YAP1	Yes-associated protein 1	-0.0001643789816582153
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	YBX1	Y box binding protein 1	-0.0009140689035934033
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ZNF148	zinc finger protein 148	0.0021044890548721574
GO:0051895: negative regulation of focal adhesion assembly	ACVRL1	activin A receptor type II-like 1	0.0019530649656913576
GO:0051895: negative regulation of focal adhesion assembly	APOD	apolipoprotein D	0.0026421423650420154
GO:0051895: negative regulation of focal adhesion assembly	PTEN	phosphatase and tensin homolog	1.611458580378196e-5
GO:0051895: negative regulation of focal adhesion assembly	THBS1	thrombospondin 1	-0.0010406856223369905
GO:0060836: lymphatic endothelial cell differentiation	ACVRL1	activin A receptor type II-like 1	0.0019446579522799548
GO:0060836: lymphatic endothelial cell differentiation	PROX1	prospero homeobox 1	0.0011217936513517404
GO:0060836: lymphatic endothelial cell differentiation	SOX18	SRY (sex determining region Y)-box 18	0.0012898134639850666
GO:0060840: artery development	ACVRL1	activin A receptor type II-like 1	0.001956180206963435
GO:0060840: artery development	GLI3	GLI family zinc finger 3	-0.002168766150195869
GO:0060840: artery development	SHH	sonic hedgehog	0.0006054598683210003
GO:0060841: venous blood vessel development	ACVRL1	activin A receptor type II-like 1	0.001955725836585586
GO:0061154: endothelial tube morphogenesis	ACVRL1	activin A receptor type II-like 1	0.0019468136600092445
GO:0061154: endothelial tube morphogenesis	CSNK2B	casein kinase 2, beta polypeptide	0.001531422641557579
GO:0061154: endothelial tube morphogenesis	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011698370345540073
GO:0061298: retina vasculature development in camera-type eye	ACVRL1	activin A receptor type II-like 1	0.0019461897695409874
GO:0061298: retina vasculature development in camera-type eye	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006476998418521944
GO:0061298: retina vasculature development in camera-type eye	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003609549333895537
GO:0061298: retina vasculature development in camera-type eye	ROM1	retinal outer segment membrane protein 1	0.002463912437196277
GO:0071560: cellular response to transforming growth factor beta stimulus	ACVRL1	activin A receptor type II-like 1	0.001926261397488942
GO:0071560: cellular response to transforming growth factor beta stimulus	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005316917174526751
GO:0071560: cellular response to transforming growth factor beta stimulus	COL1A1	collagen, type I, alpha 1	-0.0005185334556705552
GO:0071560: cellular response to transforming growth factor beta stimulus	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008498669779676423
GO:0071560: cellular response to transforming growth factor beta stimulus	HDAC2	histone deacetylase 2	-0.0011978096555682776
GO:0071560: cellular response to transforming growth factor beta stimulus	MEF2C	myocyte enhancer factor 2C	0.0009628080732897101
GO:0071560: cellular response to transforming growth factor beta stimulus	SFRP1	secreted frizzled-related protein 1	0.0012641309059244076
GO:0071560: cellular response to transforming growth factor beta stimulus	SOX9	SRY (sex determining region Y)-box 9	-0.0005131145359244438
GO:0071560: cellular response to transforming growth factor beta stimulus	STAR	steroidogenic acute regulatory protein	0.0008850365768218506
GO:0071560: cellular response to transforming growth factor beta stimulus	TGFB1	transforming growth factor, beta 1	-7.196941732189379e-5
GO:0071560: cellular response to transforming growth factor beta stimulus	TGFBR1	transforming growth factor, beta receptor 1	0.0003358247940326842
GO:0071560: cellular response to transforming growth factor beta stimulus	WNT4	wingless-type MMTV integration site family, member 4	-0.00024749006372700295
GO:0071560: cellular response to transforming growth factor beta stimulus	WNT5A	wingless-type MMTV integration site family, member 5A	-0.000660716169342785
GO:0071560: cellular response to transforming growth factor beta stimulus	WNT7A	wingless-type MMTV integration site family, member 7A	2.001657918172276e-5
GO:0071773: cellular response to BMP stimulus	ACVRL1	activin A receptor type II-like 1	0.0019469161414038603
GO:0071773: cellular response to BMP stimulus	BMP4	bone morphogenetic protein 4	-0.00032318660085560837
GO:0071773: cellular response to BMP stimulus	BMP7	bone morphogenetic protein 7	0.0008567249057354782
GO:0071773: cellular response to BMP stimulus	DLX5	distal-less homeobox 5	-0.0032879921595807262
GO:0071773: cellular response to BMP stimulus	GATA3	GATA binding protein 3	-3.994414584849446e-5
GO:0071773: cellular response to BMP stimulus	GATA6	GATA binding protein 6	-2.7734945931624594e-5
GO:0071773: cellular response to BMP stimulus	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006787436791520903
GO:0071773: cellular response to BMP stimulus	PHOX2B	paired-like homeobox 2b	0.0003906186163447779
GO:0071773: cellular response to BMP stimulus	SFRP1	secreted frizzled-related protein 1	0.001285631768528616
GO:2000279: negative regulation of DNA biosynthetic process	ACVRL1	activin A receptor type II-like 1	0.0019437890735744714
GO:2000279: negative regulation of DNA biosynthetic process	DACH1	dachshund family transcription factor 1	0.002089578808858502
GO:2000279: negative regulation of DNA biosynthetic process	DNAJC2	DnaJ (Hsp40) homolog, subfamily C, member 2	-0.0009839168760175266
GO:2000279: negative regulation of DNA biosynthetic process	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016054343281828436
GO:0006508: proteolysis	ADAM2	ADAM metallopeptidase domain 2	0.0008093986193826216
GO:0006508: proteolysis	AZU1	azurocidin 1	0.00019745919156090888
GO:0006508: proteolysis	C2	complement component 2	-0.00030323887282066687
GO:0006508: proteolysis	CHMP1A	charged multivesicular body protein 1A	-0.0007779082330697744
GO:0006508: proteolysis	CPA4	carboxypeptidase A4	-0.0006964846600072995
GO:0006508: proteolysis	CTSK	cathepsin K	-0.0003612139197387848
GO:0006508: proteolysis	CUL7	cullin 7	-0.00011845549940195504
GO:0006508: proteolysis	ESPL1	extra spindle pole bodies homolog 1 (S. cerevisiae)	0.000195705837781767
GO:0006508: proteolysis	FAP	fibroblast activation protein, alpha	-0.00048527449866830815
GO:0006508: proteolysis	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.00031457450643210353
GO:0006508: proteolysis	HPN	hepsin	0.0031517195395803247
GO:0006508: proteolysis	KLK5	kallikrein-related peptidase 5	0.0017293365197943115
GO:0006508: proteolysis	KLK7	kallikrein-related peptidase 7	0.0016212867507967707
GO:0006508: proteolysis	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009299303650135816
GO:0006508: proteolysis	METAP1	methionyl aminopeptidase 1	-0.0010139925529321565
GO:0006508: proteolysis	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011276573466487817
GO:0006508: proteolysis	MMP20	matrix metallopeptidase 20	-0.0024265001319835307
GO:0006508: proteolysis	MMP24	matrix metallopeptidase 24 (membrane-inserted)	0.0014861614325918416
GO:0006508: proteolysis	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042455088285060473
GO:0006508: proteolysis	NAALADL1	N-acetylated alpha-linked acidic dipeptidase-like 1	-0.0010165593282607662
GO:0006508: proteolysis	NDEL1	nudE neurodevelopment protein 1-like 1	-0.0006025021567582327
GO:0006508: proteolysis	PCSK2	proprotein convertase subtilisin/kexin type 2	0.0006040018243175644
GO:0006508: proteolysis	PGC	progastricsin (pepsinogen C)	0.0013209284413645665
GO:0006508: proteolysis	RELN	reelin	0.0015327924562527377
GO:0006508: proteolysis	SFRP1	secreted frizzled-related protein 1	0.001276529113746402
GO:0007155: cell adhesion	ADAM2	ADAM metallopeptidase domain 2	0.0008104134556117924
GO:0007155: cell adhesion	APC	adenomatous polyposis coli	0.0006434239199560312
GO:0007155: cell adhesion	CCL2	chemokine (C-C motif) ligand 2	0.0008159160900474177
GO:0007155: cell adhesion	CD22	CD22 molecule	0.0008367696149558015
GO:0007155: cell adhesion	CD9	CD9 molecule	-0.0025837983727500682
GO:0007155: cell adhesion	CDH2	cadherin 2, type 1, N-cadherin (neuronal)	-0.0006440520366830428
GO:0007155: cell adhesion	CDH3	cadherin 3, type 1, P-cadherin (placental)	-0.0012296514424777669
GO:0007155: cell adhesion	CIB1	calcium and integrin binding 1 (calmyrin)	5.483415768749749e-5
GO:0007155: cell adhesion	COL5A1	collagen, type V, alpha 1	-4.900339602575946e-5
GO:0007155: cell adhesion	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.312030252776047e-5
GO:0007155: cell adhesion	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011686020462413972
GO:0007155: cell adhesion	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021146751004839084
GO:0007155: cell adhesion	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.000856317316241553
GO:0007155: cell adhesion	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012072606720679275
GO:0007155: cell adhesion	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003974579536730011
GO:0007155: cell adhesion	DSC2	desmocollin 2	0.00046989499160073116
GO:0007155: cell adhesion	DSG2	desmoglein 2	1.680558590932099e-5
GO:0007155: cell adhesion	EFS	embryonal Fyn-associated substrate	0.003904907051297462
GO:0007155: cell adhesion	ENG	endoglin	0.0008255748753880441
GO:0007155: cell adhesion	FAP	fibroblast activation protein, alpha	-0.0004868353053095092
GO:0007155: cell adhesion	GRHL2	grainyhead-like 2 (Drosophila)	0.0010059665278473015
GO:0007155: cell adhesion	HES1	hes family bHLH transcription factor 1	-0.0009101116586829482
GO:0007155: cell adhesion	ICAM1	intercellular adhesion molecule 1	0.0007288206912410559
GO:0007155: cell adhesion	ITGB4	integrin, beta 4	0.0005795781480714004
GO:0007155: cell adhesion	LAMB2	laminin, beta 2 (laminin S)	-0.0013077434196658696
GO:0007155: cell adhesion	MFGE8	milk fat globule-EGF factor 8 protein	0.0018029424111920078
GO:0007155: cell adhesion	MYH10	myosin, heavy chain 10, non-muscle	-0.0003286954998104903
GO:0007155: cell adhesion	PRKCA	protein kinase C, alpha	-5.862354995876396e-6
GO:0007155: cell adhesion	PRKX	protein kinase, X-linked	0.0003942252178756827
GO:0007155: cell adhesion	PTK7	protein tyrosine kinase 7	-0.00022510246975984062
GO:0007155: cell adhesion	RELN	reelin	0.0015356399567435888
GO:0007155: cell adhesion	ROBO1	roundabout, axon guidance receptor, homolog 1 (Drosophila)	-0.002245569196689938
GO:0007155: cell adhesion	ROM1	retinal outer segment membrane protein 1	0.002458616143535572
GO:0007155: cell adhesion	SELPLG	selectin P ligand	0.00028658804116511125
GO:0007155: cell adhesion	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0018981817539297052
GO:0007155: cell adhesion	THBS1	thrombospondin 1	-0.0010349187003224822
GO:0007155: cell adhesion	TNC	tenascin C	0.0007335921996569869
GO:0007338: single fertilization	ADAM2	ADAM metallopeptidase domain 2	0.0008170994606222088
GO:0007338: single fertilization	CD9	CD9 molecule	-0.0026086310294060446
GO:0007338: single fertilization	HOXA10	homeobox A10	-0.0030081021179170003
GO:0007338: single fertilization	MFGE8	milk fat globule-EGF factor 8 protein	0.0018223137848137063
GO:0007338: single fertilization	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0019147568464803434
GO:0007339: binding of sperm to zona pellucida	ADAM2	ADAM metallopeptidase domain 2	0.0008052193631786533
GO:0007339: binding of sperm to zona pellucida	CRISP1	cysteine-rich secretory protein 1	9.152250557947098e-5
GO:0007339: binding of sperm to zona pellucida	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0018833847731023396
GO:0007342: fusion of sperm to egg plasma membrane	ADAM2	ADAM metallopeptidase domain 2	0.0008106749459156303
GO:0007342: fusion of sperm to egg plasma membrane	CD9	CD9 molecule	-0.002584966462837272
GO:0007342: fusion of sperm to egg plasma membrane	CRISP1	cysteine-rich secretory protein 1	9.054040874410062e-5
GO:0007342: fusion of sperm to egg plasma membrane	ROPN1B	rhophilin associated tail protein 1B	0.0005975338370428853
GO:0007342: fusion of sperm to egg plasma membrane	SERPINA5	serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5	-0.0007106164040647406
GO:0007342: fusion of sperm to egg plasma membrane	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0018989810548254598
GO:0007342: fusion of sperm to egg plasma membrane	TPST2	tyrosylprotein sulfotransferase 2	0.000713211002268466
GO:0008542: visual learning	ADAM2	ADAM metallopeptidase domain 2	0.0008098189728719651
GO:0008542: visual learning	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007769835682629719
GO:0008542: visual learning	DRD2	dopamine receptor D2	-0.00023370452311025197
GO:0008542: visual learning	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006456804283043311
GO:0008542: visual learning	HTT	huntingtin	-0.0009699089190292244
GO:0008542: visual learning	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002421652659501486
GO:0008542: visual learning	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002734956918947966
GO:0008542: visual learning	RGS14	regulator of G-protein signaling 14	-0.0015801695865237547
GO:0030534: adult behavior	ADAM2	ADAM metallopeptidase domain 2	0.0007804693401182157
GO:0030534: adult behavior	BBS4	Bardet-Biedl syndrome 4	-0.0004923309987886045
GO:0030534: adult behavior	PTEN	phosphatase and tensin homolog	3.0920466977540724e-5
GO:0032504: multicellular organism reproduction	ADAM2	ADAM metallopeptidase domain 2	0.0008149650517966661
GO:0032504: multicellular organism reproduction	CD9	CD9 molecule	-0.002599742537263737
GO:0032504: multicellular organism reproduction	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0019088849472196892
KEGG:05162: Measles	ADAR	adenosine deaminase, RNA-specific	-0.00013671288826628793
KEGG:05162: Measles	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007287490684174981
KEGG:05162: Measles	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006246655082449751
KEGG:05162: Measles	CCND1	cyclin D1	-0.002625302582796288
KEGG:05162: Measles	CCNE1	cyclin E1	0.0003695413706937552
KEGG:05162: Measles	CCNE2	cyclin E2	0.0011036413978699484
KEGG:05162: Measles	CLEC4M	C-type lectin domain family 4, member M	-0.0013869551595511627
KEGG:05162: Measles	CSNK2B	casein kinase 2, beta polypeptide	0.00152461196435286
KEGG:05162: Measles	FAS	Fas cell surface death receptor	-3.3219924775461654e-5
KEGG:05162: Measles	GSK3B	glycogen synthase kinase 3 beta	0.0015454716412320675
KEGG:05162: Measles	HSPA2	heat shock 70kDa protein 2	-0.00010593951113440434
KEGG:05162: Measles	IFNA2	interferon, alpha 2	-0.0017133409832278796
KEGG:05162: Measles	IFNG	interferon, gamma	-4.891538804258332e-5
KEGG:05162: Measles	IL12B	interleukin 12B	0.0012745687353103077
KEGG:05162: Measles	IL4	interleukin 4	0.0002594344589440292
KEGG:05162: Measles	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016049587936455287
KEGG:05162: Measles	IRF7	interferon regulatory factor 7	-0.0013038436638979835
KEGG:05162: Measles	JAK2	Janus kinase 2	-3.222539521968383e-5
KEGG:05162: Measles	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007789979071440774
KEGG:05162: Measles	RCHY1	ring finger and CHY zinc finger domain containing 1, E3 ubiquitin protein ligase	-0.0010955495125526658
KEGG:05162: Measles	STAT5A	signal transducer and activator of transcription 5A	0.0015927895010371636
KEGG:05162: Measles	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.001113832016067203
KEGG:05162: Measles	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.0003169462356798845
KEGG:05162: Measles	TP53	tumor protein p53	0.001172247597064773
KEGG:05162: Measles	TP73	tumor protein p73	0.0010255305142626684
KEGG:05164: Influenza A	ADAR	adenosine deaminase, RNA-specific	-0.00013830670650294915
KEGG:05164: Influenza A	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007154224829440939
KEGG:05164: Influenza A	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006175307562999019
KEGG:05164: Influenza A	CCL2	chemokine (C-C motif) ligand 2	0.0008002299402729659
KEGG:05164: Influenza A	CXCL10	chemokine (C-X-C motif) ligand 10	5.592860593354279e-5
KEGG:05164: Influenza A	DNAJB1	DnaJ (Hsp40) homolog, subfamily B, member 1	-0.00023376499030068983
KEGG:05164: Influenza A	FAS	Fas cell surface death receptor	-3.269710544663394e-5
KEGG:05164: Influenza A	GSK3B	glycogen synthase kinase 3 beta	0.0015211235210667035
KEGG:05164: Influenza A	HSPA2	heat shock 70kDa protein 2	-9.445156633811798e-5
KEGG:05164: Influenza A	ICAM1	intercellular adhesion molecule 1	0.0007222394142386342
KEGG:05164: Influenza A	IFNA2	interferon, alpha 2	-0.0016872938024025943
KEGG:05164: Influenza A	IFNG	interferon, gamma	-4.922826925518971e-5
KEGG:05164: Influenza A	IL12B	interleukin 12B	0.001259705431703424
KEGG:05164: Influenza A	IRF7	interferon regulatory factor 7	-0.001285542530534448
KEGG:05164: Influenza A	JAK2	Janus kinase 2	-3.703844849291684e-5
KEGG:05164: Influenza A	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007666088691241039
KEGG:05164: Influenza A	PML	promyelocytic leukemia	-0.0006740708732245692
KEGG:05164: Influenza A	PRKCA	protein kinase C, alpha	-6.329865720102739e-6
KEGG:05164: Influenza A	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014722450759271893
KEGG:05164: Influenza A	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.0003167711052767094
KEGG:04623: Cytosolic DNA-sensing pathway	ADAR	adenosine deaminase, RNA-specific	-0.00013757563618133943
KEGG:04623: Cytosolic DNA-sensing pathway	CXCL10	chemokine (C-X-C motif) ligand 10	5.917567716376303e-5
KEGG:04623: Cytosolic DNA-sensing pathway	IFNA2	interferon, alpha 2	-0.0017025244418005943
KEGG:04623: Cytosolic DNA-sensing pathway	IRF7	interferon regulatory factor 7	-0.0012962997825249885
GO:0001649: osteoblast differentiation	ADAR	adenosine deaminase, RNA-specific	-0.0001364734564165747
GO:0001649: osteoblast differentiation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007310432064968361
GO:0001649: osteoblast differentiation	ASF1A	anti-silencing function 1A histone chaperone	0.001050646417952133
GO:0001649: osteoblast differentiation	BMP4	bone morphogenetic protein 4	-0.0003227616967355373
GO:0001649: osteoblast differentiation	COL1A1	collagen, type I, alpha 1	-0.000527002180921288
GO:0001649: osteoblast differentiation	DLX5	distal-less homeobox 5	-0.003284447664753776
GO:0001649: osteoblast differentiation	FBL	fibrillarin	-0.0002730574108555111
GO:0001649: osteoblast differentiation	GJA1	gap junction protein, alpha 1, 43kDa	-0.000162364913039476
GO:0001649: osteoblast differentiation	GLI1	GLI family zinc finger 1	-0.001297302490831756
GO:0001649: osteoblast differentiation	GLI2	GLI family zinc finger 2	0.0018543058393342192
GO:0001649: osteoblast differentiation	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011633178153449314
GO:0001649: osteoblast differentiation	IGFBP3	insulin-like growth factor binding protein 3	0.0008368225771456327
GO:0001649: osteoblast differentiation	IHH	indian hedgehog	-0.0020416422971991904
GO:0001649: osteoblast differentiation	LEF1	lymphoid enhancer-binding factor 1	-0.0001002677334069403
GO:0001649: osteoblast differentiation	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.00030861314152105037
GO:0001649: osteoblast differentiation	MEF2C	myocyte enhancer factor 2C	0.0009739339404381665
GO:0001649: osteoblast differentiation	SFRP1	secreted frizzled-related protein 1	0.0012832922784907616
GO:0001649: osteoblast differentiation	SMO	smoothened, frizzled class receptor	0.002140210255796619
GO:0001649: osteoblast differentiation	TNC	tenascin C	0.0007346243974645869
GO:0001649: osteoblast differentiation	TWIST1	twist family bHLH transcription factor 1	-0.001342324836723163
GO:0001649: osteoblast differentiation	WWTR1	WW domain containing transcription regulator 1	0.0009013842858677854
GO:0002244: hematopoietic progenitor cell differentiation	ADAR	adenosine deaminase, RNA-specific	-0.00013602220375612034
GO:0002244: hematopoietic progenitor cell differentiation	BMP4	bone morphogenetic protein 4	-0.00032074253230548376
GO:0002244: hematopoietic progenitor cell differentiation	INHBA	inhibin, beta A	-0.0013437987085223012
GO:0002244: hematopoietic progenitor cell differentiation	PLEK	pleckstrin	0.0009786768375722962
GO:0002244: hematopoietic progenitor cell differentiation	SFRP1	secreted frizzled-related protein 1	0.0012736910229649455
GO:0002244: hematopoietic progenitor cell differentiation	TGFB1	transforming growth factor, beta 1	-7.28502327419637e-5
GO:0002244: hematopoietic progenitor cell differentiation	TOP2A	topoisomerase (DNA) II alpha 170kDa	-8.170358880283545e-5
GO:0002566: somatic diversification of immune receptors via somatic mutation	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975768
GO:0006382: adenosine to inosine editing	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975768
GO:0006397: mRNA processing	ADAR	adenosine deaminase, RNA-specific	-0.0001368073612369946
GO:0006397: mRNA processing	JMJD6	jumonji domain containing 6	0.0036057524520759316
GO:0006397: mRNA processing	SF3B2	splicing factor 3b, subunit 2, 145kDa	0.0006868879876014883
GO:0006397: mRNA processing	ZPR1	ZPR1 zinc finger	-0.00021114347508795623
GO:0006606: protein import into nucleus	ADAR	adenosine deaminase, RNA-specific	-0.00013936023645948125
GO:0006606: protein import into nucleus	HTT	huntingtin	-0.0009425434904552678
GO:0006606: protein import into nucleus	KPNB1	karyopherin (importin) beta 1	0.0007528784128011067
GO:0006611: protein export from nucleus	ADAR	adenosine deaminase, RNA-specific	-0.0001367538017795678
GO:0006611: protein export from nucleus	EGR2	early growth response 2	0.0014334529998805965
GO:0006611: protein export from nucleus	GSK3B	glycogen synthase kinase 3 beta	0.0015447044502712778
GO:0006611: protein export from nucleus	TGFB1	transforming growth factor, beta 1	-7.245090681910449e-5
GO:0009615: response to virus	ADAR	adenosine deaminase, RNA-specific	-0.00013723254133641088
GO:0009615: response to virus	CCL8	chemokine (C-C motif) ligand 8	-0.0005850600306212145
GO:0009615: response to virus	CFL1	cofilin 1 (non-muscle)	-0.0011566900270993234
GO:0009615: response to virus	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0011902506244304703
GO:0009615: response to virus	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007819109697478867
GO:0009615: response to virus	GATA3	GATA binding protein 3	-3.6762809584126156e-5
GO:0009615: response to virus	HMGA1	high mobility group AT-hook 1	-0.0003154490730205801
GO:0009615: response to virus	HMGA2	high mobility group AT-hook 2	0.0014888663935048636
GO:0009615: response to virus	IFNG	interferon, gamma	-4.881796501282645e-5
GO:0009615: response to virus	IRF7	interferon regulatory factor 7	-0.001290264334461148
GO:0009615: response to virus	MEF2C	myocyte enhancer factor 2C	0.0009571999464746796
GO:0009615: response to virus	ODC1	ornithine decarboxylase 1	0.0008129549933178982
GO:0009615: response to virus	STMN1	stathmin 1	0.0005468524571078882
GO:0009615: response to virus	TBX21	T-box 21	0.0003947013980589758
GO:0010467: gene expression	ADAR	adenosine deaminase, RNA-specific	-0.00013715040135377264
GO:0010467: gene expression	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.001207413818874051
GO:0010467: gene expression	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000727950094718941
GO:0010467: gene expression	AR	androgen receptor	0.0026330799688653633
GO:0010467: gene expression	CCNC	cyclin C	0.0005647110472129119
GO:0010467: gene expression	CDC40	cell division cycle 40	0.0041535563082553675
GO:0010467: gene expression	CDK8	cyclin-dependent kinase 8	0.00260589467310986
GO:0010467: gene expression	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018302426117802644
GO:0010467: gene expression	DCP1A	decapping mRNA 1A	-0.0011889563362459147
GO:0010467: gene expression	DICER1	dicer 1, ribonuclease type III	-1.6280070019297326e-5
GO:0010467: gene expression	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023391103892031638
GO:0010467: gene expression	EDA	ectodysplasin A	-0.0008111067719026454
GO:0010467: gene expression	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.0007399557932371725
GO:0010467: gene expression	ESR1	estrogen receptor 1	-0.0009437023007935858
GO:0010467: gene expression	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.000138227025409417
GO:0010467: gene expression	HDAC2	histone deacetylase 2	-0.0012059666510790793
GO:0010467: gene expression	IGF2BP2	insulin-like growth factor 2 mRNA binding protein 2	-0.0009345954717638298
GO:0010467: gene expression	IGF2BP3	insulin-like growth factor 2 mRNA binding protein 3	-0.00038405624373259365
GO:0010467: gene expression	LARS2	leucyl-tRNA synthetase 2, mitochondrial	0.00046596367780559877
GO:0010467: gene expression	MED1	mediator complex subunit 1	0.0011243407578243002
GO:0010467: gene expression	MTERF1	mitochondrial transcription termination factor 1	0.00028563798065864857
GO:0010467: gene expression	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011346788857881209
GO:0010467: gene expression	NOTCH1	notch 1	0.0005167143356663514
GO:0010467: gene expression	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007994962327485636
GO:0010467: gene expression	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.0029674615020366573
GO:0010467: gene expression	NRBF2	nuclear receptor binding factor 2	-0.0009485175135698677
GO:0010467: gene expression	NUP153	nucleoporin 153kDa	0.000820670033469957
GO:0010467: gene expression	PGR	progesterone receptor	0.00035254807591750357
GO:0010467: gene expression	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018487785823618475
GO:0010467: gene expression	PRKCA	protein kinase C, alpha	-6.002875484826554e-6
GO:0010467: gene expression	PRKCD	protein kinase C, delta	-0.0011237942402427218
GO:0010467: gene expression	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.00033036532193111474
GO:0010467: gene expression	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010933626387221013
GO:0010467: gene expression	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.052002956505343e-5
GO:0010467: gene expression	PTEN	phosphatase and tensin homolog	1.872321330691128e-5
GO:0010467: gene expression	RARG	retinoic acid receptor, gamma	-0.0023127320494180413
GO:0010467: gene expression	RBBP4	retinoblastoma binding protein 4	-0.001858325761041682
GO:0010467: gene expression	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009794693242463478
GO:0010467: gene expression	RXRA	retinoid X receptor, alpha	0.001112146330090357
GO:0010467: gene expression	SEH1L	SEH1-like (S. cerevisiae)	-0.0007317701174542196
GO:0010467: gene expression	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011305298860409799
GO:0010467: gene expression	SF3B2	splicing factor 3b, subunit 2, 145kDa	0.0006811560016530257
GO:0010467: gene expression	SIRT1	sirtuin 1	-2.5139683459378233e-6
GO:0010467: gene expression	SKI	SKI proto-oncogene	-0.0006689666279757566
GO:0010467: gene expression	SMC1A	structural maintenance of chromosomes 1A	-0.0010173157563004766
GO:0010467: gene expression	SNRPB	small nuclear ribonucleoprotein polypeptides B and B1	0.0006619905665319625
GO:0010467: gene expression	TFDP1	transcription factor Dp-1	0.0014375611998349556
GO:0010467: gene expression	THRA	thyroid hormone receptor, alpha	0.0007613593629614998
GO:0010467: gene expression	THRB	thyroid hormone receptor, beta	0.0019392091276832666
GO:0010467: gene expression	TP53	tumor protein p53	0.0011701994104631075
GO:0010467: gene expression	TPR	translocated promoter region, nuclear basket protein	-0.0006954732631280883
GO:0010467: gene expression	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005629512267216585
GO:0010467: gene expression	WDR77	WD repeat domain 77	0.0001314474914996118
GO:0010467: gene expression	WWTR1	WW domain containing transcription regulator 1	0.0008953087042605958
GO:0010467: gene expression	YAP1	Yes-associated protein 1	-0.00016484178373847862
GO:0010467: gene expression	YBX1	Y box binding protein 1	-0.0009133835980316574
GO:0016553: base conversion or substitution editing	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975768
GO:0016556: mRNA modification	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975768
GO:0019221: cytokine-mediated signaling pathway	ADAR	adenosine deaminase, RNA-specific	-0.00013724565779600116
GO:0019221: cytokine-mediated signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.0008103532508516594
GO:0019221: cytokine-mediated signaling pathway	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-7.926335450691376e-5
GO:0019221: cytokine-mediated signaling pathway	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0020986239607392225
GO:0019221: cytokine-mediated signaling pathway	EGR1	early growth response 1	0.001085756195376155
GO:0019221: cytokine-mediated signaling pathway	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.0007371722881954916
GO:0019221: cytokine-mediated signaling pathway	FLT3	fms-related tyrosine kinase 3	-0.0006749201034360922
GO:0019221: cytokine-mediated signaling pathway	ICAM1	intercellular adhesion molecule 1	0.0007265161158796247
GO:0019221: cytokine-mediated signaling pathway	IFNA2	interferon, alpha 2	-0.001705710759405729
GO:0019221: cytokine-mediated signaling pathway	IFNG	interferon, gamma	-4.901533948544575e-5
GO:0019221: cytokine-mediated signaling pathway	IL12B	interleukin 12B	0.001270339482466138
GO:0019221: cytokine-mediated signaling pathway	IL20RA	interleukin 20 receptor, alpha	0.0001745455899941915
GO:0019221: cytokine-mediated signaling pathway	IL6ST	interleukin 6 signal transducer	0.0018646748087262468
GO:0019221: cytokine-mediated signaling pathway	IRF6	interferon regulatory factor 6	-0.0016815704969173598
GO:0019221: cytokine-mediated signaling pathway	IRF7	interferon regulatory factor 7	-0.0012985258191372685
GO:0019221: cytokine-mediated signaling pathway	JAK2	Janus kinase 2	-3.375622037933412e-5
GO:0019221: cytokine-mediated signaling pathway	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00026899525560018187
GO:0019221: cytokine-mediated signaling pathway	KPNA3	karyopherin alpha 3 (importin alpha 4)	-0.0008139575058525809
GO:0019221: cytokine-mediated signaling pathway	KPNB1	karyopherin (importin) beta 1	0.0007677265884137684
GO:0019221: cytokine-mediated signaling pathway	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009269519506827208
GO:0019221: cytokine-mediated signaling pathway	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022499782277308183
GO:0019221: cytokine-mediated signaling pathway	NUP153	nucleoporin 153kDa	0.0008163710379416998
GO:0019221: cytokine-mediated signaling pathway	PML	promyelocytic leukemia	-0.0006776433942854823
GO:0019221: cytokine-mediated signaling pathway	PRKCD	protein kinase C, delta	-0.001118748246483532
GO:0019221: cytokine-mediated signaling pathway	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.0010340136506469674
GO:0019221: cytokine-mediated signaling pathway	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.0003280394691560235
GO:0019221: cytokine-mediated signaling pathway	SEH1L	SEH1-like (S. cerevisiae)	-0.0007295901577404031
GO:0019221: cytokine-mediated signaling pathway	TPR	translocated promoter region, nuclear basket protein	-0.0006930224021055796
GO:0030218: erythrocyte differentiation	ADAR	adenosine deaminase, RNA-specific	-0.00013700878779790158
GO:0030218: erythrocyte differentiation	BMP4	bone morphogenetic protein 4	-0.0003172322672196643
GO:0030218: erythrocyte differentiation	GATA3	GATA binding protein 3	-3.6329090109909095e-5
GO:0030218: erythrocyte differentiation	HIPK2	homeodomain interacting protein kinase 2	0.0007597017919034307
GO:0030218: erythrocyte differentiation	INHA	inhibin, alpha	0.00021091052704461384
GO:0030218: erythrocyte differentiation	INHBA	inhibin, beta A	-0.0013218216895317584
GO:0030218: erythrocyte differentiation	JAK2	Janus kinase 2	-3.458261394232062e-5
GO:0030218: erythrocyte differentiation	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00026441402624056585
GO:0030218: erythrocyte differentiation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001397535021832336
GO:0030218: erythrocyte differentiation	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.00032479907528572846
GO:0030218: erythrocyte differentiation	THRA	thyroid hormone receptor, alpha	0.0007511726389885194
GO:0031054: pre-miRNA processing	ADAR	adenosine deaminase, RNA-specific	-0.00013651359162606525
GO:0031054: pre-miRNA processing	DICER1	dicer 1, ribonuclease type III	-3.720827120463237e-5
GO:0035280: miRNA loading onto RISC involved in gene silencing by miRNA	ADAR	adenosine deaminase, RNA-specific	-0.00013651359162606525
GO:0035280: miRNA loading onto RISC involved in gene silencing by miRNA	DICER1	dicer 1, ribonuclease type III	-3.720827120463237e-5
GO:0035455: response to interferon-alpha	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975768
GO:0043066: negative regulation of apoptotic process	ADAR	adenosine deaminase, RNA-specific	-0.0001365630742551134
GO:0043066: negative regulation of apoptotic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000731883291528895
GO:0043066: negative regulation of apoptotic process	ALOX12	arachidonate 12-lipoxygenase	-0.0019565985768180473
GO:0043066: negative regulation of apoptotic process	ANGPT1	angiopoietin 1	0.000901913249264795
GO:0043066: negative regulation of apoptotic process	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014349478609823755
GO:0043066: negative regulation of apoptotic process	ASIC2	acid-sensing (proton-gated) ion channel 2	0.002283008604438187
GO:0043066: negative regulation of apoptotic process	ATF5	activating transcription factor 5	-0.002739075703281902
GO:0043066: negative regulation of apoptotic process	AURKA	aurora kinase A	0.0010097033297251838
GO:0043066: negative regulation of apoptotic process	AVP	arginine vasopressin	-0.0009390430798288732
GO:0043066: negative regulation of apoptotic process	AZU1	azurocidin 1	0.00019823895219863474
GO:0043066: negative regulation of apoptotic process	BARD1	BRCA1 associated RING domain 1	0.001746074914910911
GO:0043066: negative regulation of apoptotic process	BCL2	B-cell CLL/lymphoma 2	-4.9644595108467225e-6
GO:0043066: negative regulation of apoptotic process	BFAR	bifunctional apoptosis regulator	-0.0003708538608130189
GO:0043066: negative regulation of apoptotic process	BIRC5	baculoviral IAP repeat containing 5	-0.0002604841018292546
GO:0043066: negative regulation of apoptotic process	BMP4	bone morphogenetic protein 4	-0.00032307350129527005
GO:0043066: negative regulation of apoptotic process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029171569464630197
GO:0043066: negative regulation of apoptotic process	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.7595337050133666e-5
GO:0043066: negative regulation of apoptotic process	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.0025917899344116116
GO:0043066: negative regulation of apoptotic process	CDK1	cyclin-dependent kinase 1	0.00031198844568769033
GO:0043066: negative regulation of apoptotic process	CFL1	cofilin 1 (non-muscle)	-0.0011770057379542306
GO:0043066: negative regulation of apoptotic process	CIB1	calcium and integrin binding 1 (calmyrin)	5.428636568646786e-5
GO:0043066: negative regulation of apoptotic process	CRYAA	crystallin, alpha A	-0.0006763605736025914
GO:0043066: negative regulation of apoptotic process	CRYAB	crystallin, alpha B	0.0009862795861388933
GO:0043066: negative regulation of apoptotic process	DHCR24	24-dehydrocholesterol reductase	-0.0017100981450029029
GO:0043066: negative regulation of apoptotic process	EGFR	epidermal growth factor receptor	0.0006872254158491333
GO:0043066: negative regulation of apoptotic process	EGR1	early growth response 1	0.0010946950640368601
GO:0043066: negative regulation of apoptotic process	EGR2	early growth response 2	0.0014416586602442338
GO:0043066: negative regulation of apoptotic process	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.0001836093411287874
GO:0043066: negative regulation of apoptotic process	FAS	Fas cell surface death receptor	-3.3344210576554394e-5
GO:0043066: negative regulation of apoptotic process	FOXE3	forkhead box E3	0.0010523252216038264
GO:0043066: negative regulation of apoptotic process	FOXO1	forkhead box O1	0.001802851928323926
GO:0043066: negative regulation of apoptotic process	GATA6	GATA binding protein 6	-2.8040580375928346e-5
GO:0043066: negative regulation of apoptotic process	GDNF	glial cell derived neurotrophic factor	0.00044527566529955603
GO:0043066: negative regulation of apoptotic process	GLI3	GLI family zinc finger 3	-0.0021552163228767004
GO:0043066: negative regulation of apoptotic process	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008291584871450941
GO:0043066: negative regulation of apoptotic process	GSK3B	glycogen synthase kinase 3 beta	0.0015515058164287817
GO:0043066: negative regulation of apoptotic process	GSTP1	glutathione S-transferase pi 1	0.00023224553744555243
GO:0043066: negative regulation of apoptotic process	HDAC2	histone deacetylase 2	-0.001208583881178543
GO:0043066: negative regulation of apoptotic process	HMGA2	high mobility group AT-hook 2	0.0015110520694431187
GO:0043066: negative regulation of apoptotic process	HPN	hepsin	0.003162522412723067
GO:0043066: negative regulation of apoptotic process	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013139275880914177
GO:0043066: negative regulation of apoptotic process	IGF1R	insulin-like growth factor 1 receptor	0.0010731641395217621
GO:0043066: negative regulation of apoptotic process	IHH	indian hedgehog	-0.0020438488343526903
GO:0043066: negative regulation of apoptotic process	IL4	interleukin 4	0.0002596022801489125
GO:0043066: negative regulation of apoptotic process	IL6ST	interleukin 6 signal transducer	0.0018780714790041753
GO:0043066: negative regulation of apoptotic process	IL7	interleukin 7	0.0008728000895207229
GO:0043066: negative regulation of apoptotic process	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016112547752552382
GO:0043066: negative regulation of apoptotic process	KIF14	kinesin family member 14	0.0004867689475413456
GO:0043066: negative regulation of apoptotic process	KRT18	keratin 18	-0.0010195674467358637
GO:0043066: negative regulation of apoptotic process	LEF1	lymphoid enhancer-binding factor 1	-0.0001002527347647613
GO:0043066: negative regulation of apoptotic process	LEP	leptin	0.003196334262655334
GO:0043066: negative regulation of apoptotic process	MAD2L1	MAD2 mitotic arrest deficient-like 1 (yeast)	0.0003193345155635913
GO:0043066: negative regulation of apoptotic process	MED1	mediator complex subunit 1	0.0011312947550757779
GO:0043066: negative regulation of apoptotic process	MSX1	msh homeobox 1	-0.0027736333043057028
GO:0043066: negative regulation of apoptotic process	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011379328297025267
GO:0043066: negative regulation of apoptotic process	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.0029790455491233115
GO:0043066: negative regulation of apoptotic process	PAX2	paired box 2	-0.0016167016540411855
GO:0043066: negative regulation of apoptotic process	PCNT	pericentrin	0.0017896678743523169
GO:0043066: negative regulation of apoptotic process	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036219737673812087
GO:0043066: negative regulation of apoptotic process	PHB2	prohibitin 2	-0.0007371100019244589
GO:0043066: negative regulation of apoptotic process	PLK1	polo-like kinase 1	0.001019609231091452
GO:0043066: negative regulation of apoptotic process	PLK3	polo-like kinase 3	0.0025676353844121015
GO:0043066: negative regulation of apoptotic process	PRKCZ	protein kinase C, zeta	-0.0016030255100953582
GO:0043066: negative regulation of apoptotic process	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018581700433447815
GO:0043066: negative regulation of apoptotic process	PRLR	prolactin receptor	0.0021863578755512317
GO:0043066: negative regulation of apoptotic process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.00033248937418795086
GO:0043066: negative regulation of apoptotic process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010961632989426233
GO:0043066: negative regulation of apoptotic process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-5.9517092312380836e-5
GO:0043066: negative regulation of apoptotic process	PTEN	phosphatase and tensin homolog	1.6727331316222478e-5
GO:0043066: negative regulation of apoptotic process	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0015010131652367293
GO:0043066: negative regulation of apoptotic process	RARG	retinoic acid receptor, gamma	-0.002322851327055254
GO:0043066: negative regulation of apoptotic process	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025176883886868008
GO:0043066: negative regulation of apoptotic process	SFRP1	secreted frizzled-related protein 1	0.001284674265733207
GO:0043066: negative regulation of apoptotic process	SHH	sonic hedgehog	0.0006011234781037241
GO:0043066: negative regulation of apoptotic process	SIRT1	sirtuin 1	-1.420505660900239e-6
GO:0043066: negative regulation of apoptotic process	SMO	smoothened, frizzled class receptor	0.002142486239564674
GO:0043066: negative regulation of apoptotic process	SOX10	SRY (sex determining region Y)-box 10	0.00019152662733506738
GO:0043066: negative regulation of apoptotic process	SOX9	SRY (sex determining region Y)-box 9	-0.0005194356866524714
GO:0043066: negative regulation of apoptotic process	SPHK1	sphingosine kinase 1	0.0018136181350504922
GO:0043066: negative regulation of apoptotic process	TBX3	T-box 3	0.0012276793959356829
GO:0043066: negative regulation of apoptotic process	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004804813256791421
GO:0043066: negative regulation of apoptotic process	THBS1	thrombospondin 1	-0.0010374064289076865
GO:0043066: negative regulation of apoptotic process	TMBIM6	transmembrane BAX inhibitor motif containing 6	-0.0001479160926199903
GO:0043066: negative regulation of apoptotic process	TP53	tumor protein p53	0.0011779338336137708
GO:0043066: negative regulation of apoptotic process	TWIST1	twist family bHLH transcription factor 1	-0.001343823919471357
GO:0043066: negative regulation of apoptotic process	VEGFA	vascular endothelial growth factor A	0.000596237996073393
GO:0043066: negative regulation of apoptotic process	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006685224561495119
GO:0043066: negative regulation of apoptotic process	WNT7A	wingless-type MMTV integration site family, member 7A	1.943165355538107e-5
GO:0043066: negative regulation of apoptotic process	WT1	Wilms tumor 1	-0.0005078466928052352
GO:0043066: negative regulation of apoptotic process	XBP1	X-box binding protein 1	0.0002674536241916082
GO:0044387: negative regulation of protein kinase activity by regulation of protein phosphorylation	ADAR	adenosine deaminase, RNA-specific	-0.0001417234038796654
GO:0044387: negative regulation of protein kinase activity by regulation of protein phosphorylation	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011148389451219032
GO:0045070: positive regulation of viral genome replication	ADAR	adenosine deaminase, RNA-specific	-0.0001274880638547348
GO:0045070: positive regulation of viral genome replication	TOP2A	topoisomerase (DNA) II alpha 170kDa	-0.00010353514325020859
GO:0045071: negative regulation of viral genome replication	ADAR	adenosine deaminase, RNA-specific	-0.00013782742167199415
GO:0045071: negative regulation of viral genome replication	PROX1	prospero homeobox 1	0.0011028137011656733
GO:0045087: innate immune response	ADAR	adenosine deaminase, RNA-specific	-0.00013690973890795728
GO:0045087: innate immune response	AGER	advanced glycosylation end product-specific receptor	-0.0001740899429819198
GO:0045087: innate immune response	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007291312940672268
GO:0045087: innate immune response	ANGPT1	angiopoietin 1	0.0008992085477490435
GO:0045087: innate immune response	BCL2	B-cell CLL/lymphoma 2	-4.639779174333808e-6
GO:0045087: innate immune response	C1QA	complement component 1, q subcomponent, A chain	0.0005413367481662141
GO:0045087: innate immune response	C2	complement component 2	-0.00030339289824776516
GO:0045087: innate immune response	C3	complement component 3	0.002020819095584042
GO:0045087: innate immune response	C8B	complement component 8, beta polypeptide	0.00023004215933241596
GO:0045087: innate immune response	C8G	complement component 8, gamma polypeptide	-0.0011927590870437685
GO:0045087: innate immune response	CDC42	cell division cycle 42	0.001238084975114221
GO:0045087: innate immune response	CFL1	cofilin 1 (non-muscle)	-0.0011725829120191702
GO:0045087: innate immune response	CLEC4M	C-type lectin domain family 4, member M	-0.0013876179810787329
GO:0045087: innate immune response	CREB1	cAMP responsive element binding protein 1	0.0006563420940543392
GO:0045087: innate immune response	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011721946459964423
GO:0045087: innate immune response	CTSK	cathepsin K	-0.000361040019284853
GO:0045087: innate immune response	DOCK1	dedicator of cytokinesis 1	-0.0006824929634463707
GO:0045087: innate immune response	EGFR	epidermal growth factor receptor	0.000683509963009918
GO:0045087: innate immune response	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018118034906298714
GO:0045087: innate immune response	FGF3	fibroblast growth factor 3	0.0015582032755426121
GO:0045087: innate immune response	FGF5	fibroblast growth factor 5	-0.00109202528346508
GO:0045087: innate immune response	FGF7	fibroblast growth factor 7	0.0006327941327195195
GO:0045087: innate immune response	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009816754327888501
GO:0045087: innate immune response	FGFR2	fibroblast growth factor receptor 2	0.0007614734031902963
GO:0045087: innate immune response	FGFR3	fibroblast growth factor receptor 3	0.00022228057360437935
GO:0045087: innate immune response	FOXO1	forkhead box O1	0.0017971524130897445
GO:0045087: innate immune response	FOXO3	forkhead box O3	0.0011976005448450793
GO:0045087: innate immune response	FRS2	fibroblast growth factor receptor substrate 2	0.0009277356986840538
GO:0045087: innate immune response	GATA3	GATA binding protein 3	-3.7500962696795217e-5
GO:0045087: innate immune response	GRB2	growth factor receptor-bound protein 2	0.0004290093160448253
GO:0045087: innate immune response	GSK3B	glycogen synthase kinase 3 beta	0.0015463276968181812
GO:0045087: innate immune response	HMGB1	high mobility group box 1	-0.0007758520969195586
GO:0045087: innate immune response	IFNA2	interferon, alpha 2	-0.0017142513169112919
GO:0045087: innate immune response	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016061162290777716
GO:0045087: innate immune response	IRF7	interferon regulatory factor 7	-0.0013043733289274458
GO:0045087: innate immune response	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007779355211256254
GO:0045087: innate immune response	JAK2	Janus kinase 2	-3.2508702579955004e-5
GO:0045087: innate immune response	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002728153371668144
GO:0045087: innate immune response	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.0003078166954871877
GO:0045087: innate immune response	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014182182717488384
GO:0045087: innate immune response	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.0003416941756319517
GO:0045087: innate immune response	MEF2C	myocyte enhancer factor 2C	0.0009711998910311988
GO:0045087: innate immune response	NCK1	NCK adaptor protein 1	-0.0007843203023177381
GO:0045087: innate immune response	PADI4	peptidyl arginine deiminase, type IV	-0.0008246749297307715
GO:0045087: innate immune response	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002183720061932082
GO:0045087: innate immune response	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.001257074335034778
GO:0045087: innate immune response	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003592167978966701
GO:0045087: innate immune response	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007793959194915436
GO:0045087: innate immune response	PML	promyelocytic leukemia	-0.0006796648975348974
GO:0045087: innate immune response	PRKCA	protein kinase C, alpha	-6.0148053017492625e-6
GO:0045087: innate immune response	PRKCD	protein kinase C, delta	-0.0011256273762663813
GO:0045087: innate immune response	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018530690548876857
GO:0045087: innate immune response	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.00033090049494130026
GO:0045087: innate immune response	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010939357184463598
GO:0045087: innate immune response	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.0146189128108204e-5
GO:0045087: innate immune response	PTEN	phosphatase and tensin homolog	1.798925006716651e-5
GO:0045087: innate immune response	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001496055178920178
GO:0045087: innate immune response	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003478400548403975
GO:0045087: innate immune response	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025100788340712003
GO:0045087: innate immune response	S100A7	S100 calcium binding protein A7	0.0015866887479776802
GO:0045087: innate immune response	S100B	S100 calcium binding protein B	0.005174118983814035
GO:0045087: innate immune response	SIRT2	sirtuin 2	-0.0008504675302753776
GO:0045087: innate immune response	SPTBN1	spectrin, beta, non-erythrocytic 1	0.001604419795168675
GO:0045087: innate immune response	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011142374994470713
GO:0051607: defense response to virus	ADAR	adenosine deaminase, RNA-specific	-0.00013737148453157115
GO:0051607: defense response to virus	AZU1	azurocidin 1	0.0001966168287949527
GO:0051607: defense response to virus	BCL2	B-cell CLL/lymphoma 2	-4.800103538771379e-6
GO:0051607: defense response to virus	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002889094167213788
GO:0051607: defense response to virus	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.756032665825806e-5
GO:0051607: defense response to virus	CXADR	coxsackie virus and adenovirus receptor	0.0004300434358580738
GO:0051607: defense response to virus	CXCL10	chemokine (C-X-C motif) ligand 10	5.969672685398555e-5
GO:0051607: defense response to virus	DICER1	dicer 1, ribonuclease type III	-1.654460379570796e-5
GO:0051607: defense response to virus	IFNA2	interferon, alpha 2	-0.001704552535092798
GO:0051607: defense response to virus	IFNG	interferon, gamma	-4.905082573239487e-5
GO:0051607: defense response to virus	IL12B	interleukin 12B	0.0012697272945275384
GO:0051607: defense response to virus	PML	promyelocytic leukemia	-0.0006775239138134024
GO:0060216: definitive hemopoiesis	ADAR	adenosine deaminase, RNA-specific	-0.0001386256656119202
GO:0060216: definitive hemopoiesis	GATA2	GATA binding protein 2	-0.0004230076722034793
GO:0060216: definitive hemopoiesis	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006264229801728783
GO:0060216: definitive hemopoiesis	ZFP36L2	ZFP36 ring finger protein-like 2	-0.000355547144514084
GO:0060337: type I interferon signaling pathway	ADAR	adenosine deaminase, RNA-specific	-0.00013739609887286966
GO:0060337: type I interferon signaling pathway	EGR1	early growth response 1	0.0010902037090911381
GO:0060337: type I interferon signaling pathway	IFNA2	interferon, alpha 2	-0.0017125996730817127
GO:0060337: type I interferon signaling pathway	IRF6	interferon regulatory factor 6	-0.0016882263485073633
GO:0060337: type I interferon signaling pathway	IRF7	interferon regulatory factor 7	-0.0013029546957386527
GO:0060337: type I interferon signaling pathway	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.0010385328019515672
GO:0060339: negative regulation of type I interferon-mediated signaling pathway	ADAR	adenosine deaminase, RNA-specific	-0.00014405564065521332
GO:0060339: negative regulation of type I interferon-mediated signaling pathway	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.00029882674182964435
GO:0061484: hematopoietic stem cell homeostasis	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975768
GO:1900369: negative regulation of RNA interference	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975768
GO:0006351: transcription, DNA-templated	ADIRF	adipogenesis regulatory factor	-0.00016756172091968025
GO:0006351: transcription, DNA-templated	AES	amino-terminal enhancer of split	0.0013577569053053594
GO:0006351: transcription, DNA-templated	APEX1	APEX nuclease (multifunctional DNA repair enzyme) 1	0.00020166743038709724
GO:0006351: transcription, DNA-templated	AR	androgen receptor	0.002646246582789122
GO:0006351: transcription, DNA-templated	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014379690025452753
GO:0006351: transcription, DNA-templated	ASF1A	anti-silencing function 1A histone chaperone	0.0010541688723845269
GO:0006351: transcription, DNA-templated	ATAD2	ATPase family, AAA domain containing 2	-4.6800766832629146e-5
GO:0006351: transcription, DNA-templated	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.000978970588526924
GO:0006351: transcription, DNA-templated	BIRC5	baculoviral IAP repeat containing 5	-0.00026071987662951656
GO:0006351: transcription, DNA-templated	BRD4	bromodomain containing 4	0.0005548722954290828
GO:0006351: transcription, DNA-templated	CASP8AP2	caspase 8 associated protein 2	0.0012777215111830391
GO:0006351: transcription, DNA-templated	CCNC	cyclin C	0.00056963990256222
GO:0006351: transcription, DNA-templated	CCND1	cyclin D1	-0.0026437378838172427
GO:0006351: transcription, DNA-templated	CDK8	cyclin-dependent kinase 8	0.0026206162386631098
GO:0006351: transcription, DNA-templated	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017650103453911998
GO:0006351: transcription, DNA-templated	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018417462822618972
GO:0006351: transcription, DNA-templated	CHAF1B	chromatin assembly factor 1, subunit B (p60)	0.006306137171951331
GO:0006351: transcription, DNA-templated	CHD3	chromodomain helicase DNA binding protein 3	0.00011887975520542729
GO:0006351: transcription, DNA-templated	CHMP1A	charged multivesicular body protein 1A	-0.0007825243721964977
GO:0006351: transcription, DNA-templated	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028283906085487726
GO:0006351: transcription, DNA-templated	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011719238664682531
GO:0006351: transcription, DNA-templated	DAXX	death-domain associated protein	0.0008952233162214327
GO:0006351: transcription, DNA-templated	DDX17	DEAD (Asp-Glu-Ala-Asp) box helicase 17	0.0017684564306945571
GO:0006351: transcription, DNA-templated	DNAJC2	DnaJ (Hsp40) homolog, subfamily C, member 2	-0.000986900211967874
GO:0006351: transcription, DNA-templated	E2F1	E2F transcription factor 1	0.0021050691276537107
GO:0006351: transcription, DNA-templated	E2F4	E2F transcription factor 4, p107/p130-binding	-0.002353315119857984
GO:0006351: transcription, DNA-templated	E2F6	E2F transcription factor 6	0.0007202667271313
GO:0006351: transcription, DNA-templated	E2F8	E2F transcription factor 8	0.0017162204414668018
GO:0006351: transcription, DNA-templated	E4F1	E4F transcription factor 1	0.0014855914032716603
GO:0006351: transcription, DNA-templated	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018432545847019103
GO:0006351: transcription, DNA-templated	ESR1	estrogen receptor 1	-0.000951786834163365
GO:0006351: transcription, DNA-templated	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010194748802169616
GO:0006351: transcription, DNA-templated	EYA1	EYA transcriptional coactivator and phosphatase 1	5.3591435563177894e-5
GO:0006351: transcription, DNA-templated	EYA3	EYA transcriptional coactivator and phosphatase 3	0.0008393394739330918
GO:0006351: transcription, DNA-templated	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013623578626891596
GO:0006351: transcription, DNA-templated	FOXM1	forkhead box M1	0.00019821275763450436
GO:0006351: transcription, DNA-templated	FOXO1	forkhead box O1	0.0018062678046832808
GO:0006351: transcription, DNA-templated	FOXO3	forkhead box O3	0.001204486769130432
GO:0006351: transcription, DNA-templated	GATA2	GATA binding protein 2	-0.0004534173767054065
GO:0006351: transcription, DNA-templated	GFI1	growth factor independent 1 transcription repressor	0.0016694925462020496
GO:0006351: transcription, DNA-templated	GLI1	GLI family zinc finger 1	-0.0013007656246102244
GO:0006351: transcription, DNA-templated	HDAC2	histone deacetylase 2	-0.0012105156916769363
GO:0006351: transcription, DNA-templated	HELLS	helicase, lymphoid-specific	0.003475868617673021
GO:0006351: transcription, DNA-templated	HES1	hes family bHLH transcription factor 1	-0.0009141658046763735
GO:0006351: transcription, DNA-templated	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015327641706974987
GO:0006351: transcription, DNA-templated	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.002709379298309546
GO:0006351: transcription, DNA-templated	HINFP	histone H4 transcription factor	0.0009959325316793038
GO:0006351: transcription, DNA-templated	HIPK2	homeodomain interacting protein kinase 2	0.0007731044956616214
GO:0006351: transcription, DNA-templated	HOXA3	homeobox A3	0.0009918027629435857
GO:0006351: transcription, DNA-templated	HOXB1	homeobox B1	0.0036978126034359023
GO:0006351: transcription, DNA-templated	HOXB13	homeobox B13	0.0018316255175505555
GO:0006351: transcription, DNA-templated	HOXB2	homeobox B2	0.0027820391586367067
GO:0006351: transcription, DNA-templated	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.00292724434682e-5
GO:0006351: transcription, DNA-templated	IRF6	interferon regulatory factor 6	-0.0016995131237588436
GO:0006351: transcription, DNA-templated	JMJD6	jumonji domain containing 6	0.003602321688515776
GO:0006351: transcription, DNA-templated	KANK1	KN motif and ankyrin repeat domains 1	0.0025423350294964233
GO:0006351: transcription, DNA-templated	KLF2	Kruppel-like factor 2	-0.0012354829826068453
GO:0006351: transcription, DNA-templated	KMT2B	lysine (K)-specific methyltransferase 2B	0.0004632856997464384
GO:0006351: transcription, DNA-templated	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00020011455246932126
GO:0006351: transcription, DNA-templated	LHX6	LIM homeobox 6	0.001349292479343373
GO:0006351: transcription, DNA-templated	MLLT10	myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10	-0.00016387801880077634
GO:0006351: transcription, DNA-templated	MLXIP	MLX interacting protein	0.0027297553060307398
GO:0006351: transcription, DNA-templated	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011399598187555905
GO:0006351: transcription, DNA-templated	NEUROD4	neuronal differentiation 4	0.0015115037634845412
GO:0006351: transcription, DNA-templated	NOC2L	nucleolar complex associated 2 homolog (S. cerevisiae)	-0.00015144586939234856
GO:0006351: transcription, DNA-templated	NPAT	nuclear protein, ataxia-telangiectasia locus	-0.0007116665604177843
GO:0006351: transcription, DNA-templated	NRIP1	nuclear receptor interacting protein 1	0.0010742903363907153
GO:0006351: transcription, DNA-templated	PADI4	peptidyl arginine deiminase, type IV	-0.0008298530598771135
GO:0006351: transcription, DNA-templated	PAX2	paired box 2	-0.0016200068037620415
GO:0006351: transcription, DNA-templated	PAX8	paired box 8	0.0009506601049226404
GO:0006351: transcription, DNA-templated	PER2	period circadian clock 2	0.0012424599014061403
GO:0006351: transcription, DNA-templated	PHB2	prohibitin 2	-0.0007384633744968914
GO:0006351: transcription, DNA-templated	PKN1	protein kinase N1	-0.0019094981210912747
GO:0006351: transcription, DNA-templated	PML	promyelocytic leukemia	-0.0006815997443380527
GO:0006351: transcription, DNA-templated	PPP1R13L	protein phosphatase 1, regulatory subunit 13 like	-0.0014789465380928752
GO:0006351: transcription, DNA-templated	PROX1	prospero homeobox 1	0.0011257513484109625
GO:0006351: transcription, DNA-templated	PURA	purine-rich element binding protein A	-0.00017128735392898036
GO:0006351: transcription, DNA-templated	RB1	retinoblastoma 1	-0.0014992189923968748
GO:0006351: transcription, DNA-templated	RBBP4	retinoblastoma binding protein 4	-0.0018653430843826356
GO:0006351: transcription, DNA-templated	RFC1	replication factor C (activator 1) 1, 145kDa	0.0010631081672241945
GO:0006351: transcription, DNA-templated	SALL1	spalt-like transcription factor 1	-0.0024474971628196136
GO:0006351: transcription, DNA-templated	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011211078648559606
GO:0006351: transcription, DNA-templated	SIRT1	sirtuin 1	-1.1689012488517802e-6
GO:0006351: transcription, DNA-templated	SIRT2	sirtuin 2	-0.0008553464471506223
GO:0006351: transcription, DNA-templated	SKI	SKI proto-oncogene	-0.0006724650641428496
GO:0006351: transcription, DNA-templated	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003468543206418333
GO:0006351: transcription, DNA-templated	SPDEF	SAM pointed domain containing ETS transcription factor	0.003146651632048522
GO:0006351: transcription, DNA-templated	STAT5A	signal transducer and activator of transcription 5A	0.0016015566768442433
GO:0006351: transcription, DNA-templated	TBX21	T-box 21	0.00039949044251085664
GO:0006351: transcription, DNA-templated	TBX3	T-box 3	0.0012296117248930623
GO:0006351: transcription, DNA-templated	TCF15	transcription factor 15 (basic helix-loop-helix)	-0.0026633036080798427
GO:0006351: transcription, DNA-templated	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.000576051457913259
GO:0006351: transcription, DNA-templated	TFCP2L1	transcription factor CP2-like 1	0.00045065901260167774
GO:0006351: transcription, DNA-templated	TFDP1	transcription factor Dp-1	0.0014509939541695938
GO:0006351: transcription, DNA-templated	THRB	thyroid hormone receptor, beta	0.0019501091583035246
GO:0006351: transcription, DNA-templated	TWIST1	twist family bHLH transcription factor 1	-0.0013467142954703027
GO:0006351: transcription, DNA-templated	TXLNG	taxilin gamma	-0.0008396131646636597
GO:0006351: transcription, DNA-templated	VPS72	vacuolar protein sorting 72 homolog (S. cerevisiae)	0.0005604743224801481
GO:0006351: transcription, DNA-templated	WWTR1	WW domain containing transcription regulator 1	0.0009044947774101581
GO:0006351: transcription, DNA-templated	YY1	YY1 transcription factor	0.0013454257525090125
GO:0006351: transcription, DNA-templated	ZBTB18	zinc finger and BTB domain containing 18	0.0012760552569729333
GO:0006351: transcription, DNA-templated	ZNF205	zinc finger protein 205	0.0005971545050382168
GO:0006351: transcription, DNA-templated	ZNF24	zinc finger protein 24	0.0012956758041332127
GO:0006351: transcription, DNA-templated	ZNF266	zinc finger protein 266	0.00041352832872410244
GO:0006351: transcription, DNA-templated	ZNF335	zinc finger protein 335	-0.0003658960954158359
GO:0006351: transcription, DNA-templated	ZNF442	zinc finger protein 442	0.001062123135048345
GO:0030154: cell differentiation	ADIRF	adipogenesis regulatory factor	-0.00016681887194860298
GO:0030154: cell differentiation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000730676154289761
GO:0030154: cell differentiation	ARHGAP24	Rho GTPase activating protein 24	-0.0009343006482775341
GO:0030154: cell differentiation	AXIN1	axin 1	-0.0007333463540473514
GO:0030154: cell differentiation	CPLX2	complexin 2	0.0020317533290723274
GO:0030154: cell differentiation	EDA	ectodysplasin A	-0.0008146890664469238
GO:0030154: cell differentiation	EDAR	ectodysplasin A receptor	0.0005936239813974117
GO:0030154: cell differentiation	EGFL6	EGF-like-domain, multiple 6	0.00013664267929056517
GO:0030154: cell differentiation	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011718001958474467
GO:0030154: cell differentiation	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010155851001721259
GO:0030154: cell differentiation	ETV4	ets variant 4	0.0001950350888332285
GO:0030154: cell differentiation	FOXA1	forkhead box A1	2.7263894893049776e-5
GO:0030154: cell differentiation	FOXA2	forkhead box A2	-1.660561017841756e-5
GO:0030154: cell differentiation	FOXC1	forkhead box C1	-2.185149261822635e-5
GO:0030154: cell differentiation	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017480670298103472
GO:0030154: cell differentiation	FOXE3	forkhead box E3	0.0010507447838200947
GO:0030154: cell differentiation	FOXH1	forkhead box H1	-0.0013714256138066293
GO:0030154: cell differentiation	FOXM1	forkhead box M1	0.00019748677887642337
GO:0030154: cell differentiation	FOXO1	forkhead box O1	0.0018001303307412372
GO:0030154: cell differentiation	FOXO3	forkhead box O3	0.0012001196054617592
GO:0030154: cell differentiation	GLRX2	glutaredoxin 2	0.0011160844527823412
GO:0030154: cell differentiation	INHA	inhibin, alpha	0.0002114755901390124
GO:0030154: cell differentiation	INHBA	inhibin, beta A	-0.0013534974399642859
GO:0030154: cell differentiation	JAG2	jagged 2	-5.6204673131129545e-6
GO:0030154: cell differentiation	JAK2	Janus kinase 2	-3.1521127972031774e-5
GO:0030154: cell differentiation	KIF2A	kinesin heavy chain member 2A	-0.0007843984089759793
GO:0030154: cell differentiation	MDK	midkine (neurite growth-promoting factor 2)	0.0016657587701324865
GO:0030154: cell differentiation	NDRG2	NDRG family member 2	0.0021741396950714746
GO:0030154: cell differentiation	NELL1	NEL-like 1 (chicken)	0.001532909851775621
GO:0030154: cell differentiation	PURA	purine-rich element binding protein A	-0.00017059292069549636
GO:0030154: cell differentiation	SLC7A5	solute carrier family 7 (amino acid transporter light chain, L system), member 5	-0.0025740751474991504
GO:0030154: cell differentiation	SPDEF	SAM pointed domain containing ETS transcription factor	0.00313637758982883
GO:0030154: cell differentiation	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006432281117309361
GO:0030154: cell differentiation	TP53	tumor protein p53	0.0011759806987857288
GO:0030154: cell differentiation	YY1	YY1 transcription factor	0.0013402815459465911
GO:0045600: positive regulation of fat cell differentiation	ADIRF	adipogenesis regulatory factor	-0.00016418273076696855
GO:0045600: positive regulation of fat cell differentiation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007232830270269223
GO:0045600: positive regulation of fat cell differentiation	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002710629310775028
GO:0045600: positive regulation of fat cell differentiation	CREB1	cAMP responsive element binding protein 1	0.0006504646253352422
GO:0045600: positive regulation of fat cell differentiation	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005203800227167742
GO:0045600: positive regulation of fat cell differentiation	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.035294622757791e-5
GO:0045600: positive regulation of fat cell differentiation	LRP5	low density lipoprotein receptor-related protein 5	3.1328768314817816e-5
GO:0045600: positive regulation of fat cell differentiation	SAV1	salvador family WW domain containing protein 1	-0.0023207872964762935
GO:0045600: positive regulation of fat cell differentiation	SFRP1	secreted frizzled-related protein 1	0.0012656508995616941
GO:0045600: positive regulation of fat cell differentiation	XBP1	X-box binding protein 1	0.00026508061877325773
GO:0071478: cellular response to radiation	ADIRF	adipogenesis regulatory factor	-0.000143535319369578
GO:0072719: cellular response to cisplatin	ADIRF	adipogenesis regulatory factor	-0.00016336318119645042
GO:0072719: cellular response to cisplatin	RAD51	RAD51 recombinase	-0.0018485930064056839
GO:0072719: cellular response to cisplatin	SLC31A1	solute carrier family 31 (copper transporter), member 1	-2.7586334276709384e-5
GO:2001023: regulation of response to drug	ADIRF	adipogenesis regulatory factor	-0.00016485569311122317
GO:2001023: regulation of response to drug	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014745183714208064
GO:0001570: vasculogenesis	ADM	adrenomedullin	0.002243407888577192
GO:0001570: vasculogenesis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005363896718525769
GO:0001570: vasculogenesis	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028263484797813794
GO:0001570: vasculogenesis	CUL7	cullin 7	-0.00011962825521386767
GO:0001570: vasculogenesis	ENG	endoglin	0.0008293706626310095
GO:0001570: vasculogenesis	FOXM1	forkhead box M1	0.00019753488647465252
GO:0001570: vasculogenesis	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.002706969051319108
GO:0001570: vasculogenesis	PITX2	paired-like homeodomain 2	0.0021820487507270476
GO:0001570: vasculogenesis	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003391328524076693
GO:0001570: vasculogenesis	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003499982278031427
GO:0001570: vasculogenesis	SHH	sonic hedgehog	0.0006020355406372964
GO:0001570: vasculogenesis	SMO	smoothened, frizzled class receptor	0.002144905640206821
GO:0001570: vasculogenesis	SOX18	SRY (sex determining region Y)-box 18	0.001291491009991138
GO:0001570: vasculogenesis	VEGFA	vascular endothelial growth factor A	0.0005968811974446955
GO:0001570: vasculogenesis	WT1	Wilms tumor 1	-0.0005086154486246666
GO:0001570: vasculogenesis	YAP1	Yes-associated protein 1	-0.0001647009720428757
GO:0001843: neural tube closure	ADM	adrenomedullin	0.0022446428940379585
GO:0001843: neural tube closure	ALX1	ALX homeobox 1	0.0022988626457801638
GO:0001843: neural tube closure	BBS4	Bardet-Biedl syndrome 4	-0.0005105909852871571
GO:0001843: neural tube closure	BMP4	bone morphogenetic protein 4	-0.0003235539416750295
GO:0001843: neural tube closure	FZD3	frizzled class receptor 3	0.0003804666054673862
GO:0001843: neural tube closure	GRHL2	grainyhead-like 2 (Drosophila)	0.001009523584328425
GO:0001843: neural tube closure	IFT122	intraflagellar transport 122 homolog (Chlamydomonas)	-0.0016152546694120252
GO:0001843: neural tube closure	LIAS	lipoic acid synthetase	-0.0005556733559023036
GO:0001843: neural tube closure	LMO4	LIM domain only 4	0.0021179655193401233
GO:0001843: neural tube closure	LRP6	low density lipoprotein receptor-related protein 6	0.00014996070998739777
GO:0001843: neural tube closure	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006657303506976001
GO:0001843: neural tube closure	PAX2	paired box 2	-0.001619523931669004
GO:0001843: neural tube closure	PAX3	paired box 3	-0.0029541363399052754
GO:0001843: neural tube closure	PHACTR4	phosphatase and actin regulator 4	-0.0017962713942500205
GO:0001843: neural tube closure	PTCH1	patched 1	-6.577755257534128e-5
GO:0001843: neural tube closure	RARG	retinoic acid receptor, gamma	-0.002326642724105532
GO:0001843: neural tube closure	SALL1	spalt-like transcription factor 1	-0.002446828641577958
GO:0001843: neural tube closure	SKI	SKI proto-oncogene	-0.0006723450428151532
GO:0001843: neural tube closure	TULP3	tubby like protein 3	0.0009591934635432488
GO:0001843: neural tube closure	TWIST1	twist family bHLH transcription factor 1	-0.0013463727262879623
GO:0002026: regulation of the force of heart contraction	ADM	adrenomedullin	0.002229946709411424
GO:0002026: regulation of the force of heart contraction	IFNG	interferon, gamma	-4.917862048942026e-5
GO:0002026: regulation of the force of heart contraction	PRKCA	protein kinase C, alpha	-6.130061387185226e-6
GO:0002031: G-protein coupled receptor internalization	ADM	adrenomedullin	0.002241989129939733
GO:0002031: G-protein coupled receptor internalization	DRD2	dopamine receptor D2	-0.00023435346128204235
GO:0006171: cAMP biosynthetic process	ADM	adrenomedullin	0.00225745601222835
GO:0006701: progesterone biosynthetic process	ADM	adrenomedullin	0.002247342140914186
GO:0006701: progesterone biosynthetic process	STAR	steroidogenic acute regulatory protein	0.0008989063754188102
GO:0007204: positive regulation of cytosolic calcium ion concentration	ADM	adrenomedullin	0.0022381957850353385
GO:0007204: positive regulation of cytosolic calcium ion concentration	AGTR1	angiotensin II receptor, type 1	0.00034695014327386115
GO:0007204: positive regulation of cytosolic calcium ion concentration	AVP	arginine vasopressin	-0.0009377923473621328
GO:0007204: positive regulation of cytosolic calcium ion concentration	CD24	CD24 molecule	0.0010723046314722057
GO:0007204: positive regulation of cytosolic calcium ion concentration	CXCL13	chemokine (C-X-C motif) ligand 13	0.002993858781088234
GO:0007204: positive regulation of cytosolic calcium ion concentration	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007952823600648646
GO:0007204: positive regulation of cytosolic calcium ion concentration	ESR1	estrogen receptor 1	-0.0009489711330357439
GO:0007204: positive regulation of cytosolic calcium ion concentration	GATA2	GATA binding protein 2	-0.00045219039679756707
GO:0007204: positive regulation of cytosolic calcium ion concentration	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016247681117484533
GO:0007204: positive regulation of cytosolic calcium ion concentration	HMGB1	high mobility group box 1	-0.0007759442251216437
GO:0007204: positive regulation of cytosolic calcium ion concentration	JAK2	Janus kinase 2	-3.1390599917225796e-5
GO:0007267: cell-cell signaling	ADM	adrenomedullin	0.002242158358743022
GO:0007267: cell-cell signaling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011363402136848185
GO:0007267: cell-cell signaling	AR	androgen receptor	0.002643287950150786
GO:0007267: cell-cell signaling	AREG	amphiregulin	0.002462287461729003
GO:0007267: cell-cell signaling	AVP	arginine vasopressin	-0.0009395884492577821
GO:0007267: cell-cell signaling	C1QA	complement component 1, q subcomponent, A chain	0.0005435188446500533
GO:0007267: cell-cell signaling	CCL7	chemokine (C-C motif) ligand 7	-0.0024068730976171122
GO:0007267: cell-cell signaling	CCL8	chemokine (C-C motif) ligand 8	-0.0005913692449657664
GO:0007267: cell-cell signaling	CXCL10	chemokine (C-X-C motif) ligand 10	6.277374234536358e-5
GO:0007267: cell-cell signaling	CXCL13	chemokine (C-X-C motif) ligand 13	0.0029995297624913412
GO:0007267: cell-cell signaling	EFNA1	ephrin-A1	-0.0005215606381449759
GO:0007267: cell-cell signaling	FGF3	fibroblast growth factor 3	0.0015642588656650514
GO:0007267: cell-cell signaling	FGF5	fibroblast growth factor 5	-0.0010961366567452282
GO:0007267: cell-cell signaling	FGFR2	fibroblast growth factor receptor 2	0.0007649176784101616
GO:0007267: cell-cell signaling	GATA4	GATA binding protein 4	-0.0010970487169320356
GO:0007267: cell-cell signaling	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016270092097271177
GO:0007267: cell-cell signaling	GRB2	growth factor receptor-bound protein 2	0.0004305622912941412
GO:0007267: cell-cell signaling	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008297992771028567
GO:0007267: cell-cell signaling	IFNA2	interferon, alpha 2	-0.0017207621844706868
GO:0007267: cell-cell signaling	IHH	indian hedgehog	-0.0020450571847204346
GO:0007267: cell-cell signaling	IL7	interleukin 7	0.0008733124452919572
GO:0007267: cell-cell signaling	INHA	inhibin, alpha	0.00021174228440315007
GO:0007267: cell-cell signaling	INHBA	inhibin, beta A	-0.001357039031019481
GO:0007267: cell-cell signaling	LHX1	LIM homeobox 1	-0.0007604609081624373
GO:0007267: cell-cell signaling	NRP1	neuropilin 1	-0.0006448268696486018
GO:0007267: cell-cell signaling	PGR	progesterone receptor	0.0003524729975177853
GO:0007267: cell-cell signaling	SHH	sonic hedgehog	0.0006015980003569589
GO:0007267: cell-cell signaling	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006447623364778301
GO:0007267: cell-cell signaling	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010633530740946512
GO:0007267: cell-cell signaling	TGFB2	transforming growth factor, beta 2	-0.0010619196890396965
GO:0007267: cell-cell signaling	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002781920361156966
GO:0007267: cell-cell signaling	WNT1	wingless-type MMTV integration site family, member 1	0.0007884694180261592
GO:0007507: heart development	ADM	adrenomedullin	0.0022403976541209686
GO:0007507: heart development	CRIP1	cysteine-rich protein 1 (intestinal)	0.0017234078132703314
GO:0007507: heart development	CXADR	coxsackie virus and adenovirus receptor	0.0004359879102501648
GO:0007507: heart development	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.0001836264204598171
GO:0007507: heart development	FOXC1	forkhead box C1	-2.1815688535006154e-5
GO:0007507: heart development	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017500887252007928
GO:0007507: heart development	GATA2	GATA binding protein 2	-0.00045234520014068516
GO:0007507: heart development	GATA3	GATA binding protein 3	-3.946625380090387e-5
GO:0007507: heart development	GJA1	gap junction protein, alpha 1, 43kDa	-0.0001624874359230032
GO:0007507: heart development	GLI2	GLI family zinc finger 2	0.0018556407034636827
GO:0007507: heart development	GLI3	GLI family zinc finger 3	-0.0021545456124907616
GO:0007507: heart development	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015270331732237136
GO:0007507: heart development	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.001401151210765048
GO:0007507: heart development	JMJD6	jumonji domain containing 6	0.003594750992138142
GO:0007507: heart development	MEF2C	myocyte enhancer factor 2C	0.0009746357047119453
GO:0007507: heart development	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006645436796725466
GO:0007507: heart development	NOTCH1	notch 1	0.0005195080009200776
GO:0007507: heart development	PAX3	paired box 3	-0.0029484446967786575
GO:0007507: heart development	PCNA	proliferating cell nuclear antigen	0.001228039162480632
GO:0007507: heart development	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018574484148168396
GO:0007507: heart development	PTEN	phosphatase and tensin homolog	1.6771831926168622e-5
GO:0007507: heart development	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003387748230284293
GO:0007507: heart development	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0015005038199883132
GO:0007507: heart development	SALL1	spalt-like transcription factor 1	-0.0024407948070585927
GO:0007507: heart development	SHH	sonic hedgehog	0.0006008317048758141
GO:0007507: heart development	SOX4	SRY (sex determining region Y)-box 4	-3.79785255396791e-5
GO:0007507: heart development	STRA6	stimulated by retinoic acid 6	-0.0016824461670900395
GO:0007507: heart development	TGFB2	transforming growth factor, beta 2	-0.001060737018336623
GO:0007507: heart development	TGFBR1	transforming growth factor, beta receptor 1	0.0003404305818267973
GO:0007507: heart development	TH	tyrosine hydroxylase	-0.0003423539449118163
GO:0007507: heart development	TRPS1	trichorhinophalangeal syndrome I	-0.0001783128055240679
GO:0007507: heart development	VLDLR	very low density lipoprotein receptor	0.0009544257474276608
GO:0007507: heart development	WT1	Wilms tumor 1	-0.00050759790695318
GO:0007565: female pregnancy	ADM	adrenomedullin	0.0022416185676936685
GO:0007565: female pregnancy	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011362942712785187
GO:0007565: female pregnancy	BCL2	B-cell CLL/lymphoma 2	-4.955976953356196e-6
GO:0007565: female pregnancy	EPN1	epsin 1	-0.0005480359649646313
GO:0007565: female pregnancy	IDO1	indoleamine 2,3-dioxygenase 1	0.0012283431506251443
GO:0007565: female pregnancy	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014538508354895393
GO:0007565: female pregnancy	IL4	interleukin 4	0.0002594868369637102
GO:0007565: female pregnancy	LEP	leptin	0.003197561759565936
GO:0007565: female pregnancy	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011664718794397928
GO:0007565: female pregnancy	MAPT	microtubule-associated protein tau	0.0015532975118281037
GO:0007565: female pregnancy	PSG4	pregnancy specific beta-1-glycoprotein 4	-0.00103286612383742
GO:0007565: female pregnancy	STAT5A	signal transducer and activator of transcription 5A	0.0015989561575371664
GO:0007565: female pregnancy	TFCP2L1	transcription factor CP2-like 1	0.00044994740645004346
GO:0007565: female pregnancy	TGFB1	transforming growth factor, beta 1	-7.329792419287207e-5
GO:0007565: female pregnancy	TGFB3	transforming growth factor, beta 3	-0.0018276610278966238
GO:0007568: aging	ADM	adrenomedullin	0.002243579445825091
GO:0007568: aging	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011377192141996972
GO:0007568: aging	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007328830645346385
GO:0007568: aging	ALOX12	arachidonate 12-lipoxygenase	-0.001958980650874001
GO:0007568: aging	APOD	apolipoprotein D	0.0026352863126499503
GO:0007568: aging	ASS1	argininosuccinate synthase 1	0.00014394037307516777
GO:0007568: aging	BAK1	BCL2-antagonist/killer 1	-0.0018808797564946187
GO:0007568: aging	CAST	calpastatin	-0.0030418683654578156
GO:0007568: aging	CCL2	chemokine (C-C motif) ligand 2	0.0008189559148773356
GO:0007568: aging	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018402570942091766
GO:0007568: aging	CRYAB	crystallin, alpha B	0.0009879638542821005
GO:0007568: aging	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021237696479168198
GO:0007568: aging	GLRX2	glutaredoxin 2	0.0011187928960393278
GO:0007568: aging	GPX1	glutathione peroxidase 1	0.0003877015074540646
GO:0007568: aging	GRB2	growth factor receptor-bound protein 2	0.0004307233932157077
GO:0007568: aging	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014553747740461202
GO:0007568: aging	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016131500405025614
GO:0007568: aging	KCNE2	potassium voltage-gated channel, Isk-related family, member 2	-0.0005766565756590681
GO:0007568: aging	KRT33B	keratin 33B	0.0009447727301874557
GO:0007568: aging	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004263936853100029
GO:0007568: aging	PAX2	paired box 2	-0.0016188877523914795
GO:0007568: aging	PTEN	phosphatase and tensin homolog	1.6239143543625372e-5
GO:0007568: aging	RXRA	retinoid X receptor, alpha	0.001117885166166965
GO:0007568: aging	TFRC	transferrin receptor	0.0010869358788891503
GO:0007568: aging	TGFB1	transforming growth factor, beta 1	-7.344736873760847e-5
GO:0007568: aging	TGFB3	transforming growth factor, beta 3	-0.0018296143229937806
GO:0007568: aging	TYMS	thymidylate synthetase	0.0015670155233409745
GO:0008209: androgen metabolic process	ADM	adrenomedullin	0.0022357531165483366
GO:0008209: androgen metabolic process	ESR1	estrogen receptor 1	-0.0009473512583995901
GO:0008209: androgen metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011616394572610336
GO:0008209: androgen metabolic process	SHH	sonic hedgehog	0.0005990696765356114
GO:0008209: androgen metabolic process	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006422839767221325
GO:0008284: positive regulation of cell proliferation	ADM	adrenomedullin	0.0022410950993080572
GO:0008284: positive regulation of cell proliferation	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003023371986411091
GO:0008284: positive regulation of cell proliferation	ALOX12	arachidonate 12-lipoxygenase	-0.001956588532168183
GO:0008284: positive regulation of cell proliferation	AR	androgen receptor	0.002641230267216912
GO:0008284: positive regulation of cell proliferation	AREG	amphiregulin	0.002460528247619106
GO:0008284: positive regulation of cell proliferation	AVP	arginine vasopressin	-0.0009391515786076596
GO:0008284: positive regulation of cell proliferation	BIRC5	baculoviral IAP repeat containing 5	-0.0002602362256852854
GO:0008284: positive regulation of cell proliferation	CDC20	cell division cycle 20	-0.00018835751784495355
GO:0008284: positive regulation of cell proliferation	CDC7	cell division cycle 7	-0.0006803484279616096
GO:0008284: positive regulation of cell proliferation	CIB1	calcium and integrin binding 1 (calmyrin)	5.403418133617722e-5
GO:0008284: positive regulation of cell proliferation	CST3	cystatin C	-7.092712328068057e-5
GO:0008284: positive regulation of cell proliferation	CXCL10	chemokine (C-X-C motif) ligand 10	6.31141822151596e-5
GO:0008284: positive regulation of cell proliferation	E2F3	E2F transcription factor 3	0.002165182273997929
GO:0008284: positive regulation of cell proliferation	EGFR	epidermal growth factor receptor	0.000687394550709466
GO:0008284: positive regulation of cell proliferation	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018389225564362309
GO:0008284: positive regulation of cell proliferation	FGF3	fibroblast growth factor 3	0.0015633065651605806
GO:0008284: positive regulation of cell proliferation	FGF5	fibroblast growth factor 5	-0.001095585008185022
GO:0008284: positive regulation of cell proliferation	FGF7	fibroblast growth factor 7	0.0006345221184297737
GO:0008284: positive regulation of cell proliferation	FGF8	fibroblast growth factor 8 (androgen-induced)	0.000985730356116512
GO:0008284: positive regulation of cell proliferation	FGFR2	fibroblast growth factor receptor 2	0.0007645573325409213
GO:0008284: positive regulation of cell proliferation	FGFR3	fibroblast growth factor receptor 3	0.00022307374408331074
GO:0008284: positive regulation of cell proliferation	FLT3	fms-related tyrosine kinase 3	-0.0006828990140541778
GO:0008284: positive regulation of cell proliferation	FOXM1	forkhead box M1	0.00019796836757311325
GO:0008284: positive regulation of cell proliferation	FZR1	fizzy/cell division cycle 20 related 1 (Drosophila)	0.000949656767051586
GO:0008284: positive regulation of cell proliferation	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.0024357318828497174
GO:0008284: positive regulation of cell proliferation	GDNF	glial cell derived neurotrophic factor	0.0004452054117077436
GO:0008284: positive regulation of cell proliferation	GLI1	GLI family zinc finger 1	-0.0012985550423469138
GO:0008284: positive regulation of cell proliferation	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008293204466775924
GO:0008284: positive regulation of cell proliferation	HDAC2	histone deacetylase 2	-0.0012082371845297465
GO:0008284: positive regulation of cell proliferation	HES1	hes family bHLH transcription factor 1	-0.0009123981761961904
GO:0008284: positive regulation of cell proliferation	HIPK2	homeodomain interacting protein kinase 2	0.000771708512786968
GO:0008284: positive regulation of cell proliferation	HOXA3	homeobox A3	0.0009900277491969953
GO:0008284: positive regulation of cell proliferation	IFNG	interferon, gamma	-4.887456997834816e-5
GO:0008284: positive regulation of cell proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013135316324580076
GO:0008284: positive regulation of cell proliferation	IGF1R	insulin-like growth factor 1 receptor	0.0010728707701114508
GO:0008284: positive regulation of cell proliferation	IL6ST	interleukin 6 signal transducer	0.0018777446167258076
GO:0008284: positive regulation of cell proliferation	IL7	interleukin 7	0.0008729160679010593
GO:0008284: positive regulation of cell proliferation	INSR	insulin receptor	-0.0013654856869018527
GO:0008284: positive regulation of cell proliferation	ISL1	ISL LIM homeobox 1	7.86717480732209e-5
GO:0008284: positive regulation of cell proliferation	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002430786766658753
GO:0008284: positive regulation of cell proliferation	JAK2	Janus kinase 2	-3.133823986738437e-5
GO:0008284: positive regulation of cell proliferation	KIF14	kinesin family member 14	0.0004869357289194404
GO:0008284: positive regulation of cell proliferation	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002760787871846932
GO:0008284: positive regulation of cell proliferation	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00019977270008911632
GO:0008284: positive regulation of cell proliferation	LEF1	lymphoid enhancer-binding factor 1	-0.00010029784314462708
GO:0008284: positive regulation of cell proliferation	LEP	leptin	0.0031963665156191172
GO:0008284: positive regulation of cell proliferation	LRP5	low density lipoprotein receptor-related protein 5	3.0206857642998007e-5
GO:0008284: positive regulation of cell proliferation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014224121197098163
GO:0008284: positive regulation of cell proliferation	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.0002911621625667214
GO:0008284: positive regulation of cell proliferation	MFGE8	milk fat globule-EGF factor 8 protein	0.0018078374057839493
GO:0008284: positive regulation of cell proliferation	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011376324669968014
GO:0008284: positive regulation of cell proliferation	NOTCH1	notch 1	0.0005197075762901451
GO:0008284: positive regulation of cell proliferation	ODC1	ornithine decarboxylase 1	0.0008268257255228951
GO:0008284: positive regulation of cell proliferation	PAX3	paired box 3	-0.00294934752184671
GO:0008284: positive regulation of cell proliferation	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036243941640569887
GO:0008284: positive regulation of cell proliferation	PDX1	pancreatic and duodenal homeobox 1	0.00025791783621007203
GO:0008284: positive regulation of cell proliferation	POU1F1	POU class 1 homeobox 1	0.00013769257418485398
GO:0008284: positive regulation of cell proliferation	PRC1	protein regulator of cytokinesis 1	0.0012311469731749354
GO:0008284: positive regulation of cell proliferation	PRKCZ	protein kinase C, zeta	-0.001602921517510408
GO:0008284: positive regulation of cell proliferation	PROX1	prospero homeobox 1	0.0011234164177144777
GO:0008284: positive regulation of cell proliferation	PTEN	phosphatase and tensin homolog	1.6580784823382132e-5
GO:0008284: positive regulation of cell proliferation	PTN	pleiotrophin	0.0003027089957155456
GO:0008284: positive regulation of cell proliferation	PURA	purine-rich element binding protein A	-0.00017096419545517544
GO:0008284: positive regulation of cell proliferation	RARG	retinoic acid receptor, gamma	-0.002322808048203533
GO:0008284: positive regulation of cell proliferation	RNF187	ring finger protein 187	-0.0022298669757898812
GO:0008284: positive regulation of cell proliferation	RPA1	replication protein A1, 70kDa	0.00044064174226367893
GO:0008284: positive regulation of cell proliferation	S100B	S100 calcium binding protein B	0.005193531837173986
GO:0008284: positive regulation of cell proliferation	SFRP1	secreted frizzled-related protein 1	0.0012851051968391035
GO:0008284: positive regulation of cell proliferation	SHH	sonic hedgehog	0.0006011691842453297
GO:0008284: positive regulation of cell proliferation	SHMT2	serine hydroxymethyltransferase 2 (mitochondrial)	-0.0010984777529084392
GO:0008284: positive regulation of cell proliferation	SIRT1	sirtuin 1	-1.3705262127160718e-6
GO:0008284: positive regulation of cell proliferation	SOX11	SRY (sex determining region Y)-box 11	-0.00020882667022459873
GO:0008284: positive regulation of cell proliferation	SOX4	SRY (sex determining region Y)-box 4	-3.782439076304103e-5
GO:0008284: positive regulation of cell proliferation	SOX9	SRY (sex determining region Y)-box 9	-0.0005192837332730818
GO:0008284: positive regulation of cell proliferation	STAMBP	STAM binding protein	-0.00017052582419290935
GO:0008284: positive regulation of cell proliferation	TBX3	T-box 3	0.0012274221775040338
GO:0008284: positive regulation of cell proliferation	TGFB1	transforming growth factor, beta 1	-7.329146074140695e-5
GO:0008284: positive regulation of cell proliferation	TGFB2	transforming growth factor, beta 2	-0.0010612035139734972
GO:0008284: positive regulation of cell proliferation	TGFBR1	transforming growth factor, beta receptor 1	0.0003406303055982046
GO:0008284: positive regulation of cell proliferation	TIPIN	TIMELESS interacting protein	-0.0005408522058055691
GO:0008284: positive regulation of cell proliferation	TNC	tenascin C	0.0007354561470014525
GO:0008284: positive regulation of cell proliferation	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002780359294954261
GO:0008284: positive regulation of cell proliferation	TTK	TTK protein kinase	0.001087920831025738
GO:0008284: positive regulation of cell proliferation	VEGFA	vascular endothelial growth factor A	0.0005964425569342986
GO:0008284: positive regulation of cell proliferation	VEGFC	vascular endothelial growth factor C	-0.003368988555231367
GO:0008284: positive regulation of cell proliferation	WDR77	WD repeat domain 77	0.00013368823951412977
GO:0008284: positive regulation of cell proliferation	WNT1	wingless-type MMTV integration site family, member 1	0.0007880109313703509
GO:0008284: positive regulation of cell proliferation	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013909401968136058
GO:0008284: positive regulation of cell proliferation	WWTR1	WW domain containing transcription regulator 1	0.0009025750375793533
GO:0008284: positive regulation of cell proliferation	YAP1	Yes-associated protein 1	-0.00016426358315464263
GO:0009409: response to cold	ADM	adrenomedullin	0.0022397904488824024
GO:0009409: response to cold	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011351167577243065
GO:0009409: response to cold	CXCL10	chemokine (C-X-C motif) ligand 10	6.310089253870721e-5
GO:0009409: response to cold	HSPA2	heat shock 70kDa protein 2	-0.00010820053490843702
GO:0009409: response to cold	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018739381381500837
GO:0009409: response to cold	THRA	thyroid hormone receptor, alpha	0.0007637331060292848
GO:0009611: response to wounding	ADM	adrenomedullin	0.002236324725947604
GO:0009611: response to wounding	AGER	advanced glycosylation end product-specific receptor	-0.0001742117748962842
GO:0009611: response to wounding	CCL2	chemokine (C-C motif) ligand 2	0.0008155802961288843
GO:0009611: response to wounding	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008561588554695824
GO:0009611: response to wounding	FGF7	fibroblast growth factor 7	0.0006335254785793173
GO:0009611: response to wounding	GAP43	growth associated protein 43	-0.00012961768262076693
GO:0009611: response to wounding	HOXB13	homeobox B13	0.001824699375745667
GO:0009611: response to wounding	ITGB4	integrin, beta 4	0.0005794066538673219
GO:0009611: response to wounding	MDK	midkine (neurite growth-promoting factor 2)	0.001662821949830098
GO:0009611: response to wounding	PAX6	paired box 6	0.0019339674064337209
GO:0009611: response to wounding	PDX1	pancreatic and duodenal homeobox 1	0.0002568946320263221
GO:0009611: response to wounding	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.003119516609261704
GO:0009611: response to wounding	TGFB1	transforming growth factor, beta 1	-7.261542628097538e-5
GO:0009611: response to wounding	TGFB2	transforming growth factor, beta 2	-0.0010585455482918814
GO:0009611: response to wounding	TNC	tenascin C	0.0007340740888897682
GO:0009611: response to wounding	VASH1	vasohibin 1	0.0005983295308603421
GO:0009611: response to wounding	WNT1	wingless-type MMTV integration site family, member 1	0.0007865486151669951
GO:0010460: positive regulation of heart rate	ADM	adrenomedullin	0.0022598983240230885
GO:0010460: positive regulation of heart rate	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0027315168276008145
GO:0010460: positive regulation of heart rate	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0009115214102514166
GO:0019731: antibacterial humoral response	ADM	adrenomedullin	0.00225745601222835
GO:0019933: cAMP-mediated signaling	ADM	adrenomedullin	0.0022353920621425417
GO:0019933: cAMP-mediated signaling	EPHA5	EPH receptor A5	0.0005981340292903153
GO:0019933: cAMP-mediated signaling	SOX9	SRY (sex determining region Y)-box 9	-0.0005187964341177325
GO:0030819: positive regulation of cAMP biosynthetic process	ADM	adrenomedullin	0.002248669088808721
GO:0030819: positive regulation of cAMP biosynthetic process	AVP	arginine vasopressin	-0.0009429485082957507
GO:0031100: organ regeneration	ADM	adrenomedullin	0.00224590428792116
GO:0031100: organ regeneration	BAK1	BCL2-antagonist/killer 1	-0.0018825654073903215
GO:0031100: organ regeneration	CAST	calpastatin	-0.003045237234049008
GO:0031100: organ regeneration	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005366414608921819
GO:0031100: organ regeneration	CCL2	chemokine (C-C motif) ligand 2	0.0008201448042826111
GO:0031100: organ regeneration	CCND1	cyclin D1	-0.0026460934235707904
GO:0031100: organ regeneration	CCNE1	cyclin E1	0.00037361656676417873
GO:0031100: organ regeneration	CXCL12	chemokine (C-X-C motif) ligand 12	-0.001213591761001856
GO:0031100: organ regeneration	LEF1	lymphoid enhancer-binding factor 1	-0.00010032116575230761
GO:0031100: organ regeneration	MED1	mediator complex subunit 1	0.0011347722602584721
GO:0031100: organ regeneration	MKI67	marker of proliferation Ki-67	0.001578857086871128
GO:0031100: organ regeneration	NOTCH1	notch 1	0.0005211581069085077
GO:0031100: organ regeneration	PDX1	pancreatic and duodenal homeobox 1	0.00025893995986892774
GO:0031100: organ regeneration	TGFB1	transforming growth factor, beta 1	-7.379122373448557e-5
GO:0031100: organ regeneration	TYMS	thymidylate synthetase	0.001569715464068976
GO:0031100: organ regeneration	WNT1	wingless-type MMTV integration site family, member 1	0.0007895807975310399
GO:0031102: neuron projection regeneration	ADM	adrenomedullin	0.00225745601222835
GO:0031623: receptor internalization	ADM	adrenomedullin	0.00224617625782106
GO:0031623: receptor internalization	GRB2	growth factor receptor-bound protein 2	0.00043168060687490833
GO:0031623: receptor internalization	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022725957418444037
GO:0032496: response to lipopolysaccharide	ADM	adrenomedullin	0.0022475306611521558
GO:0032496: response to lipopolysaccharide	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002749827394197019
GO:0032496: response to lipopolysaccharide	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028316184172729316
GO:0032496: response to lipopolysaccharide	CXCL13	chemokine (C-X-C motif) ligand 13	0.0030073685792690883
GO:0032496: response to lipopolysaccharide	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047436442124783817
GO:0032496: response to lipopolysaccharide	HDAC2	histone deacetylase 2	-0.0012109459890452515
GO:0032496: response to lipopolysaccharide	HMGB2	high mobility group box 2	0.00031142181429570285
GO:0032496: response to lipopolysaccharide	IDO1	indoleamine 2,3-dioxygenase 1	0.0012321117053351704
GO:0032496: response to lipopolysaccharide	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016163172384537731
GO:0032496: response to lipopolysaccharide	JAK2	Janus kinase 2	-3.0720347629982306e-5
GO:0032496: response to lipopolysaccharide	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011650656355459561
GO:0032496: response to lipopolysaccharide	LIAS	lipoic acid synthetase	-0.0005563796193691326
GO:0032496: response to lipopolysaccharide	NOTCH1	notch 1	0.0005213228839302016
GO:0032496: response to lipopolysaccharide	S100A14	S100 calcium binding protein A14	-0.002171255778808952
GO:0032496: response to lipopolysaccharide	S100A7	S100 calcium binding protein A7	0.0015981945312622552
GO:0032496: response to lipopolysaccharide	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004815641135286408
GO:0032496: response to lipopolysaccharide	TH	tyrosine hydroxylase	-0.00034304691041342304
GO:0032496: response to lipopolysaccharide	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002789346206407166
GO:0032868: response to insulin	ADM	adrenomedullin	0.002257130420739629
GO:0032868: response to insulin	AGRP	agouti related protein homolog (mouse)	-0.0025931567832848616
GO:0032868: response to insulin	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028453165501065303
GO:0032868: response to insulin	EGR2	early growth response 2	0.0014564520686788352
GO:0032868: response to insulin	GCNT1	glucosaminyl (N-acetyl) transferase 1, core 2	0.0007052307700962995
GO:0032868: response to insulin	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.0003151803611604783
GO:0032868: response to insulin	LEP	leptin	0.0032240763975226903
GO:0032868: response to insulin	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014327910398884236
GO:0032868: response to insulin	SIRT1	sirtuin 1	1.6888794087468145e-9
GO:0042475: odontogenesis of dentin-containing tooth	ADM	adrenomedullin	0.002237900733244427
GO:0042475: odontogenesis of dentin-containing tooth	BAX	BCL2-associated X protein	-0.00042534434938371074
GO:0042475: odontogenesis of dentin-containing tooth	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007749680304709944
GO:0042475: odontogenesis of dentin-containing tooth	BMP4	bone morphogenetic protein 4	-0.000322566050625265
GO:0042475: odontogenesis of dentin-containing tooth	BMP7	bone morphogenetic protein 7	0.0008558030048578338
GO:0042475: odontogenesis of dentin-containing tooth	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.0001170993721816479
GO:0042475: odontogenesis of dentin-containing tooth	EDA	ectodysplasin A	-0.00081441340572635
GO:0042475: odontogenesis of dentin-containing tooth	EDAR	ectodysplasin A receptor	0.0005940033102101942
GO:0042475: odontogenesis of dentin-containing tooth	FOXC1	forkhead box C1	-2.258048567095943e-5
GO:0042475: odontogenesis of dentin-containing tooth	GLI2	GLI family zinc finger 2	0.001853532447217152
GO:0042475: odontogenesis of dentin-containing tooth	GLI3	GLI family zinc finger 3	-0.0021512673548006837
GO:0042475: odontogenesis of dentin-containing tooth	HDAC2	histone deacetylase 2	-0.0012076448724121485
GO:0042475: odontogenesis of dentin-containing tooth	JAG2	jagged 2	-5.740313696177147e-6
GO:0042475: odontogenesis of dentin-containing tooth	LEF1	lymphoid enhancer-binding factor 1	-0.00010029132528500782
GO:0042475: odontogenesis of dentin-containing tooth	LRP6	low density lipoprotein receptor-related protein 6	0.00014937702630941018
GO:0042475: odontogenesis of dentin-containing tooth	MSX1	msh homeobox 1	-0.0027687545213464873
GO:0042475: odontogenesis of dentin-containing tooth	NF2	neurofibromin 2 (merlin)	-0.0012721457975192094
GO:0042475: odontogenesis of dentin-containing tooth	PITX2	paired-like homeodomain 2	0.002176081270647935
GO:0042475: odontogenesis of dentin-containing tooth	SHH	sonic hedgehog	0.0005998055592181084
GO:0042475: odontogenesis of dentin-containing tooth	SMO	smoothened, frizzled class receptor	0.0021392087362287976
GO:0042475: odontogenesis of dentin-containing tooth	SOSTDC1	sclerostin domain containing 1	-0.0015248043678562423
GO:0042594: response to starvation	ADM	adrenomedullin	0.0022490741292883676
GO:0042594: response to starvation	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010697342762814774
GO:0043065: positive regulation of apoptotic process	ADM	adrenomedullin	0.00224984713917659
GO:0043065: positive regulation of apoptotic process	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003035106711851988
GO:0043065: positive regulation of apoptotic process	APC	adenomatous polyposis coli	0.0006454770127754738
GO:0043065: positive regulation of apoptotic process	ARL6IP5	ADP-ribosylation factor-like 6 interacting protein 5	0.00016989518960989068
GO:0043065: positive regulation of apoptotic process	BAK1	BCL2-antagonist/killer 1	-0.0018861589047304047
GO:0043065: positive regulation of apoptotic process	BARD1	BRCA1 associated RING domain 1	0.0017548024382458183
GO:0043065: positive regulation of apoptotic process	BAX	BCL2-associated X protein	-0.00042692508516908184
GO:0043065: positive regulation of apoptotic process	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007779063600343187
GO:0043065: positive regulation of apoptotic process	BMP4	bone morphogenetic protein 4	-0.0003244372210473745
GO:0043065: positive regulation of apoptotic process	BMP7	bone morphogenetic protein 7	0.0008594945586820187
GO:0043065: positive regulation of apoptotic process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029296395185289723
GO:0043065: positive regulation of apoptotic process	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.759519515641875e-5
GO:0043065: positive regulation of apoptotic process	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.002602852291366281
GO:0043065: positive regulation of apoptotic process	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017700596267689458
GO:0043065: positive regulation of apoptotic process	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011699420714832124
GO:0043065: positive regulation of apoptotic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003993754843956997
GO:0043065: positive regulation of apoptotic process	DIABLO	diablo, IAP-binding mitochondrial protein	-0.0005983876797996909
GO:0043065: positive regulation of apoptotic process	ECT2	epithelial cell transforming 2	0.001068948107889175
GO:0043065: positive regulation of apoptotic process	EEF1A2	eukaryotic translation elongation factor 1 alpha 2	-0.001866123955417409
GO:0043065: positive regulation of apoptotic process	FAS	Fas cell surface death receptor	-3.349400984284592e-5
GO:0043065: positive regulation of apoptotic process	FOXO1	forkhead box O1	0.001809917847530766
GO:0043065: positive regulation of apoptotic process	HMGA2	high mobility group AT-hook 2	0.0015165756674686435
GO:0043065: positive regulation of apoptotic process	HMGB1	high mobility group box 1	-0.0007791148104959672
GO:0043065: positive regulation of apoptotic process	HOXA5	homeobox A5	0.0010732909370334905
GO:0043065: positive regulation of apoptotic process	IGFBP3	insulin-like growth factor binding protein 3	0.0008397833620326265
GO:0043065: positive regulation of apoptotic process	ITGA6	integrin, alpha 6	0.0016825155953329321
GO:0043065: positive regulation of apoptotic process	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024421811923970907
GO:0043065: positive regulation of apoptotic process	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006647765072681672
GO:0043065: positive regulation of apoptotic process	KLF11	Kruppel-like factor 11	0.0006228236785852956
GO:0043065: positive regulation of apoptotic process	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.00034480602709511095
GO:0043065: positive regulation of apoptotic process	MELK	maternal embryonic leucine zipper kinase	0.0020822691480673686
GO:0043065: positive regulation of apoptotic process	NOTCH1	notch 1	0.0005220117098999352
GO:0043065: positive regulation of apoptotic process	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018647529353817876
GO:0043065: positive regulation of apoptotic process	RARG	retinoic acid receptor, gamma	-0.0023319501212653642
GO:0043065: positive regulation of apoptotic process	RXRA	retinoid X receptor, alpha	0.0011209440490071174
GO:0043065: positive regulation of apoptotic process	S100B	S100 calcium binding protein B	0.005216725688016132
GO:0043065: positive regulation of apoptotic process	SAV1	salvador family WW domain containing protein 1	-0.002348211193288585
GO:0043065: positive regulation of apoptotic process	SFRP1	secreted frizzled-related protein 1	0.0012937941625074981
GO:0043065: positive regulation of apoptotic process	SHQ1	SHQ1, H/ACA ribonucleoprotein assembly factor	-0.00144300012592386
GO:0043065: positive regulation of apoptotic process	SIRT1	sirtuin 1	-6.269227723448789e-7
GO:0043065: positive regulation of apoptotic process	SLIT2	slit homolog 2 (Drosophila)	-0.0016302965686240567
GO:0043065: positive regulation of apoptotic process	SOX4	SRY (sex determining region Y)-box 4	-3.684691026260604e-5
GO:0043065: positive regulation of apoptotic process	SPDEF	SAM pointed domain containing ETS transcription factor	0.003151609414133947
GO:0043065: positive regulation of apoptotic process	STEAP3	STEAP family member 3, metalloreductase	0.0026225694808750897
GO:0043065: positive regulation of apoptotic process	TGFB1	transforming growth factor, beta 1	-7.391976541094108e-5
GO:0043065: positive regulation of apoptotic process	TGFB3	transforming growth factor, beta 3	-0.0018360272108781733
GO:0043065: positive regulation of apoptotic process	TGM2	transglutaminase 2	-0.00018249272792951108
GO:0043065: positive regulation of apoptotic process	TOP2A	topoisomerase (DNA) II alpha 170kDa	-8.027966129822983e-5
GO:0043065: positive regulation of apoptotic process	TP53	tumor protein p53	0.0011844081416860876
GO:0043065: positive regulation of apoptotic process	WNT10B	wingless-type MMTV integration site family, member 10B	-0.001397479739969257
GO:0043065: positive regulation of apoptotic process	WT1	Wilms tumor 1	-0.0005105571750694806
GO:0043116: negative regulation of vascular permeability	ADM	adrenomedullin	0.0022400606584065466
GO:0043116: negative regulation of vascular permeability	ANGPT1	angiopoietin 1	0.0009015850685944621
GO:0043116: negative regulation of vascular permeability	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.00033895407554470345
GO:0043116: negative regulation of vascular permeability	SLIT2	slit homolog 2 (Drosophila)	-0.0016217891238139062
GO:0045906: negative regulation of vasoconstriction	ADM	adrenomedullin	0.002266932607821473
GO:0045906: negative regulation of vasoconstriction	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.002151892754146459
GO:0045906: negative regulation of vasoconstriction	LEP	leptin	0.0032405431344564323
GO:0045909: positive regulation of vasodilation	ADM	adrenomedullin	0.002244362996869001
GO:0045909: positive regulation of vasodilation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011387460881769527
GO:0045909: positive regulation of vasodilation	ALOX12	arachidonate 12-lipoxygenase	-0.0019597816912600807
GO:0045909: positive regulation of vasodilation	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016429640094642575
GO:0045909: positive regulation of vasodilation	HMOX1	heme oxygenase (decycling) 1	-0.00021850438694969498
GO:0046879: hormone secretion	ADM	adrenomedullin	0.00225745601222835
GO:0048589: developmental growth	ADM	adrenomedullin	0.0022482873183828434
GO:0048589: developmental growth	ASPM	asp (abnormal spindle) homolog, microcephaly associated (Drosophila)	1.8428209697634623e-5
GO:0048589: developmental growth	GATA3	GATA binding protein 3	-4.186639102464009e-5
GO:0048589: developmental growth	GLI2	GLI family zinc finger 2	0.0018623475678098938
GO:0048589: developmental growth	GLI3	GLI family zinc finger 3	-0.0021647469411024594
GO:0048589: developmental growth	SOX10	SRY (sex determining region Y)-box 10	0.00019614568829672135
GO:0048589: developmental growth	STRA6	stimulated by retinoic acid 6	-0.0016890001525057098
GO:0048589: developmental growth	TYMS	thymidylate synthetase	0.0015724753015463396
GO:0050829: defense response to Gram-negative bacterium	ADM	adrenomedullin	0.0022295977012530507
GO:0050829: defense response to Gram-negative bacterium	AZU1	azurocidin 1	0.00019713893299272978
GO:0050829: defense response to Gram-negative bacterium	HMGB2	high mobility group box 2	0.0003034666997796718
GO:0050829: defense response to Gram-negative bacterium	IL12B	interleukin 12B	0.0012732256978753313
GO:0050829: defense response to Gram-negative bacterium	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042421958531606123
GO:0050829: defense response to Gram-negative bacterium	S100A7	S100 calcium binding protein A7	0.0015833155525608463
GO:0050829: defense response to Gram-negative bacterium	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011281464216740732
GO:0050830: defense response to Gram-positive bacterium	ADM	adrenomedullin	0.0022257491235514156
GO:0050830: defense response to Gram-positive bacterium	HMGB2	high mobility group box 2	0.0003023446602309774
GO:0050830: defense response to Gram-positive bacterium	IL27RA	interleukin 27 receptor, alpha	-0.0004817948427053053
GO:0050830: defense response to Gram-positive bacterium	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004238970287101604
GO:0050830: defense response to Gram-positive bacterium	SEH1L	SEH1-like (S. cerevisiae)	-0.000729047521512466
GO:0051384: response to glucocorticoid	ADM	adrenomedullin	0.0022542552450695677
GO:0051384: response to glucocorticoid	AREG	amphiregulin	0.002475830499200362
GO:0051384: response to glucocorticoid	BCHE	butyrylcholinesterase	-8.878500389436033e-6
GO:0051384: response to glucocorticoid	BCL2	B-cell CLL/lymphoma 2	-4.979173179272692e-6
GO:0051384: response to glucocorticoid	BMP4	bone morphogenetic protein 4	-0.0003251113367670449
GO:0051384: response to glucocorticoid	C3	complement component 3	0.0020405027069869425
GO:0051384: response to glucocorticoid	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005380439279837382
GO:0051384: response to glucocorticoid	CTSV	cathepsin V	0.0006611152623379376
GO:0051384: response to glucocorticoid	FAS	Fas cell surface death receptor	-3.358561388999537e-5
GO:0051384: response to glucocorticoid	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014678157828740114
GO:0051384: response to glucocorticoid	MDK	midkine (neurite growth-promoting factor 2)	0.0016839739478617464
GO:0051384: response to glucocorticoid	PDX1	pancreatic and duodenal homeobox 1	0.0002605598001965565
GO:0051384: response to glucocorticoid	RXRA	retinoid X receptor, alpha	0.0011231159560783
GO:0051384: response to glucocorticoid	S100B	S100 calcium binding protein B	0.005228628183890327
GO:0051384: response to glucocorticoid	TAT	tyrosine aminotransferase	0.0010617844211096923
GO:0051384: response to glucocorticoid	TYMS	thymidylate synthetase	0.001577414410666402
GO:0060670: branching involved in labyrinthine layer morphogenesis	ADM	adrenomedullin	0.0022358403364742163
GO:0060670: branching involved in labyrinthine layer morphogenesis	FGFR2	fibroblast growth factor receptor 2	0.0007620538491925122
GO:0060670: branching involved in labyrinthine layer morphogenesis	GRB2	growth factor receptor-bound protein 2	0.0004294929307700669
GO:0060712: spongiotrophoblast layer development	ADM	adrenomedullin	0.0022633438948317292
GO:0060712: spongiotrophoblast layer development	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028542660545164567
GO:0097084: vascular smooth muscle cell development	ADM	adrenomedullin	0.0022597339534806203
GO:0097084: vascular smooth muscle cell development	HES1	hes family bHLH transcription factor 1	-0.0009206495187076085
GO:0097084: vascular smooth muscle cell development	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0027312608271300963
GO:2001214: positive regulation of vasculogenesis	ADM	adrenomedullin	0.00225745601222835
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	AES	amino-terminal enhancer of split	0.0013551182258712228
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ALX1	ALX homeobox 1	0.0022943594153471167
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ASCL1	achaete-scute family bHLH transcription factor 1	-0.001434181078809453
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	AURKB	aurora kinase B	0.00035102425374751087
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004858791321776827
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.0009778037521593693
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	BMP4	bone morphogenetic protein 4	-0.00032291665541893817
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005358515151663142
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	CCND1	cyclin D1	-0.002636169611349596
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011707202416043351
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DACH1	dachshund family transcription factor 1	0.002090612041893035
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DAXX	death-domain associated protein	0.000892676060272952
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DICER1	dicer 1, ribonuclease type III	-1.6085242419159863e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DKK1	dickkopf WNT signaling pathway inhibitor 1	-0.00018086280764588046
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DMRT1	doublesex and mab-3 related transcription factor 1	0.0015062826956418274
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E2F1	E2F transcription factor 1	0.002099951910367531
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E2F6	E2F transcription factor 6	0.0007183936207001566
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E2F8	E2F transcription factor 8	0.0017125554910919405
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E4F1	E4F transcription factor 1	0.0014829497580189288
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EFNA1	ephrin-A1	-0.0005211819739195803
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EGR1	early growth response 1	0.0010942465833379369
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EN1	engrailed homeobox 1	-1.5604905726076325e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ENG	endoglin	0.0008276634707962911
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010168219306386029
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013652193455570454
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FGFR2	fibroblast growth factor receptor 2	0.0007640876482155908
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FGFR3	fibroblast growth factor receptor 3	0.00022303140380648345
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017500454485836895
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXM1	forkhead box M1	0.0001973847451437486
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXO1	forkhead box O1	0.001802122810743975
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXO3	forkhead box O3	0.0012014358019426347
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GATA2	GATA binding protein 2	-0.00045206280840751485
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GATA3	GATA binding protein 3	-3.899696096053602e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GATA6	GATA binding protein 6	-2.8164220902767063e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GFI1	growth factor independent 1 transcription repressor	0.0016660985531133786
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GLI2	GLI family zinc finger 2	0.0018555577160233188
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GLI3	GLI family zinc finger 3	-0.0021540253164459857
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HDAC2	histone deacetylase 2	-0.001208377792982199
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HES1	hes family bHLH transcription factor 1	-0.0009119510641972796
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015296059642953431
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.00270210251930004
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HINFP	histone H4 transcription factor	0.000993527998322688
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HIPK2	homeodomain interacting protein kinase 2	0.000771549302232574
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HMGA2	high mobility group AT-hook 2	0.0015105061269616291
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HMGB1	high mobility group box 1	-0.0007770585873115466
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.010272536522285e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	IFNG	interferon, gamma	-4.893079540085305e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	IGBP1	immunoglobulin (CD79A) binding protein 1	0.0028521663821031652
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	IRF7	interferon regulatory factor 7	-0.001307882305971927
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ISL1	ISL LIM homeobox 1	7.891835877104974e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	KLF11	Kruppel-like factor 11	0.0006176055842431101
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	LEF1	lymphoid enhancer-binding factor 1	-0.00010024651916415736
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	LEP	leptin	0.0031947153487910497
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009327662659727049
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MED1	mediator complex subunit 1	0.0011306282915268357
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MEF2C	myocyte enhancer factor 2C	0.0009745291680395768
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MSX1	msh homeobox 1	-0.002772207992396804
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011376644613760572
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NFIB	nuclear factor I/B	0.0029227627622900347
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NFX1	nuclear transcription factor, X-box binding 1	-6.977924080879167e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NOC2L	nucleolar complex associated 2 homolog (S. cerevisiae)	-0.00015122390490234476
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NOTCH1	notch 1	0.0005193083282218352
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008015691707731479
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.002977969715828963
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NRIP1	nuclear receptor interacting protein 1	0.0010722096159011534
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ORC2	origin recognition complex, subunit 2	-0.0006128708749429618
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PAX3	paired box 3	-0.0029482489937430584
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PAX6	paired box 6	0.0019377480187608086
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PDX1	pancreatic and duodenal homeobox 1	0.00025767106892919656
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PER2	period circadian clock 2	0.0012395282488476763
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PHF14	PHD finger protein 14	0.0032282891775884644
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.0021784794792241843
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PLK1	polo-like kinase 1	0.0010189579927959971
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PLK3	polo-like kinase 3	0.0025667371334023832
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	POU1F1	POU class 1 homeobox 1	0.0001376206448314581
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PPP1R13L	protein phosphatase 1, regulatory subunit 13 like	-0.0014753783279936273
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PROX1	prospero homeobox 1	0.0011228040046543475
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PTCH1	patched 1	-6.590360048554068e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RARG	retinoic acid receptor, gamma	-0.002321896871335701
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.000982368390339602
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RREB1	ras responsive element binding protein 1	-0.001983643027172049
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RXRA	retinoid X receptor, alpha	0.0011162949316676938
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	S100A1	S100 calcium binding protein A1	0.0015870872871171658
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SALL1	spalt-like transcription factor 1	-0.002440445299273784
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SHH	sonic hedgehog	0.0006007415421319319
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SIRT1	sirtuin 1	-1.5243308058532311e-6
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SIRT2	sirtuin 2	-0.0008532116563844859
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SIX1	SIX homeobox 1	-0.0018719885232860085
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SKI	SKI proto-oncogene	-0.0006711169904449963
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SMO	smoothened, frizzled class receptor	0.0021415373065663676
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SOX11	SRY (sex determining region Y)-box 11	-0.0002092355708765956
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SOX18	SRY (sex determining region Y)-box 18	0.0012897248055904987
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SOX9	SRY (sex determining region Y)-box 9	-0.0005192689492928107
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SPDEF	SAM pointed domain containing ETS transcription factor	0.003140107582151735
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TBX3	T-box 3	0.0012274167587069318
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005743624922343589
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004803589178179182
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010616603099897158
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TFCP2L1	transcription factor CP2-like 1	0.0004495484372106237
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TGFB1	transforming growth factor, beta 1	-7.309557659658679e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	THRB	thyroid hormone receptor, beta	0.0019459537768191995
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TP53	tumor protein p53	0.0011771957338800394
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TP73	tumor protein p73	0.001029064460176827
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TPR	translocated promoter region, nuclear basket protein	-0.0006977416686542838
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TRPS1	trichorhinophalangeal syndrome I	-0.00017814533556740592
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TWIST1	twist family bHLH transcription factor 1	-0.0013431266966506335
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005640252179659056
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VEGFA	vascular endothelial growth factor A	0.0005957531111647733
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VLDLR	very low density lipoprotein receptor	0.0009540857561877535
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VPS72	vacuolar protein sorting 72 homolog (S. cerevisiae)	0.0005591059954160045
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WFS1	Wolfram syndrome 1 (wolframin)	0.0005773100865995261
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013901551851193835
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.0005075491450663937
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009581368781906827
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WWTR1	WW domain containing transcription regulator 1	0.0009016010907040487
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	XBP1	X-box binding protein 1	0.00026757040311400297
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	YBX1	Y box binding protein 1	-0.0009146851717373774
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	YY1	YY1 transcription factor	0.0013417771859454133
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ZBTB18	zinc finger and BTB domain containing 18	0.0012733151134221906
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ZNF148	zinc finger protein 148	0.0021063360980877782
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ZNF205	zinc finger protein 205	0.0005964780761849493
GO:0009887: organ morphogenesis	AES	amino-terminal enhancer of split	0.001355170010818961
GO:0009887: organ morphogenesis	CCL2	chemokine (C-C motif) ligand 2	0.0008169353018639712
GO:0009887: organ morphogenesis	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023475824803697335
GO:0009887: organ morphogenesis	EVL	Enah/Vasp-like	0.001939986945157724
GO:0009887: organ morphogenesis	FGFR2	fibroblast growth factor receptor 2	0.0007636188960153761
GO:0009887: organ morphogenesis	GATA2	GATA binding protein 2	-0.0004513740507206312
GO:0009887: organ morphogenesis	GATA3	GATA binding protein 3	-3.812156262349577e-5
GO:0009887: organ morphogenesis	GSK3B	glycogen synthase kinase 3 beta	0.001550460969730983
GO:0009887: organ morphogenesis	IL7	interleukin 7	0.0008715709758289294
GO:0009887: organ morphogenesis	LHX1	LIM homeobox 1	-0.0007592971182673817
GO:0009887: organ morphogenesis	NRP1	neuropilin 1	-0.0006436307598317071
GO:0009887: organ morphogenesis	PAX3	paired box 3	-0.0029476082757280086
GO:0009887: organ morphogenesis	PAX6	paired box 6	0.0019368754649154126
GO:0009887: organ morphogenesis	PDX1	pancreatic and duodenal homeobox 1	0.00025736213537804294
GO:0009887: organ morphogenesis	PTCH1	patched 1	-6.626513105950096e-5
GO:0009887: organ morphogenesis	STX2	syntaxin 2	0.0003084483722568696
GO:0009887: organ morphogenesis	TBX3	T-box 3	0.0012278099074311077
GO:0009887: organ morphogenesis	TH	tyrosine hydroxylase	-0.00034241678024209425
GO:0009887: organ morphogenesis	THRB	thyroid hormone receptor, beta	0.0019457902119361335
GO:0009887: organ morphogenesis	TRPS1	trichorhinophalangeal syndrome I	-0.00017755481586765814
GO:0009887: organ morphogenesis	VEGFC	vascular endothelial growth factor C	-0.003366471390167558
GO:0010629: negative regulation of gene expression	AES	amino-terminal enhancer of split	0.0013519140010937406
GO:0010629: negative regulation of gene expression	BAK1	BCL2-antagonist/killer 1	-0.0018730431728721146
GO:0010629: negative regulation of gene expression	BBS4	Bardet-Biedl syndrome 4	-0.0005090853651926166
GO:0010629: negative regulation of gene expression	C1QTNF3	C1q and tumor necrosis factor related protein 3	0.00013892932752127392
GO:0010629: negative regulation of gene expression	CCNB1	cyclin B1	-0.0008809332885227911
GO:0010629: negative regulation of gene expression	CDC42	cell division cycle 42	0.0012382897889685945
GO:0010629: negative regulation of gene expression	CRYAB	crystallin, alpha B	0.0009830222652376507
GO:0010629: negative regulation of gene expression	ESR1	estrogen receptor 1	-0.000946803984684498
GO:0010629: negative regulation of gene expression	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016121412881582554
GO:0010629: negative regulation of gene expression	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.002694421435013308
GO:0010629: negative regulation of gene expression	HINFP	histone H4 transcription factor	0.000991168959594065
GO:0010629: negative regulation of gene expression	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.011590669622891e-5
GO:0010629: negative regulation of gene expression	IFNA2	interferon, alpha 2	-0.001714628700838684
GO:0010629: negative regulation of gene expression	IFNG	interferon, gamma	-4.883233209385641e-5
GO:0010629: negative regulation of gene expression	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011678216342476713
GO:0010629: negative regulation of gene expression	MEF2C	myocyte enhancer factor 2C	0.0009717040659472453
GO:0010629: negative regulation of gene expression	PGR	progesterone receptor	0.00035122284772455526
GO:0010629: negative regulation of gene expression	RNASEH2B	ribonuclease H2, subunit B	-4.346778081713143e-5
GO:0010629: negative regulation of gene expression	SFRP1	secreted frizzled-related protein 1	0.001279438732574608
GO:0010629: negative regulation of gene expression	SIRT1	sirtuin 1	-1.785221343219345e-6
GO:0010629: negative regulation of gene expression	SLIT2	slit homolog 2 (Drosophila)	-0.0016175920743850961
GO:0010629: negative regulation of gene expression	SMO	smoothened, frizzled class receptor	0.002135933149228403
GO:0010629: negative regulation of gene expression	SOX11	SRY (sex determining region Y)-box 11	-0.00020867327667661588
GO:0010629: negative regulation of gene expression	STC2	stanniocalcin 2	-0.0013951345470435837
GO:0010629: negative regulation of gene expression	TGFB1	transforming growth factor, beta 1	-7.294610457040547e-5
GO:0010629: negative regulation of gene expression	WNT4	wingless-type MMTV integration site family, member 4	-0.00025154255592147015
GO:0010629: negative regulation of gene expression	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009557896463014886
GO:0010629: negative regulation of gene expression	YY1	YY1 transcription factor	0.001337878804402302
GO:0010629: negative regulation of gene expression	ZNF148	zinc finger protein 148	0.0021006780488864864
GO:0016055: Wnt signaling pathway	AES	amino-terminal enhancer of split	0.0013527395166038417
GO:0016055: Wnt signaling pathway	CCNE1	cyclin E1	0.0003708117127280415
GO:0016055: Wnt signaling pathway	CD24	CD24 molecule	0.0010707816370809043
GO:0016055: Wnt signaling pathway	CELSR2	cadherin, EGF LAG seven-pass G-type receptor 2	-0.0011340597826993818
GO:0016055: Wnt signaling pathway	CPE	carboxypeptidase E	-0.0025422313126101295
GO:0016055: Wnt signaling pathway	CSNK2B	casein kinase 2, beta polypeptide	0.001527353850485443
GO:0016055: Wnt signaling pathway	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011677085235793602
GO:0016055: Wnt signaling pathway	CTNNBIP1	catenin, beta interacting protein 1	0.0005851476176684193
GO:0016055: Wnt signaling pathway	DRD2	dopamine receptor D2	-0.0002339062974386066
GO:0016055: Wnt signaling pathway	LEF1	lymphoid enhancer-binding factor 1	-0.00010035972892575281
GO:0016055: Wnt signaling pathway	LRP5	low density lipoprotein receptor-related protein 5	3.0445528481599324e-5
GO:0016055: Wnt signaling pathway	LRP6	low density lipoprotein receptor-related protein 6	0.00014952042784598286
GO:0016055: Wnt signaling pathway	NDRG2	NDRG family member 2	0.0021715200009711
GO:0016055: Wnt signaling pathway	PITX2	paired-like homeodomain 2	0.002174062301613466
GO:0016055: Wnt signaling pathway	SOSTDC1	sclerostin domain containing 1	-0.0015229194321765057
GO:0016055: Wnt signaling pathway	WNT1	wingless-type MMTV integration site family, member 1	0.000786248717398586
GO:0016055: Wnt signaling pathway	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013872120620972367
GO:0016055: Wnt signaling pathway	WNT5A	wingless-type MMTV integration site family, member 5A	-0.000666892051770657
GO:0032091: negative regulation of protein binding	AES	amino-terminal enhancer of split	0.0013463307260487634
GO:0032091: negative regulation of protein binding	AURKA	aurora kinase A	0.0009991882076638278
GO:0032091: negative regulation of protein binding	AURKB	aurora kinase B	0.0003460323517961097
GO:0032091: negative regulation of protein binding	BAX	BCL2-associated X protein	-0.00042289228848571987
GO:0032091: negative regulation of protein binding	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005329481437877448
GO:0032091: negative regulation of protein binding	CTNNBIP1	catenin, beta interacting protein 1	0.0005811182393533242
GO:0032091: negative regulation of protein binding	GOLGA2	golgin A2	0.00016704976704624952
GO:0032091: negative regulation of protein binding	GSK3B	glycogen synthase kinase 3 beta	0.0015382435686406629
GO:0032091: negative regulation of protein binding	NES	nestin	0.00136080464634235
GO:0032091: negative regulation of protein binding	PRKCD	protein kinase C, delta	-0.001119067146278653
GO:0032091: negative regulation of protein binding	TEX14	testis expressed 14	0.0017153611552606788
GO:0032091: negative regulation of protein binding	TMBIM6	transmembrane BAX inhibitor motif containing 6	-0.00014697587107788504
GO:0045892: negative regulation of transcription, DNA-templated	AES	amino-terminal enhancer of split	0.001351784730574071
GO:0045892: negative regulation of transcription, DNA-templated	ASCL1	achaete-scute family bHLH transcription factor 1	-0.001429550917306822
GO:0045892: negative regulation of transcription, DNA-templated	ATF5	activating transcription factor 5	-0.002730128377626366
GO:0045892: negative regulation of transcription, DNA-templated	BASP1	brain abundant, membrane attached signal protein 1	0.00047759315356880644
GO:0045892: negative regulation of transcription, DNA-templated	BIRC5	baculoviral IAP repeat containing 5	-0.000260318590651655
GO:0045892: negative regulation of transcription, DNA-templated	BMP4	bone morphogenetic protein 4	-0.00032199024647346525
GO:0045892: negative regulation of transcription, DNA-templated	BMP7	bone morphogenetic protein 7	0.000854352302331943
GO:0045892: negative regulation of transcription, DNA-templated	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017543369588370774
GO:0045892: negative regulation of transcription, DNA-templated	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.00027351788268845746
GO:0045892: negative regulation of transcription, DNA-templated	CHMP1A	charged multivesicular body protein 1A	-0.0007783748268909475
GO:0045892: negative regulation of transcription, DNA-templated	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028126282879064953
GO:0045892: negative regulation of transcription, DNA-templated	CLOCK	clock circadian regulator	0.00020017165830075843
GO:0045892: negative regulation of transcription, DNA-templated	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011686077626024046
GO:0045892: negative regulation of transcription, DNA-templated	DACH1	dachshund family transcription factor 1	0.002085597153487455
GO:0045892: negative regulation of transcription, DNA-templated	DAXX	death-domain associated protein	0.000889556211649733
GO:0045892: negative regulation of transcription, DNA-templated	E2F1	E2F transcription factor 1	0.0020936531362438786
GO:0045892: negative regulation of transcription, DNA-templated	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.0001367235849565079
GO:0045892: negative regulation of transcription, DNA-templated	FOXM1	forkhead box M1	0.00019648954157836903
GO:0045892: negative regulation of transcription, DNA-templated	FOXO1	forkhead box O1	0.0017969593486101645
GO:0045892: negative regulation of transcription, DNA-templated	GATA3	GATA binding protein 3	-3.864292371758214e-5
GO:0045892: negative regulation of transcription, DNA-templated	GATA6	GATA binding protein 6	-2.8335332695295364e-5
GO:0045892: negative regulation of transcription, DNA-templated	GFI1	growth factor independent 1 transcription repressor	0.0016618497178077422
GO:0045892: negative regulation of transcription, DNA-templated	GLI3	GLI family zinc finger 3	-0.0021471929500517482
GO:0045892: negative regulation of transcription, DNA-templated	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008252087915197296
GO:0045892: negative regulation of transcription, DNA-templated	HDAC2	histone deacetylase 2	-0.0012055610861570981
GO:0045892: negative regulation of transcription, DNA-templated	HES1	hes family bHLH transcription factor 1	-0.0009092210165938035
GO:0045892: negative regulation of transcription, DNA-templated	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015247737052206345
GO:0045892: negative regulation of transcription, DNA-templated	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0026931776015174775
GO:0045892: negative regulation of transcription, DNA-templated	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006763193724865659
GO:0045892: negative regulation of transcription, DNA-templated	HINFP	histone H4 transcription factor	0.0009906205915676384
GO:0045892: negative regulation of transcription, DNA-templated	HMGA1	high mobility group AT-hook 1	-0.0003182893538899947
GO:0045892: negative regulation of transcription, DNA-templated	HMGA2	high mobility group AT-hook 2	0.0015063009276919837
GO:0045892: negative regulation of transcription, DNA-templated	HMGB2	high mobility group box 2	0.00030554420025999336
GO:0045892: negative regulation of transcription, DNA-templated	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.0175738939633867e-5
GO:0045892: negative regulation of transcription, DNA-templated	IFNA2	interferon, alpha 2	-0.0017141527027006904
GO:0045892: negative regulation of transcription, DNA-templated	IL4	interleukin 4	0.0002594261121362924
GO:0045892: negative regulation of transcription, DNA-templated	LANCL2	LanC lantibiotic synthetase component C-like 2 (bacterial)	0.001183112486005963
GO:0045892: negative regulation of transcription, DNA-templated	LEF1	lymphoid enhancer-binding factor 1	-0.00010028864894957692
GO:0045892: negative regulation of transcription, DNA-templated	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.000307942745916308
GO:0045892: negative regulation of transcription, DNA-templated	LHX1	LIM homeobox 1	-0.0007571991675023068
GO:0045892: negative regulation of transcription, DNA-templated	NOTCH1	notch 1	0.0005177525193474501
GO:0045892: negative regulation of transcription, DNA-templated	PAX2	paired box 2	-0.001610811635700987
GO:0045892: negative regulation of transcription, DNA-templated	PER2	period circadian clock 2	0.0012358609273226844
GO:0045892: negative regulation of transcription, DNA-templated	PHB2	prohibitin 2	-0.000734865088509974
GO:0045892: negative regulation of transcription, DNA-templated	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015317901283391284
GO:0045892: negative regulation of transcription, DNA-templated	PML	promyelocytic leukemia	-0.0006791444323532427
GO:0045892: negative regulation of transcription, DNA-templated	PROX1	prospero homeobox 1	0.0011191792502334788
GO:0045892: negative regulation of transcription, DNA-templated	PURA	purine-rich element binding protein A	-0.00016995048969449853
GO:0045892: negative regulation of transcription, DNA-templated	RB1	retinoblastoma 1	-0.0014911611868604349
GO:0045892: negative regulation of transcription, DNA-templated	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009799788864599788
GO:0045892: negative regulation of transcription, DNA-templated	SALL1	spalt-like transcription factor 1	-0.002431822842432363
GO:0045892: negative regulation of transcription, DNA-templated	SFRP1	secreted frizzled-related protein 1	0.0012780594497327007
GO:0045892: negative regulation of transcription, DNA-templated	SIRT1	sirtuin 1	-1.9291066704486697e-6
GO:0045892: negative regulation of transcription, DNA-templated	SIRT2	sirtuin 2	-0.0008505944997300518
GO:0045892: negative regulation of transcription, DNA-templated	SIX3	SIX homeobox 3	0.00203299871522317
GO:0045892: negative regulation of transcription, DNA-templated	SOX10	SRY (sex determining region Y)-box 10	0.0001891290302973607
GO:0045892: negative regulation of transcription, DNA-templated	SOX18	SRY (sex determining region Y)-box 18	0.0012864361700746577
GO:0045892: negative regulation of transcription, DNA-templated	SOX9	SRY (sex determining region Y)-box 9	-0.0005176144539026879
GO:0045892: negative regulation of transcription, DNA-templated	TBX3	T-box 3	0.0012245786504059756
GO:0045892: negative regulation of transcription, DNA-templated	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005723457182564316
GO:0045892: negative regulation of transcription, DNA-templated	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004791733279179016
GO:0045892: negative regulation of transcription, DNA-templated	TGFB1	transforming growth factor, beta 1	-7.275729444127828e-5
GO:0045892: negative regulation of transcription, DNA-templated	THRA	thyroid hormone receptor, alpha	0.0007619017160781874
GO:0045892: negative regulation of transcription, DNA-templated	TP53	tumor protein p53	0.0011729599534958286
GO:0045892: negative regulation of transcription, DNA-templated	TWIST1	twist family bHLH transcription factor 1	-0.0013387171121337442
GO:0045892: negative regulation of transcription, DNA-templated	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005628198711417724
GO:0045892: negative regulation of transcription, DNA-templated	WNT4	wingless-type MMTV integration site family, member 4	-0.00025106657156398287
GO:0045892: negative regulation of transcription, DNA-templated	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006660780260055662
GO:0045892: negative regulation of transcription, DNA-templated	WT1	Wilms tumor 1	-0.0005057158283539178
GO:0045892: negative regulation of transcription, DNA-templated	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009555623803290928
GO:0045892: negative regulation of transcription, DNA-templated	ZBTB18	zinc finger and BTB domain containing 18	0.0012698825729290386
GO:0045892: negative regulation of transcription, DNA-templated	ZNF148	zinc finger protein 148	0.0021000348961236646
GO:0045892: negative regulation of transcription, DNA-templated	ZNF24	zinc finger protein 24	0.00128942957123327
GO:0060761: negative regulation of response to cytokine stimulus	AES	amino-terminal enhancer of split	0.0013463150483353041
GO:0070555: response to interleukin-1	AES	amino-terminal enhancer of split	0.0013629143706802706
GO:0070555: response to interleukin-1	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028416230513598367
GO:0070555: response to interleukin-1	IGBP1	immunoglobulin (CD79A) binding protein 1	0.0028698158549162094
GO:0070555: response to interleukin-1	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016228946147211502
GO:0070555: response to interleukin-1	LGALS9	lectin, galactoside-binding, soluble, 9	-0.0001166480465430494
GO:0070555: response to interleukin-1	PRKCA	protein kinase C, alpha	-6.143989571451904e-6
GO:0070555: response to interleukin-1	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.0027976703073307307
GO:0090090: negative regulation of canonical Wnt signaling pathway	AES	amino-terminal enhancer of split	0.0013446295997899028
GO:0090090: negative regulation of canonical Wnt signaling pathway	APC	adenomatous polyposis coli	0.000640556121075534
GO:0090090: negative regulation of canonical Wnt signaling pathway	AXIN1	axin 1	-0.0007259334725522162
GO:0090090: negative regulation of canonical Wnt signaling pathway	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005323052824182278
GO:0090090: negative regulation of canonical Wnt signaling pathway	CDH2	cadherin 2, type 1, N-cadherin (neuronal)	-0.0006365518356656026
GO:0090090: negative regulation of canonical Wnt signaling pathway	DKK1	dickkopf WNT signaling pathway inhibitor 1	-0.00017965341722346966
GO:0090090: negative regulation of canonical Wnt signaling pathway	EGR1	early growth response 1	0.001084370145842083
GO:0090090: negative regulation of canonical Wnt signaling pathway	FOXO1	forkhead box O1	0.001785897385355353
GO:0090090: negative regulation of canonical Wnt signaling pathway	FOXO3	forkhead box O3	0.0011896221452105983
GO:0090090: negative regulation of canonical Wnt signaling pathway	GLI1	GLI family zinc finger 1	-0.0012874867377596442
GO:0090090: negative regulation of canonical Wnt signaling pathway	GLI3	GLI family zinc finger 3	-0.0021327514766360856
GO:0090090: negative regulation of canonical Wnt signaling pathway	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008181393414796466
GO:0090090: negative regulation of canonical Wnt signaling pathway	GSK3B	glycogen synthase kinase 3 beta	0.0015363067664930811
GO:0090090: negative regulation of canonical Wnt signaling pathway	ISL1	ISL LIM homeobox 1	7.974583911044468e-5
GO:0090090: negative regulation of canonical Wnt signaling pathway	LEF1	lymphoid enhancer-binding factor 1	-0.00010044236999972464
GO:0090090: negative regulation of canonical Wnt signaling pathway	LRP6	low density lipoprotein receptor-related protein 6	0.00014822228708482923
GO:0090090: negative regulation of canonical Wnt signaling pathway	NOTCH1	notch 1	0.0005145056565424621
GO:0090090: negative regulation of canonical Wnt signaling pathway	PPP2R3A	protein phosphatase 2, regulatory subunit B'', alpha	-3.401723456631761e-5
GO:0090090: negative regulation of canonical Wnt signaling pathway	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.00032907316658832103
GO:0090090: negative regulation of canonical Wnt signaling pathway	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010879595894439213
GO:0090090: negative regulation of canonical Wnt signaling pathway	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.0478683984049005e-5
GO:0090090: negative regulation of canonical Wnt signaling pathway	SFRP1	secreted frizzled-related protein 1	0.001266476414422506
GO:0090090: negative regulation of canonical Wnt signaling pathway	SHH	sonic hedgehog	0.0005936221018870156
GO:0090090: negative regulation of canonical Wnt signaling pathway	SOSTDC1	sclerostin domain containing 1	-0.0015163835930333237
GO:0090090: negative regulation of canonical Wnt signaling pathway	SOX10	SRY (sex determining region Y)-box 10	0.00018530216546861167
GO:0090090: negative regulation of canonical Wnt signaling pathway	SOX9	SRY (sex determining region Y)-box 9	-0.0005139641789025873
GO:0090090: negative regulation of canonical Wnt signaling pathway	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005681147050651933
GO:0090090: negative regulation of canonical Wnt signaling pathway	WNT4	wingless-type MMTV integration site family, member 4	-0.0002480656864292688
GO:0090090: negative regulation of canonical Wnt signaling pathway	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006616863540872478
GO:0090090: negative regulation of canonical Wnt signaling pathway	WWTR1	WW domain containing transcription regulator 1	0.0008909372223944113
GO:2000210: positive regulation of anoikis	AES	amino-terminal enhancer of split	0.0013463150483353041
GO:0051180: vitamin transport	AFM	afamin	-0.0016939199422974886
GO:0001933: negative regulation of protein phosphorylation	AGER	advanced glycosylation end product-specific receptor	-0.00017358060487045497
GO:0001933: negative regulation of protein phosphorylation	ANGPT1	angiopoietin 1	0.0008942613539592702
GO:0001933: negative regulation of protein phosphorylation	CCNB1	cyclin B1	-0.0008789843383837507
GO:0001933: negative regulation of protein phosphorylation	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011304767666894008
GO:0001933: negative regulation of protein phosphorylation	CIB1	calcium and integrin binding 1 (calmyrin)	5.769625484162504e-5
GO:0001933: negative regulation of protein phosphorylation	IGFBP3	insulin-like growth factor binding protein 3	0.0008324809561600384
GO:0001933: negative regulation of protein phosphorylation	LRP6	low density lipoprotein receptor-related protein 6	0.0001475907933059749
GO:0001933: negative regulation of protein phosphorylation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014095478897937035
GO:0001933: negative regulation of protein phosphorylation	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.0002936659677934917
GO:0001933: negative regulation of protein phosphorylation	PAX6	paired box 6	0.001919329255687808
GO:0001933: negative regulation of protein phosphorylation	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018424092921994434
GO:0001933: negative regulation of protein phosphorylation	PTEN	phosphatase and tensin homolog	1.9848963515154886e-5
GO:0001933: negative regulation of protein phosphorylation	SLIT2	slit homolog 2 (Drosophila)	-0.0016053719849884744
GO:0001933: negative regulation of protein phosphorylation	TGFB1	transforming growth factor, beta 1	-7.162701065306357e-5
GO:0001933: negative regulation of protein phosphorylation	WWTR1	WW domain containing transcription regulator 1	0.0008893523319973961
GO:0006954: inflammatory response	AGER	advanced glycosylation end product-specific receptor	-0.0001741605193325245
GO:0006954: inflammatory response	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007293226205558225
GO:0006954: inflammatory response	AZU1	azurocidin 1	0.0001977002419233024
GO:0006954: inflammatory response	C3	complement component 3	0.0020214935294109787
GO:0006954: inflammatory response	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.002583584837867054
GO:0006954: inflammatory response	CCL2	chemokine (C-C motif) ligand 2	0.0008151701822056866
GO:0006954: inflammatory response	CCL7	chemokine (C-C motif) ligand 7	-0.002400020929641092
GO:0006954: inflammatory response	CCL8	chemokine (C-C motif) ligand 8	-0.0005901406027813142
GO:0006954: inflammatory response	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002738361398219049
GO:0006954: inflammatory response	CXCL10	chemokine (C-X-C motif) ligand 10	6.18546325484614e-5
GO:0006954: inflammatory response	CXCL13	chemokine (C-X-C motif) ligand 13	0.002988368130941916
GO:0006954: inflammatory response	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007930653805844554
GO:0006954: inflammatory response	ECM1	extracellular matrix protein 1	-0.001553844646489917
GO:0006954: inflammatory response	HMGB1	high mobility group box 1	-0.0007758328482250259
GO:0006954: inflammatory response	IFNA2	interferon, alpha 2	-0.0017147744852922713
GO:0006954: inflammatory response	IGFBP4	insulin-like growth factor binding protein 4	-0.0012759153273434404
GO:0006954: inflammatory response	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002732967293583007
GO:0006954: inflammatory response	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011702440917982995
GO:0006954: inflammatory response	LIAS	lipoic acid synthetase	-0.0005533963804851618
GO:0006954: inflammatory response	NFX1	nuclear transcription factor, X-box binding 1	-7.071783108679569e-5
GO:0006954: inflammatory response	ORM1	orosomucoid 1	-0.0004722964838708864
GO:0006954: inflammatory response	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007796206153916807
GO:0006954: inflammatory response	PRKCZ	protein kinase C, zeta	-0.0015985844588706387
GO:0006954: inflammatory response	RXRA	retinoid X receptor, alpha	0.0011135967399531434
GO:0006954: inflammatory response	SPHK1	sphingosine kinase 1	0.0018079082150883488
GO:0006954: inflammatory response	TGFB1	transforming growth factor, beta 1	-7.26508965994339e-5
GO:0006954: inflammatory response	THBS1	thrombospondin 1	-0.0010339970738101813
GO:0006954: inflammatory response	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011147675776687193
GO:0006954: inflammatory response	TP73	tumor protein p73	0.0010263950253054843
GO:0007166: cell surface receptor signaling pathway	AGER	advanced glycosylation end product-specific receptor	-0.00017473212348881814
GO:0007166: cell surface receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001140948402837924
GO:0007166: cell surface receptor signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.0008207016857744446
GO:0007166: cell surface receptor signaling pathway	CD9	CD9 molecule	-0.0025985720497186983
GO:0007166: cell surface receptor signaling pathway	CXCL10	chemokine (C-X-C motif) ligand 10	6.367702381689475e-5
GO:0007166: cell surface receptor signaling pathway	CXCL13	chemokine (C-X-C motif) ligand 13	0.003008506048786532
GO:0007166: cell surface receptor signaling pathway	EGFR	epidermal growth factor receptor	0.0006904557236067017
GO:0007166: cell surface receptor signaling pathway	EVL	Enah/Vasp-like	0.0019458134711758193
GO:0007166: cell surface receptor signaling pathway	FAS	Fas cell surface death receptor	-3.3512523450894555e-5
GO:0007166: cell surface receptor signaling pathway	IFNA2	interferon, alpha 2	-0.001725579080846506
GO:0007166: cell surface receptor signaling pathway	IFNG	interferon, gamma	-4.894359067742944e-5
GO:0007166: cell surface receptor signaling pathway	IL27RA	interleukin 27 receptor, alpha	-0.0004858236113997379
GO:0007166: cell surface receptor signaling pathway	INHA	inhibin, alpha	0.00021179489211757023
GO:0007166: cell surface receptor signaling pathway	INHBA	inhibin, beta A	-0.0013625139485714593
GO:0007166: cell surface receptor signaling pathway	JMJD6	jumonji domain containing 6	0.0036071729847609786
GO:0007166: cell surface receptor signaling pathway	PRLR	prolactin receptor	0.002193471525580286
GO:0007166: cell surface receptor signaling pathway	TACSTD2	tumor-associated calcium signal transducer 2	-0.002270967381742541
GO:0007166: cell surface receptor signaling pathway	TSPAN6	tetraspanin 6	0.0013747101455425753
GO:0007259: JAK-STAT cascade	AGER	advanced glycosylation end product-specific receptor	-0.00017234174170604284
GO:0007259: JAK-STAT cascade	CCL2	chemokine (C-C motif) ligand 2	0.0007961782341408851
GO:0007259: JAK-STAT cascade	FGFR3	fibroblast growth factor receptor 3	0.00021486648949821407
GO:0007259: JAK-STAT cascade	JAK2	Janus kinase 2	-3.8072571645887274e-5
GO:0007259: JAK-STAT cascade	STAMBP	STAM binding protein	-0.000168234826951936
GO:0007259: JAK-STAT cascade	STAT5A	signal transducer and activator of transcription 5A	0.001562454787384559
GO:0007420: brain development	AGER	advanced glycosylation end product-specific receptor	-0.00017446850428290943
GO:0007420: brain development	APOD	apolipoprotein D	0.0026341666368316255
GO:0007420: brain development	BAK1	BCL2-antagonist/killer 1	-0.0018801523234930587
GO:0007420: brain development	BBS7	Bardet-Biedl syndrome 7	-0.0009791393949996824
GO:0007420: brain development	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.000776140215065747
GO:0007420: brain development	BRCA2	breast cancer 2, early onset	-1.0011110254309271e-5
GO:0007420: brain development	CAST	calpastatin	-0.0030403656837470414
GO:0007420: brain development	CD9	CD9 molecule	-0.002591700643047095
GO:0007420: brain development	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.001140360856874101
GO:0007420: brain development	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028247663778074535
GO:0007420: brain development	CST3	cystatin C	-7.082053828187314e-5
GO:0007420: brain development	EGR2	early growth response 2	0.0014429781073361956
GO:0007420: brain development	FOXC1	forkhead box C1	-2.1904968841335553e-5
GO:0007420: brain development	GRHL2	grainyhead-like 2 (Drosophila)	0.001008645261816589
GO:0007420: brain development	IGF1R	insulin-like growth factor 1 receptor	0.0010737533514887513
GO:0007420: brain development	MAP1S	microtubule-associated protein 1S	0.000531138991853514
GO:0007420: brain development	MAPT	microtubule-associated protein tau	0.0015541305624082924
GO:0007420: brain development	MED1	mediator complex subunit 1	0.0011322471481942742
GO:0007420: brain development	NES	nestin	0.0013775043968719625
GO:0007420: brain development	PHGDH	phosphoglycerate dehydrogenase	0.0002939475576920378
GO:0007420: brain development	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018594000602884387
GO:0007420: brain development	PROX1	prospero homeobox 1	0.001124256151056211
GO:0007420: brain development	PTCH1	patched 1	-6.575980054019722e-5
GO:0007420: brain development	RELN	reelin	0.0015412381043283835
GO:0007420: brain development	SHROOM2	shroom family member 2	0.0011148750556103648
GO:0007420: brain development	SIX3	SIX homeobox 3	0.0020422795242461167
GO:0007420: brain development	SPHK1	sphingosine kinase 1	0.0018148802383100911
GO:0007420: brain development	STAR	steroidogenic acute regulatory protein	0.000896739380649116
GO:0007420: brain development	STMN1	stathmin 1	0.0005610502424353881
GO:0007420: brain development	THRA	thyroid hormone receptor, alpha	0.0007648297005168199
GO:0007420: brain development	TULP3	tubby like protein 3	0.0009584191021333227
GO:0007420: brain development	ZNF335	zinc finger protein 335	-0.00036552832501872797
GO:0009100: glycoprotein metabolic process	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886402
GO:0009750: response to fructose	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886402
GO:0010508: positive regulation of autophagy	AGER	advanced glycosylation end product-specific receptor	-0.00017480707487236717
GO:0010508: positive regulation of autophagy	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029297983611412805
GO:0010508: positive regulation of autophagy	FOXO1	forkhead box O1	0.0018100350428352065
GO:0010508: positive regulation of autophagy	XBP1	X-box binding protein 1	0.00026732888985032754
GO:0010718: positive regulation of epithelial to mesenchymal transition	AGER	advanced glycosylation end product-specific receptor	-0.0001741277078064363
GO:0010718: positive regulation of epithelial to mesenchymal transition	ALX1	ALX homeobox 1	0.0022896753805271277
GO:0010718: positive regulation of epithelial to mesenchymal transition	COL1A1	collagen, type I, alpha 1	-0.0005260914185390753
GO:0010718: positive regulation of epithelial to mesenchymal transition	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011654993116169157
GO:0010718: positive regulation of epithelial to mesenchymal transition	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013567220937800198
GO:0010718: positive regulation of epithelial to mesenchymal transition	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.002429429356678352
GO:0010718: positive regulation of epithelial to mesenchymal transition	HDAC2	histone deacetylase 2	-0.0012052943575696275
GO:0010718: positive regulation of epithelial to mesenchymal transition	LEF1	lymphoid enhancer-binding factor 1	-0.00010043258594003513
GO:0010718: positive regulation of epithelial to mesenchymal transition	NOTCH1	notch 1	0.0005185453371369045
GO:0010718: positive regulation of epithelial to mesenchymal transition	TGFB1	transforming growth factor, beta 1	-7.313794013420118e-5
GO:0010718: positive regulation of epithelial to mesenchymal transition	TGFB2	transforming growth factor, beta 2	-0.0010581970171750206
GO:0010718: positive regulation of epithelial to mesenchymal transition	TGFB3	transforming growth factor, beta 3	-0.0018222936478021804
GO:0010718: positive regulation of epithelial to mesenchymal transition	TWIST1	twist family bHLH transcription factor 1	-0.0013400894025703233
GO:0010718: positive regulation of epithelial to mesenchymal transition	WWTR1	WW domain containing transcription regulator 1	0.0009000166833594054
GO:0010763: positive regulation of fibroblast migration	AGER	advanced glycosylation end product-specific receptor	-0.0001717746798192651
GO:0010763: positive regulation of fibroblast migration	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007084604504139823
GO:0010763: positive regulation of fibroblast migration	TGFB1	transforming growth factor, beta 1	-6.900388222676296e-5
GO:0010763: positive regulation of fibroblast migration	THBS1	thrombospondin 1	-0.0010069743726467083
GO:0014823: response to activity	AGER	advanced glycosylation end product-specific receptor	-0.0001729115254245068
GO:0014823: response to activity	CCL2	chemokine (C-C motif) ligand 2	0.0008024190714658058
GO:0014823: response to activity	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029584200617529887
GO:0014823: response to activity	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018321034931001402
GO:0014823: response to activity	PTN	pleiotrophin	0.00029075271927588584
GO:0014823: response to activity	STAR	steroidogenic acute regulatory protein	0.000878607046618065
GO:0014823: response to activity	TH	tyrosine hydroxylase	-0.0003391609782692307
GO:0014911: positive regulation of smooth muscle cell migration	AGER	advanced glycosylation end product-specific receptor	-0.00016892625099548152
GO:0014911: positive regulation of smooth muscle cell migration	BCL2	B-cell CLL/lymphoma 2	-6.25353020814296e-6
GO:0014911: positive regulation of smooth muscle cell migration	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00011656591892340847
GO:0014911: positive regulation of smooth muscle cell migration	NRP1	neuropilin 1	-0.0006070586606722712
GO:0014911: positive regulation of smooth muscle cell migration	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003310873939760622
GO:0030324: lung development	AGER	advanced glycosylation end product-specific receptor	-0.0001744394264939319
GO:0030324: lung development	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030238104633179786
GO:0030324: lung development	DICER1	dicer 1, ribonuclease type III	-1.598508287682766e-5
GO:0030324: lung development	FGFR2	fibroblast growth factor receptor 2	0.0007644304721028296
GO:0030324: lung development	GLI1	GLI family zinc finger 1	-0.0012985894525954199
GO:0030324: lung development	GLI2	GLI family zinc finger 2	0.0018565882658731464
GO:0030324: lung development	GLI3	GLI family zinc finger 3	-0.0021548768134108695
GO:0030324: lung development	HES1	hes family bHLH transcription factor 1	-0.0009123871332894152
GO:0030324: lung development	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014022278178806883
GO:0030324: lung development	JMJD6	jumonji domain containing 6	0.003596253880307906
GO:0030324: lung development	LOX	lysyl oxidase	-0.0005774279246892739
GO:0030324: lung development	NOTCH1	notch 1	0.0005194326424966046
GO:0030324: lung development	PROX1	prospero homeobox 1	0.00112337595592072
GO:0030324: lung development	PTN	pleiotrophin	0.0003025318227062164
GO:0030324: lung development	SHH	sonic hedgehog	0.0006010797438065889
GO:0030324: lung development	STRA6	stimulated by retinoic acid 6	-0.0016831186198885426
GO:0030324: lung development	TMBIM6	transmembrane BAX inhibitor motif containing 6	-0.00014760836380781387
GO:0030324: lung development	VEGFA	vascular endothelial growth factor A	0.0005959007297280882
GO:0030324: lung development	WNT5A	wingless-type MMTV integration site family, member 5A	-0.000668415181201153
GO:0031175: neuron projection development	AGER	advanced glycosylation end product-specific receptor	-0.0001744411864424662
GO:0031175: neuron projection development	AREG	amphiregulin	0.002460118829753563
GO:0031175: neuron projection development	GDNF	glial cell derived neurotrophic factor	0.00044549446832151346
GO:0031175: neuron projection development	HMGB1	high mobility group box 1	-0.0007779385934992561
GO:0031175: neuron projection development	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014223060883479435
GO:0031175: neuron projection development	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022661973448634084
GO:0031175: neuron projection development	PHGDH	phosphoglycerate dehydrogenase	0.00029135468481888656
GO:0031175: neuron projection development	RB1	retinoblastoma 1	-0.001495524972351422
GO:0031175: neuron projection development	STMN1	stathmin 1	0.0005586829782879249
GO:0031175: neuron projection development	STMN2	stathmin 2	-0.0019494785260562395
GO:0031175: neuron projection development	STMN3	stathmin-like 3	0.00259343418697851
GO:0031175: neuron projection development	STMN4	stathmin-like 4	0.0003485622681119769
GO:0032966: negative regulation of collagen biosynthetic process	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886402
GO:0033189: response to vitamin A	AGER	advanced glycosylation end product-specific receptor	-0.00017482761798466012
GO:0033189: response to vitamin A	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030371512431999156
GO:0033189: response to vitamin A	GATA4	GATA binding protein 4	-0.001101936753420912
GO:0033189: response to vitamin A	PITX2	paired-like homeodomain 2	0.0021901196203252247
GO:0033189: response to vitamin A	RXRA	retinoid X receptor, alpha	0.00112185031085255
GO:0033189: response to vitamin A	TYMS	thymidylate synthetase	0.0015738413411606838
GO:0033595: response to genistein	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886402
GO:0033689: negative regulation of osteoblast proliferation	AGER	advanced glycosylation end product-specific receptor	-0.00017376064785373026
GO:0033689: negative regulation of osteoblast proliferation	BCL2	B-cell CLL/lymphoma 2	-5.531878170583575e-6
GO:0033689: negative regulation of osteoblast proliferation	GREM1	gremlin 1, DAN family BMP antagonist	-0.00082541900778904
GO:0033689: negative regulation of osteoblast proliferation	NELL1	NEL-like 1 (chicken)	0.0015282466465045424
GO:0033689: negative regulation of osteoblast proliferation	SFRP1	secreted frizzled-related protein 1	0.0012792945079847496
GO:0035690: cellular response to drug	AGER	advanced glycosylation end product-specific receptor	-0.00017404904762181086
GO:0035690: cellular response to drug	CCL2	chemokine (C-C motif) ligand 2	0.0008138434299684029
GO:0035690: cellular response to drug	EGR1	early growth response 1	0.0010900244760895224
GO:0035690: cellular response to drug	KCNE2	potassium voltage-gated channel, Isk-related family, member 2	-0.0005740932946616277
GO:0035690: cellular response to drug	MEF2C	myocyte enhancer factor 2C	0.0009698909105021101
GO:0035690: cellular response to drug	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011344313889561487
GO:0035690: cellular response to drug	QDPR	quinoid dihydropteridine reductase	-0.002847504678887839
GO:0035690: cellular response to drug	TFRC	transferrin receptor	0.0010817403016909527
GO:0035690: cellular response to drug	TH	tyrosine hydroxylase	-0.0003415885475994221
GO:0035690: cellular response to drug	TP53	tumor protein p53	0.0011707613367156176
GO:0043507: positive regulation of JUN kinase activity	AGER	advanced glycosylation end product-specific receptor	-0.00017483046779262409
GO:0043507: positive regulation of JUN kinase activity	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.0003451389791536078
GO:0043507: positive regulation of JUN kinase activity	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002203688201578449
GO:0043507: positive regulation of JUN kinase activity	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.0027958343078884366
GO:0043525: positive regulation of neuron apoptotic process	AGER	advanced glycosylation end product-specific receptor	-0.0001731622441579873
GO:0043525: positive regulation of neuron apoptotic process	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014125259486000288
GO:0043525: positive regulation of neuron apoptotic process	BAX	BCL2-associated X protein	-0.0004224770190748337
GO:0043525: positive regulation of neuron apoptotic process	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007689878285913828
GO:0043525: positive regulation of neuron apoptotic process	CDC34	cell division cycle 34	-0.00016003391003193698
GO:0043525: positive regulation of neuron apoptotic process	CDC42	cell division cycle 42	0.0012258436174132357
GO:0043525: positive regulation of neuron apoptotic process	EGR1	early growth response 1	0.00108101910412381
GO:0043525: positive regulation of neuron apoptotic process	FGFR3	fibroblast growth factor receptor 3	0.0002196496380951418
GO:0043525: positive regulation of neuron apoptotic process	FOXO3	forkhead box O3	0.0011848200239213138
GO:0043525: positive regulation of neuron apoptotic process	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.00023169200191268304
GO:0043525: positive regulation of neuron apoptotic process	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.001247500129267077
GO:0043525: positive regulation of neuron apoptotic process	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00047631841377539116
GO:0043525: positive regulation of neuron apoptotic process	TGFB2	transforming growth factor, beta 2	-0.0010453288708284097
GO:0043525: positive regulation of neuron apoptotic process	TP53	tumor protein p53	0.001157130673629335
GO:0048146: positive regulation of fibroblast proliferation	AGER	advanced glycosylation end product-specific receptor	-0.00017375890780748612
GO:0048146: positive regulation of fibroblast proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011236518161791577
GO:0048146: positive regulation of fibroblast proliferation	CCNB1	cyclin B1	-0.000879588102842006
GO:0048146: positive regulation of fibroblast proliferation	E2F1	E2F transcription factor 1	0.002085148869595042
GO:0048146: positive regulation of fibroblast proliferation	EGFR	epidermal growth factor receptor	0.0006800807786013384
GO:0048146: positive regulation of fibroblast proliferation	ESR1	estrogen receptor 1	-0.0009415233693240733
GO:0048146: positive regulation of fibroblast proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.000128939532843777
GO:0048146: positive regulation of fibroblast proliferation	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011312139237075814
GO:0048146: positive regulation of fibroblast proliferation	PML	promyelocytic leukemia	-0.0006776744080157946
GO:0048146: positive regulation of fibroblast proliferation	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018460968198891936
GO:0048146: positive regulation of fibroblast proliferation	RNASEH2B	ribonuclease H2, subunit B	-4.266250341677262e-5
GO:0048146: positive regulation of fibroblast proliferation	SPHK1	sphingosine kinase 1	0.001800225989504359
GO:0048146: positive regulation of fibroblast proliferation	TGFB1	transforming growth factor, beta 1	-7.21400493849188e-5
GO:0048146: positive regulation of fibroblast proliferation	WNT1	wingless-type MMTV integration site family, member 1	0.0007827611742660035
GO:0048146: positive regulation of fibroblast proliferation	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006631535226664446
GO:0048661: positive regulation of smooth muscle cell proliferation	AGER	advanced glycosylation end product-specific receptor	-0.000173616908633346
GO:0048661: positive regulation of smooth muscle cell proliferation	ALOX12	arachidonate 12-lipoxygenase	-0.0019405398748443708
GO:0048661: positive regulation of smooth muscle cell proliferation	BMP4	bone morphogenetic protein 4	-0.00032047514972448034
GO:0048661: positive regulation of smooth muscle cell proliferation	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021007980797055725
GO:0048661: positive regulation of smooth muscle cell proliferation	FGFR2	fibroblast growth factor receptor 2	0.0007577660838057597
GO:0048661: positive regulation of smooth muscle cell proliferation	HMOX1	heme oxygenase (decycling) 1	-0.00021587041829301972
GO:0048661: positive regulation of smooth muscle cell proliferation	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.034193068601435e-5
GO:0048661: positive regulation of smooth muscle cell proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012889561004382217
GO:0048661: positive regulation of smooth muscle cell proliferation	IRAK1	interleukin-1 receptor-associated kinase 1	-0.001597864610406034
GO:0048661: positive regulation of smooth muscle cell proliferation	ORC1	origin recognition complex, subunit 1	-0.0007351319920685374
GO:0048661: positive regulation of smooth muscle cell proliferation	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003567015459709958
GO:0048661: positive regulation of smooth muscle cell proliferation	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006549047756364494
GO:0048661: positive regulation of smooth muscle cell proliferation	SKP2	S-phase kinase-associated protein 2, E3 ubiquitin protein ligase	-0.000536049401162416
GO:0050729: positive regulation of inflammatory response	AGER	advanced glycosylation end product-specific receptor	-0.00017368653090787847
GO:0050729: positive regulation of inflammatory response	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011252073986677221
GO:0050729: positive regulation of inflammatory response	AGTR1	angiotensin II receptor, type 1	0.0003474740820156124
GO:0050729: positive regulation of inflammatory response	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.002104117940572662
GO:0050729: positive regulation of inflammatory response	IL12B	interleukin 12B	0.001271469597325173
GO:0050729: positive regulation of inflammatory response	JAK2	Janus kinase 2	-3.2577995143776265e-5
GO:0050729: positive regulation of inflammatory response	PRKCA	protein kinase C, alpha	-5.925663619042901e-6
GO:0050729: positive regulation of inflammatory response	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011261607376992429
GO:0050729: positive regulation of inflammatory response	STAT5A	signal transducer and activator of transcription 5A	0.001588238638304995
GO:0050729: positive regulation of inflammatory response	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006636463894865764
GO:0050930: induction of positive chemotaxis	AGER	advanced glycosylation end product-specific receptor	-0.0001744705746370807
GO:0050930: induction of positive chemotaxis	AZU1	azurocidin 1	0.0001983598116753361
GO:0050930: induction of positive chemotaxis	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012109384003218444
GO:0050930: induction of positive chemotaxis	PRKCA	protein kinase C, alpha	-5.875526875742662e-6
GO:0050930: induction of positive chemotaxis	VEGFA	vascular endothelial growth factor A	0.0005965945992619954
GO:0050930: induction of positive chemotaxis	VEGFC	vascular endothelial growth factor C	-0.0033707730129195752
GO:0051092: positive regulation of NF-kappaB transcription factor activity	AGER	advanced glycosylation end product-specific receptor	-0.00017432335669368234
GO:0051092: positive regulation of NF-kappaB transcription factor activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011337690988374243
GO:0051092: positive regulation of NF-kappaB transcription factor activity	AR	androgen receptor	0.0026406868806194937
GO:0051092: positive regulation of NF-kappaB transcription factor activity	CIB1	calcium and integrin binding 1 (calmyrin)	5.504244238658175e-5
GO:0051092: positive regulation of NF-kappaB transcription factor activity	CLOCK	clock circadian regulator	0.0002002939501082524
GO:0051092: positive regulation of NF-kappaB transcription factor activity	CTH	cystathionine gamma-lyase	0.0017494893888893985
GO:0051092: positive regulation of NF-kappaB transcription factor activity	EDA	ectodysplasin A	-0.0008150419386035187
GO:0051092: positive regulation of NF-kappaB transcription factor activity	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008278792419378843
GO:0051092: positive regulation of NF-kappaB transcription factor activity	ICAM1	intercellular adhesion molecule 1	0.0007295545166121156
GO:0051092: positive regulation of NF-kappaB transcription factor activity	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016102921022455624
GO:0051092: positive regulation of NF-kappaB transcription factor activity	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011687984728779921
GO:0051092: positive regulation of NF-kappaB transcription factor activity	PRKCZ	protein kinase C, zeta	-0.0016019594428588924
GO:0051092: positive regulation of NF-kappaB transcription factor activity	SPHK1	sphingosine kinase 1	0.0018118210860012104
GO:0051092: positive regulation of NF-kappaB transcription factor activity	TGFB1	transforming growth factor, beta 1	-7.288180145474257e-5
GO:0051092: positive regulation of NF-kappaB transcription factor activity	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002777704844494479
GO:0051092: positive regulation of NF-kappaB transcription factor activity	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006677078796261195
GO:0051101: regulation of DNA binding	AGER	advanced glycosylation end product-specific receptor	-0.00017282634813972476
GO:0051101: regulation of DNA binding	CSNK2B	casein kinase 2, beta polypeptide	0.0015049502358291905
GO:0051101: regulation of DNA binding	HJURP	Holliday junction recognition protein	-7.69283800500539e-5
GO:0051101: regulation of DNA binding	TGFB1	transforming growth factor, beta 1	-7.144391121537727e-5
GO:0051595: response to methylglyoxal	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886402
GO:0055074: calcium ion homeostasis	AGER	advanced glycosylation end product-specific receptor	-0.00017381943443857027
GO:0055074: calcium ion homeostasis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005338583631218381
GO:0055074: calcium ion homeostasis	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00046865746350316725
GO:0055074: calcium ion homeostasis	S100A14	S100 calcium binding protein A14	-0.0021505132543200903
GO:0055074: calcium ion homeostasis	WFS1	Wolfram syndrome 1 (wolframin)	0.0005753734761084314
GO:0055093: response to hyperoxia	AGER	advanced glycosylation end product-specific receptor	-0.00017449376181797105
GO:0055093: response to hyperoxia	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029210754344249144
GO:0055093: response to hyperoxia	COL1A1	collagen, type I, alpha 1	-0.0005294384627999854
GO:0055093: response to hyperoxia	HDAC2	histone deacetylase 2	-0.0012086430895868051
GO:0055093: response to hyperoxia	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003637642548400948
GO:0060100: positive regulation of phagocytosis, engulfment	AGER	advanced glycosylation end product-specific receptor	-0.00017437269042957536
GO:0060100: positive regulation of phagocytosis, engulfment	GATA2	GATA binding protein 2	-0.0004513906883960616
GO:0060100: positive regulation of phagocytosis, engulfment	STAP1	signal transducing adaptor family member 1	0.0024456487733629686
GO:0060290: transdifferentiation	AGER	advanced glycosylation end product-specific receptor	-0.00017186886896242503
GO:0060290: transdifferentiation	GATA4	GATA binding protein 4	-0.001065068360554505
GO:0060290: transdifferentiation	PDX1	pancreatic and duodenal homeobox 1	0.0002467660872811067
GO:0070301: cellular response to hydrogen peroxide	AGER	advanced glycosylation end product-specific receptor	-0.00017398449921313588
GO:0070301: cellular response to hydrogen peroxide	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029017685972320692
GO:0070301: cellular response to hydrogen peroxide	CST3	cystatin C	-6.895543295744776e-5
GO:0070301: cellular response to hydrogen peroxide	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003967770016374727
GO:0070301: cellular response to hydrogen peroxide	ECT2	epithelial cell transforming 2	0.0010582300901999437
GO:0070301: cellular response to hydrogen peroxide	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013681638465076702
GO:0070301: cellular response to hydrogen peroxide	HDAC2	histone deacetylase 2	-0.0012039100219929332
GO:0070301: cellular response to hydrogen peroxide	KLF2	Kruppel-like factor 2	-0.0012287365066860779
GO:0070301: cellular response to hydrogen peroxide	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.00034107897841057546
GO:0070301: cellular response to hydrogen peroxide	PAX2	paired box 2	-0.0016077238925806024
GO:0070301: cellular response to hydrogen peroxide	SIRT1	sirtuin 1	-2.3537799167039087e-6
GO:0070301: cellular response to hydrogen peroxide	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.001112613910605441
GO:0071333: cellular response to glucose stimulus	AGER	advanced glycosylation end product-specific receptor	-0.00017279936772989372
GO:0071333: cellular response to glucose stimulus	GATA4	GATA binding protein 4	-0.0010778050662791764
GO:0071333: cellular response to glucose stimulus	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.00023142460422644463
GO:0071333: cellular response to glucose stimulus	ICAM1	intercellular adhesion molecule 1	0.0007224109980621387
GO:0071333: cellular response to glucose stimulus	PAX2	paired box 2	-0.0015880765090634649
GO:0071333: cellular response to glucose stimulus	PDK3	pyruvate dehydrogenase kinase, isozyme 3	0.000754506730706234
GO:0071333: cellular response to glucose stimulus	SOX4	SRY (sex determining region Y)-box 4	-4.098999002189909e-5
GO:0071333: cellular response to glucose stimulus	STAR	steroidogenic acute regulatory protein	0.0008794869527143405
GO:0071333: cellular response to glucose stimulus	TH	tyrosine hydroxylase	-0.0003388087754680802
GO:0071333: cellular response to glucose stimulus	XBP1	X-box binding protein 1	0.00026540600671913294
GO:0071398: cellular response to fatty acid	AGER	advanced glycosylation end product-specific receptor	-0.00017403648752573953
GO:0071398: cellular response to fatty acid	CCNB1	cyclin B1	-0.0008811124135056444
GO:0071398: cellular response to fatty acid	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.001270330116278569
GO:0071398: cellular response to fatty acid	E2F1	E2F transcription factor 1	0.0020919373161603742
GO:0071398: cellular response to fatty acid	PDK3	pyruvate dehydrogenase kinase, isozyme 3	0.0007692072096432325
GO:0071407: cellular response to organic cyclic compound	AGER	advanced glycosylation end product-specific receptor	-0.00017355911864847418
GO:0071407: cellular response to organic cyclic compound	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007233967173948212
GO:0071407: cellular response to organic cyclic compound	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006222397836267628
GO:0071407: cellular response to organic cyclic compound	AXIN1	axin 1	-0.0007244654666458461
GO:0071407: cellular response to organic cyclic compound	CCL2	chemokine (C-C motif) ligand 2	0.0008079755974389146
GO:0071407: cellular response to organic cyclic compound	CCNB1	cyclin B1	-0.00088072126140183
GO:0071407: cellular response to organic cyclic compound	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039486470563334156
GO:0071407: cellular response to organic cyclic compound	GLI2	GLI family zinc finger 2	0.001837581607770745
GO:0071407: cellular response to organic cyclic compound	MGMT	O-6-methylguanine-DNA methyltransferase	0.00040810796283312486
GO:0071407: cellular response to organic cyclic compound	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0021684321580586084
GO:0071407: cellular response to organic cyclic compound	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.0012506631005173503
GO:0071407: cellular response to organic cyclic compound	TGFB1	transforming growth factor, beta 1	-7.087309899284875e-5
GO:0072657: protein localization to membrane	AGER	advanced glycosylation end product-specific receptor	-0.00017484498155257265
GO:0072657: protein localization to membrane	CPE	carboxypeptidase E	-0.0025599025182961
GO:0072714: response to selenite ion	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886402
GO:1901018: positive regulation of potassium ion transmembrane transporter activity	AGER	advanced glycosylation end product-specific receptor	-0.00017284645634956512
GO:1901018: positive regulation of potassium ion transmembrane transporter activity	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0014828321350051441
GO:2000353: positive regulation of endothelial cell apoptotic process	AGER	advanced glycosylation end product-specific receptor	-0.00017100918134362413
GO:2000353: positive regulation of endothelial cell apoptotic process	BMP4	bone morphogenetic protein 4	-0.00031126678406137034
GO:2000353: positive regulation of endothelial cell apoptotic process	THBS1	thrombospondin 1	-0.0009981485010827531
GO:2000353: positive regulation of endothelial cell apoptotic process	XBP1	X-box binding protein 1	0.0002619672047020385
GO:2000379: positive regulation of reactive oxygen species metabolic process	AGER	advanced glycosylation end product-specific receptor	-0.0001744571595647959
GO:2000379: positive regulation of reactive oxygen species metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011398484349049044
GO:2000379: positive regulation of reactive oxygen species metabolic process	AGTR1	angiotensin II receptor, type 1	0.00034680765305723424
GO:2000379: positive regulation of reactive oxygen species metabolic process	GRB2	growth factor receptor-bound protein 2	0.0004309935682787311
GO:2000379: positive regulation of reactive oxygen species metabolic process	LEP	leptin	0.0032042520517062507
GO:2000379: positive regulation of reactive oxygen species metabolic process	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.000364462690830529
GO:2000379: positive regulation of reactive oxygen species metabolic process	THBS1	thrombospondin 1	-0.0010398131143783793
GO:2000379: positive regulation of reactive oxygen species metabolic process	TP53	tumor protein p53	0.0011816822614750904
GO:2000676: positive regulation of type B pancreatic cell apoptotic process	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886402
GO:0010628: positive regulation of gene expression	AGR2	anterior gradient 2	0.0016310258540125492
GO:0010628: positive regulation of gene expression	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030214035597184875
GO:0010628: positive regulation of gene expression	ALOX12	arachidonate 12-lipoxygenase	-0.0019549918846050425
GO:0010628: positive regulation of gene expression	ANK3	ankyrin 3, node of Ranvier (ankyrin G)	0.000700632693638854
GO:0010628: positive regulation of gene expression	AR	androgen receptor	0.0026413070273786808
GO:0010628: positive regulation of gene expression	AVP	arginine vasopressin	-0.0009377555621954944
GO:0010628: positive regulation of gene expression	AZU1	azurocidin 1	0.00019825339451055325
GO:0010628: positive regulation of gene expression	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005358314464250325
GO:0010628: positive regulation of gene expression	CDC42	cell division cycle 42	0.001241418090922577
GO:0010628: positive regulation of gene expression	CDH3	cadherin 3, type 1, P-cadherin (placental)	-0.0012325089245543422
GO:0010628: positive regulation of gene expression	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028206444034184638
GO:0010628: positive regulation of gene expression	DICER1	dicer 1, ribonuclease type III	-1.5939035530301053e-5
GO:0010628: positive regulation of gene expression	E2F1	E2F transcription factor 1	0.002098926028093333
GO:0010628: positive regulation of gene expression	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009845874591857982
GO:0010628: positive regulation of gene expression	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016104021761663924
GO:0010628: positive regulation of gene expression	HINFP	histone H4 transcription factor	0.000992722439201623
GO:0010628: positive regulation of gene expression	HMGA2	high mobility group AT-hook 2	0.0015103700696538385
GO:0010628: positive regulation of gene expression	HPN	hepsin	0.00316146234735578
GO:0010628: positive regulation of gene expression	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.018731043526224e-5
GO:0010628: positive regulation of gene expression	IFNG	interferon, gamma	-4.90421820460457e-5
GO:0010628: positive regulation of gene expression	INHBA	inhibin, beta A	-0.0013537125209557627
GO:0010628: positive regulation of gene expression	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014014776966537064
GO:0010628: positive regulation of gene expression	LEF1	lymphoid enhancer-binding factor 1	-0.00010009965043653962
GO:0010628: positive regulation of gene expression	MED1	mediator complex subunit 1	0.00112979237132437
GO:0010628: positive regulation of gene expression	MEF2C	myocyte enhancer factor 2C	0.0009740408352369692
GO:0010628: positive regulation of gene expression	PAX6	paired box 6	0.0019366682096019533
GO:0010628: positive regulation of gene expression	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007814128934088675
GO:0010628: positive regulation of gene expression	SMO	smoothened, frizzled class receptor	0.002140706813498218
GO:0010628: positive regulation of gene expression	SOX11	SRY (sex determining region Y)-box 11	-0.00021004944823715366
GO:0010628: positive regulation of gene expression	STAP1	signal transducing adaptor family member 1	0.002445488441460361
GO:0010628: positive regulation of gene expression	STAR	steroidogenic acute regulatory protein	0.0008950555723609026
GO:0010628: positive regulation of gene expression	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004804717661061143
GO:0010628: positive regulation of gene expression	TGFB1	transforming growth factor, beta 1	-7.277166689019992e-5
GO:0010628: positive regulation of gene expression	TGFB2	transforming growth factor, beta 2	-0.0010601601271692353
GO:0010628: positive regulation of gene expression	TGFBR1	transforming growth factor, beta receptor 1	0.0003400085653103005
GO:0010628: positive regulation of gene expression	TNC	tenascin C	0.0007351709405452428
GO:0010628: positive regulation of gene expression	TP53	tumor protein p53	0.0011762529207385666
GO:0010628: positive regulation of gene expression	TWIST1	twist family bHLH transcription factor 1	-0.0013424544095350138
GO:0010628: positive regulation of gene expression	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005641977550405353
GO:0010628: positive regulation of gene expression	VEGFA	vascular endothelial growth factor A	0.0005948186584939901
GO:0010628: positive regulation of gene expression	ZPR1	ZPR1 zinc finger	-0.00021008505472527565
GO:0010811: positive regulation of cell-substrate adhesion	AGR2	anterior gradient 2	0.0016160594067224788
GO:0010811: positive regulation of cell-substrate adhesion	EGFL6	EGF-like-domain, multiple 6	0.00013387785099819064
GO:0010811: positive regulation of cell-substrate adhesion	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.001385132937098838
GO:0010811: positive regulation of cell-substrate adhesion	JAK2	Janus kinase 2	-3.5414436133217143e-5
GO:0010811: positive regulation of cell-substrate adhesion	PTN	pleiotrophin	0.00029182850013118446
GO:0010811: positive regulation of cell-substrate adhesion	THBS1	thrombospondin 1	-0.0010220888368528101
GO:0045742: positive regulation of epidermal growth factor receptor signaling pathway	AGR2	anterior gradient 2	0.0016287095961735913
GO:0045742: positive regulation of epidermal growth factor receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011385117083971212
GO:0048546: digestive tract morphogenesis	AGR2	anterior gradient 2	0.0016204944302982789
GO:0048546: digestive tract morphogenesis	BBS7	Bardet-Biedl syndrome 7	-0.0009711614268199311
GO:0048546: digestive tract morphogenesis	BCL2	B-cell CLL/lymphoma 2	-5.6145633553906e-6
GO:0048546: digestive tract morphogenesis	EGFR	epidermal growth factor receptor	0.0006825754042497433
GO:0048546: digestive tract morphogenesis	EPHB3	EPH receptor B3	0.0008813007896211689
GO:0048546: digestive tract morphogenesis	FGFR3	fibroblast growth factor receptor 3	0.0002207993340683324
GO:0048546: digestive tract morphogenesis	GLI1	GLI family zinc finger 1	-0.0012917663020571226
GO:0048546: digestive tract morphogenesis	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006434311090543008
GO:0048546: digestive tract morphogenesis	SFRP1	secreted frizzled-related protein 1	0.0012754926175704386
GO:0048546: digestive tract morphogenesis	SOX10	SRY (sex determining region Y)-box 10	0.00018939330145281645
GO:0048546: digestive tract morphogenesis	STRA6	stimulated by retinoic acid 6	-0.0016729989147031125
GO:0048546: digestive tract morphogenesis	STX2	syntaxin 2	0.0003062489153723765
GO:0048546: digestive tract morphogenesis	TP73	tumor protein p73	0.001022991935448291
GO:0048639: positive regulation of developmental growth	AGR2	anterior gradient 2	0.001637915018435804
GO:0048639: positive regulation of developmental growth	C3	complement component 3	0.0020417287878284713
GO:0048639: positive regulation of developmental growth	INSR	insulin receptor	-0.0013755111282643961
GO:0048639: positive regulation of developmental growth	LEP	leptin	0.0032210207512611143
GO:0048639: positive regulation of developmental growth	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001569876837510462
GO:0048639: positive regulation of developmental growth	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.001869449519710636
GO:0060480: lung goblet cell differentiation	AGR2	anterior gradient 2	0.0016381287197342273
GO:0060480: lung goblet cell differentiation	HOXA5	homeobox A5	0.001073533567555015
GO:0060480: lung goblet cell differentiation	SPDEF	SAM pointed domain containing ETS transcription factor	0.003155937456267704
GO:0060548: negative regulation of cell death	AGR2	anterior gradient 2	0.0015923902205138083
GO:0060548: negative regulation of cell death	BMP4	bone morphogenetic protein 4	-0.0003125633803041754
GO:0060548: negative regulation of cell death	BMP7	bone morphogenetic protein 7	0.0008343654848161872
GO:0060548: negative regulation of cell death	CST3	cystatin C	-5.692310563403823e-5
GO:0060548: negative regulation of cell death	MGMT	O-6-methylguanine-DNA methyltransferase	0.00040862938546453657
GO:0060548: negative regulation of cell death	NCK1	NCK adaptor protein 1	-0.0007719424766182609
GO:0060548: negative regulation of cell death	SOX11	SRY (sex determining region Y)-box 11	-0.00021052977470417653
GO:0060548: negative regulation of cell death	SOX4	SRY (sex determining region Y)-box 4	-4.635715176203939e-5
GO:0070254: mucus secretion	AGR2	anterior gradient 2	0.001616559967177163
GO:0070254: mucus secretion	VAMP8	vesicle-associated membrane protein 8	-5.739824683197598e-5
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	AGR2	anterior gradient 2	0.0016314391645785944
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007330372891685903
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	CIB1	calcium and integrin binding 1 (calmyrin)	5.371600698006652e-5
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014033841205646693
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024347740464617847
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	AGR2	anterior gradient 2	0.0016261012102319803
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	BAK1	BCL2-antagonist/killer 1	-0.0018674303700608114
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	BAX	BCL2-associated X protein	-0.0004245322910266184
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007730341545850334
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.0010358127098714785
GO:1903899: positive regulation of PERK-mediated unfolded protein response	AGR2	anterior gradient 2	0.0016154099039124748
GO:1903899: positive regulation of PERK-mediated unfolded protein response	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.0003276632763198135
KEGG:04920: Adipocytokine signaling pathway	AGRP	agouti related protein homolog (mouse)	-0.0025845829348576078
KEGG:04920: Adipocytokine signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007355932430650508
KEGG:04920: Adipocytokine signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006290229838738279
KEGG:04920: Adipocytokine signaling pathway	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012785223405717783
KEGG:04920: Adipocytokine signaling pathway	JAK2	Janus kinase 2	-3.113227062993065e-5
KEGG:04920: Adipocytokine signaling pathway	LEP	leptin	0.003211828918788136
KEGG:04920: Adipocytokine signaling pathway	RXRA	retinoid X receptor, alpha	0.001121717684646562
GO:0007218: neuropeptide signaling pathway	AGRP	agouti related protein homolog (mouse)	-0.0025980799544318934
GO:0007218: neuropeptide signaling pathway	CPE	carboxypeptidase E	-0.002572735144835653
GO:0007218: neuropeptide signaling pathway	NMU	neuromedin U	0.0018733421957252017
GO:0007623: circadian rhythm	AGRP	agouti related protein homolog (mouse)	-0.0025814852074817155
GO:0007623: circadian rhythm	ATF5	activating transcription factor 5	-0.0027469170643408198
GO:0007623: circadian rhythm	AVP	arginine vasopressin	-0.0009420770898513257
GO:0007623: circadian rhythm	CLOCK	clock circadian regulator	0.00019997548570510718
GO:0007623: circadian rhythm	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012770387922196988
GO:0007623: circadian rhythm	CREB1	cAMP responsive element binding protein 1	0.0006623944954809942
GO:0007623: circadian rhythm	DRD4	dopamine receptor D4	-0.001952794650019906
GO:0007623: circadian rhythm	EGR1	early growth response 1	0.0010978600316305877
GO:0007623: circadian rhythm	FAS	Fas cell surface death receptor	-3.360411498469052e-5
GO:0007623: circadian rhythm	GSK3B	glycogen synthase kinase 3 beta	0.00155612539153161
GO:0007623: circadian rhythm	LEP	leptin	0.003207028097573989
GO:0007623: circadian rhythm	NRIP1	nuclear receptor interacting protein 1	0.0010756727878886592
GO:0007623: circadian rhythm	PER2	period circadian clock 2	0.0012439650648792557
GO:0007623: circadian rhythm	PROX1	prospero homeobox 1	0.001126948966941315
GO:0007623: circadian rhythm	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011194746317624206
GO:0007623: circadian rhythm	TYMS	thymidylate synthetase	0.0015696074884617005
GO:0007631: feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.0025763120403676128
GO:0007631: feeding behavior	DRD2	dopamine receptor D2	-0.00023435807408985756
GO:0007631: feeding behavior	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005261961742939726
GO:0007631: feeding behavior	STRA6	stimulated by retinoic acid 6	-0.0016843392582535414
GO:0008343: adult feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.002606870165580466
GO:0008343: adult feeding behavior	LEP	leptin	0.0032441430554579808
GO:0009648: photoperiodism	AGRP	agouti related protein homolog (mouse)	-0.0025868273977543536
GO:0009648: photoperiodism	CLOCK	clock circadian regulator	0.00019957366041762484
GO:0009648: photoperiodism	DRD4	dopamine receptor D4	-0.001956260153389553
GO:0009648: photoperiodism	NMU	neuromedin U	0.0018635970788099952
GO:0009755: hormone-mediated signaling pathway	AGRP	agouti related protein homolog (mouse)	-0.0025752002813014085
GO:0009755: hormone-mediated signaling pathway	JAK2	Janus kinase 2	-3.2090430298764305e-5
GO:0009755: hormone-mediated signaling pathway	THRA	thyroid hormone receptor, alpha	0.0007650744811826131
GO:0042755: eating behavior	AGRP	agouti related protein homolog (mouse)	-0.002594858428084231
GO:0042755: eating behavior	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012815928713301433
GO:0042755: eating behavior	LEP	leptin	0.0032263055093409323
GO:0042755: eating behavior	NMU	neuromedin U	0.0018697811514943193
GO:0042755: eating behavior	TCF15	transcription factor 15 (basic helix-loop-helix)	-0.0026763268812153916
GO:0042755: eating behavior	TH	tyrosine hydroxylase	-0.00034417826032922074
GO:0060135: maternal process involved in female pregnancy	AGRP	agouti related protein homolog (mouse)	-0.0025713622040350738
GO:0060135: maternal process involved in female pregnancy	CCL2	chemokine (C-C motif) ligand 2	0.000816708521557509
GO:0060135: maternal process involved in female pregnancy	DSG2	desmoglein 2	1.6629764802001575e-5
GO:0060135: maternal process involved in female pregnancy	IHH	indian hedgehog	-0.0020411997218876183
GO:0060135: maternal process involved in female pregnancy	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014006125361972627
GO:0060135: maternal process involved in female pregnancy	LGALS9	lectin, galactoside-binding, soluble, 9	-0.0001169411196383884
GO:0060135: maternal process involved in female pregnancy	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004253568499009929
GO:0060259: regulation of feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.0025994695453300204
GO:2000253: positive regulation of feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.0025994695453300204
KEGG:04614: Renin-angiotensin system	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011169922119025704
KEGG:04614: Renin-angiotensin system	AGTR1	angiotensin II receptor, type 1	0.00034521637758961514
KEGG:04614: Renin-angiotensin system	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029097664979938186
KEGG:04924: Renin secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001113920608409531
KEGG:04924: Renin secretion	AGTR1	angiotensin II receptor, type 1	0.00034539412973386114
KEGG:04924: Renin secretion	CREB1	cAMP responsive element binding protein 1	0.0006467805974784753
KEGG:04924: Renin secretion	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007686695942128231
KEGG:04924: Renin secretion	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007667497713812746
KEGG:04924: Renin secretion	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006468055333396444
KEGG:04924: Renin secretion	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00014994329191748583
KEGG:04924: Renin secretion	PRKX	protein kinase, X-linked	0.0003880034855906033
GO:0001543: ovarian follicle rupture	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011335364167528723
GO:0001543: ovarian follicle rupture	NRIP1	nuclear receptor interacting protein 1	0.0010690839378154197
GO:0001558: regulation of cell growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001123959195792694
GO:0001558: regulation of cell growth	AGTR1	angiotensin II receptor, type 1	0.00034646295979796985
GO:0001558: regulation of cell growth	FOXM1	forkhead box M1	0.00019628552953102432
GO:0001558: regulation of cell growth	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.0001426537525805145
GO:0001558: regulation of cell growth	IGFBP3	insulin-like growth factor binding protein 3	0.0008327229314907612
GO:0001558: regulation of cell growth	IGFBP4	insulin-like growth factor binding protein 4	-0.001270668773766047
GO:0001558: regulation of cell growth	IGFBP6	insulin-like growth factor binding protein 6	-0.0020158103178430815
GO:0001558: regulation of cell growth	KIF14	kinesin family member 14	0.0004840104428949065
GO:0001568: blood vessel development	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011386435333327549
GO:0001568: blood vessel development	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030282294877035376
GO:0001568: blood vessel development	COL1A1	collagen, type I, alpha 1	-0.0005294449881268176
GO:0001568: blood vessel development	COL5A1	collagen, type V, alpha 1	-5.199023414011665e-5
GO:0001568: blood vessel development	FOXO1	forkhead box O1	0.0018057365213942009
GO:0001568: blood vessel development	LOX	lysyl oxidase	-0.0005785892056026904
GO:0001568: blood vessel development	MEF2C	myocyte enhancer factor 2C	0.0009770104438555634
GO:0001568: blood vessel development	PAX6	paired box 6	0.0019421263098318646
GO:0001568: blood vessel development	SPHK1	sphingosine kinase 1	0.00181682319480203
GO:0001568: blood vessel development	STRA6	stimulated by retinoic acid 6	-0.0016860521972014936
GO:0001568: blood vessel development	TBX3	T-box 3	0.001228910923017605
GO:0001568: blood vessel development	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005761762234375021
GO:0001658: branching involved in ureteric bud morphogenesis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011324215955683154
GO:0001658: branching involved in ureteric bud morphogenesis	BCL2	B-cell CLL/lymphoma 2	-4.783028522101437e-6
GO:0001658: branching involved in ureteric bud morphogenesis	BMP4	bone morphogenetic protein 4	-0.0003223100774521653
GO:0001658: branching involved in ureteric bud morphogenesis	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002816671739752052
GO:0001658: branching involved in ureteric bud morphogenesis	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011696429615207499
GO:0001658: branching involved in ureteric bud morphogenesis	CTNNBIP1	catenin, beta interacting protein 1	0.0005853909251136395
GO:0001658: branching involved in ureteric bud morphogenesis	EYA1	EYA transcriptional coactivator and phosphatase 1	5.3101448289862804e-5
GO:0001658: branching involved in ureteric bud morphogenesis	FGF8	fibroblast growth factor 8 (androgen-induced)	0.000983333490772944
GO:0001658: branching involved in ureteric bud morphogenesis	GDNF	glial cell derived neurotrophic factor	0.0004445285581730751
GO:0001658: branching involved in ureteric bud morphogenesis	GLI3	GLI family zinc finger 3	-0.0021500712390826906
GO:0001658: branching involved in ureteric bud morphogenesis	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008268716043978848
GO:0001658: branching involved in ureteric bud morphogenesis	LHX1	LIM homeobox 1	-0.0007582861704903151
GO:0001658: branching involved in ureteric bud morphogenesis	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011360947770484141
GO:0001658: branching involved in ureteric bud morphogenesis	PAX2	paired box 2	-0.0016129605463831634
GO:0001658: branching involved in ureteric bud morphogenesis	PAX8	paired box 8	0.0009476322499311971
GO:0001658: branching involved in ureteric bud morphogenesis	PTCH1	patched 1	-6.596917879542906e-5
GO:0001658: branching involved in ureteric bud morphogenesis	SALL1	spalt-like transcription factor 1	-0.0024359193832538743
GO:0001658: branching involved in ureteric bud morphogenesis	SHH	sonic hedgehog	0.0005995941296707861
GO:0001658: branching involved in ureteric bud morphogenesis	SIX1	SIX homeobox 1	-0.001868809183266128
GO:0001658: branching involved in ureteric bud morphogenesis	SOX9	SRY (sex determining region Y)-box 9	-0.0005185016850486458
GO:0001658: branching involved in ureteric bud morphogenesis	WNT1	wingless-type MMTV integration site family, member 1	0.0007864630843607668
GO:0001658: branching involved in ureteric bud morphogenesis	WNT4	wingless-type MMTV integration site family, member 4	-0.00025172347220730297
GO:0001658: branching involved in ureteric bud morphogenesis	WT1	Wilms tumor 1	-0.0005066333996672469
GO:0001819: positive regulation of cytokine production	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011514506577944977
GO:0001819: positive regulation of cytokine production	FLOT1	flotillin 1	-0.0007700431463739403
GO:0001819: positive regulation of cytokine production	LEP	leptin	0.0032303020301803704
GO:0001822: kidney development	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011322885087761368
GO:0001822: kidney development	AGTR1	angiotensin II receptor, type 1	0.0003476434851386541
GO:0001822: kidney development	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030174404523699125
GO:0001822: kidney development	APC	adenomatous polyposis coli	0.0006435382371252011
GO:0001822: kidney development	ARL3	ADP-ribosylation factor-like 3	-0.0011802692847468802
GO:0001822: kidney development	ASS1	argininosuccinate synthase 1	0.000142366671568351
GO:0001822: kidney development	BAX	BCL2-associated X protein	-0.0004249557315746537
GO:0001822: kidney development	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007744094988060543
GO:0001822: kidney development	BMP4	bone morphogenetic protein 4	-0.0003224151679729273
GO:0001822: kidney development	GATA3	GATA binding protein 3	-3.896905088019679e-5
GO:0001822: kidney development	GLI2	GLI family zinc finger 2	0.0018523887542204831
GO:0001822: kidney development	JMJD6	jumonji domain containing 6	0.0035889838784816473
GO:0001822: kidney development	LEF1	lymphoid enhancer-binding factor 1	-0.00010030675272366691
GO:0001822: kidney development	LHX1	LIM homeobox 1	-0.0007582482598129823
GO:0001822: kidney development	ODC1	ornithine decarboxylase 1	0.0008248122290811505
GO:0001822: kidney development	PAX8	paired box 8	0.0009477606784070609
GO:0001822: kidney development	PROX1	prospero homeobox 1	0.0011207695483854557
GO:0001822: kidney development	SALL1	spalt-like transcription factor 1	-0.0024356065514120366
GO:0001822: kidney development	SIX1	SIX homeobox 1	-0.0018688725541587943
GO:0001822: kidney development	SOX11	SRY (sex determining region Y)-box 11	-0.0002090406384749122
GO:0001822: kidney development	STRA6	stimulated by retinoic acid 6	-0.001679429629279703
GO:0001822: kidney development	SULF1	sulfatase 1	-0.0008049564743280626
GO:0001822: kidney development	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00047965538095742137
GO:0001822: kidney development	TGFBR1	transforming growth factor, beta receptor 1	0.00033964589359753404
GO:0001822: kidney development	THRA	thyroid hormone receptor, alpha	0.0007627917589666243
GO:0001822: kidney development	TP73	tumor protein p73	0.001027278884381265
GO:0001822: kidney development	VEGFA	vascular endothelial growth factor A	0.0005944993942241003
GO:0001822: kidney development	WFS1	Wolfram syndrome 1 (wolframin)	0.0005765835697601827
GO:0001822: kidney development	WNT4	wingless-type MMTV integration site family, member 4	-0.0002517607146785746
GO:0001822: kidney development	WT1	Wilms tumor 1	-0.0005065112946419219
GO:0001998: angiotensin mediated vasoconstriction involved in regulation of systemic arterial blood pressure	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0001999: renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0002003: angiotensin maturation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0002016: regulation of blood volume by renin-angiotensin	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0002018: renin-angiotensin regulation of aldosterone production	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0002018: renin-angiotensin regulation of aldosterone production	AGTR1	angiotensin II receptor, type 1	0.0003451843215497573
GO:0002019: regulation of renal output by angiotensin	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0002027: regulation of heart rate	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001119020788800717
GO:0002027: regulation of heart rate	DRD2	dopamine receptor D2	-0.0002322212772190436
GO:0002027: regulation of heart rate	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005611155218810464
GO:0002034: regulation of blood vessel size by renin-angiotensin	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011197730280088998
GO:0002034: regulation of blood vessel size by renin-angiotensin	AGTR1	angiotensin II receptor, type 1	0.00034590288283904426
GO:0002034: regulation of blood vessel size by renin-angiotensin	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.000652590444932185
GO:0003014: renal system process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011242494876576783
GO:0003014: renal system process	BCL2	B-cell CLL/lymphoma 2	-4.809622110100641e-6
GO:0003014: renal system process	BMP4	bone morphogenetic protein 4	-0.000320652952761325
GO:0003014: renal system process	FAS	Fas cell surface death receptor	-3.3127978881144846e-5
GO:0003014: renal system process	PKN1	protein kinase N1	-0.001892313990609453
GO:0003051: angiotensin-mediated drinking behavior	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0003331: positive regulation of extracellular matrix constituent secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0006883: cellular sodium ion homeostasis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011378125879293237
GO:0006883: cellular sodium ion homeostasis	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0015001052654050242
GO:0007160: cell-matrix adhesion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001137994361868291
GO:0007160: cell-matrix adhesion	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007757746956300358
GO:0007160: cell-matrix adhesion	CD63	CD63 molecule	-0.0010646265330701342
GO:0007160: cell-matrix adhesion	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011670494850022751
GO:0007160: cell-matrix adhesion	EDA	ectodysplasin A	-0.0008172001685629277
GO:0007160: cell-matrix adhesion	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014023025785692756
GO:0007160: cell-matrix adhesion	ITGA6	integrin, alpha 6	0.0016758569954095253
GO:0007160: cell-matrix adhesion	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024336332480607284
GO:0007160: cell-matrix adhesion	ITGB4	integrin, beta 4	0.0005828388908821709
GO:0007160: cell-matrix adhesion	THBS3	thrombospondin 3	0.0016203013163478286
GO:0007186: G-protein coupled receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011356818867707846
GO:0007186: G-protein coupled receptor signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00034727750241947836
GO:0007186: G-protein coupled receptor signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007317522629380932
GO:0007186: G-protein coupled receptor signaling pathway	AREG	amphiregulin	0.0024600912856273306
GO:0007186: G-protein coupled receptor signaling pathway	C3	complement component 3	0.002027451858856666
GO:0007186: G-protein coupled receptor signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.000817963095929395
GO:0007186: G-protein coupled receptor signaling pathway	CCL7	chemokine (C-C motif) ligand 7	-0.002404945351222657
GO:0007186: G-protein coupled receptor signaling pathway	CCL8	chemokine (C-C motif) ligand 8	-0.0005905841499930059
GO:0007186: G-protein coupled receptor signaling pathway	CELSR2	cadherin, EGF LAG seven-pass G-type receptor 2	-0.0011365478355988006
GO:0007186: G-protein coupled receptor signaling pathway	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.00212059621953148
GO:0007186: G-protein coupled receptor signaling pathway	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008580729258881203
GO:0007186: G-protein coupled receptor signaling pathway	CXCL10	chemokine (C-X-C motif) ligand 10	6.319419337399725e-5
GO:0007186: G-protein coupled receptor signaling pathway	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012103273851138338
GO:0007186: G-protein coupled receptor signaling pathway	CXCL13	chemokine (C-X-C motif) ligand 13	0.002997606473115206
GO:0007186: G-protein coupled receptor signaling pathway	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007961901815883605
GO:0007186: G-protein coupled receptor signaling pathway	FRS2	fibroblast growth factor receptor substrate 2	0.0009311209785255434
GO:0007186: G-protein coupled receptor signaling pathway	FZD3	frizzled class receptor 3	0.00037958442708152366
GO:0007186: G-protein coupled receptor signaling pathway	FZD7	frizzled class receptor 7	0.0010725725389893162
GO:0007186: G-protein coupled receptor signaling pathway	GNRHR	gonadotropin-releasing hormone receptor	0.0007414722958120301
GO:0007186: G-protein coupled receptor signaling pathway	GPR87	G protein-coupled receptor 87	-2.4972515873510445e-5
GO:0007186: G-protein coupled receptor signaling pathway	GPSM2	G-protein signaling modulator 2	0.001775301350673212
GO:0007186: G-protein coupled receptor signaling pathway	INSR	insulin receptor	-0.0013653012317385402
GO:0007186: G-protein coupled receptor signaling pathway	JAK2	Janus kinase 2	-3.129415782048629e-5
GO:0007186: G-protein coupled receptor signaling pathway	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.00030888653092908886
GO:0007186: G-protein coupled receptor signaling pathway	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029110400707595374
GO:0007186: G-protein coupled receptor signaling pathway	NMU	neuromedin U	0.001853474823473163
GO:0007186: G-protein coupled receptor signaling pathway	OR5I1	olfactory receptor, family 5, subfamily I, member 1	0.001884355024166388
GO:0007186: G-protein coupled receptor signaling pathway	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003624778230943911
GO:0007186: G-protein coupled receptor signaling pathway	SMO	smoothened, frizzled class receptor	0.0021421930109414
GO:0007186: G-protein coupled receptor signaling pathway	TULP3	tubby like protein 3	0.0009579090710494533
GO:0007199: G-protein coupled receptor signaling pathway coupled to cGMP nucleotide second messenger	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011148533931377084
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00034567159193022877
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	ESR1	estrogen receptor 1	-0.0009352668420446899
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005181719878916904
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	TGM2	transglutaminase 2	-0.0001769681504918576
GO:0007202: activation of phospholipase C activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001123689453306151
GO:0007202: activation of phospholipase C activity	CREB1	cAMP responsive element binding protein 1	0.000652625538609697
GO:0007202: activation of phospholipase C activity	EGFR	epidermal growth factor receptor	0.0006800670113925346
GO:0007202: activation of phospholipase C activity	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.000774488511587401
GO:0007202: activation of phospholipase C activity	PRKCA	protein kinase C, alpha	-5.831505823373609e-6
GO:0007202: activation of phospholipase C activity	PRKCD	protein kinase C, delta	-0.0011195788348135895
GO:0007250: activation of NF-kappaB-inducing kinase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001134244358973163
GO:0007250: activation of NF-kappaB-inducing kinase activity	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016090896509274894
GO:0007250: activation of NF-kappaB-inducing kinase activity	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029075314207793865
GO:0007263: nitric oxide mediated signal transduction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011272561800915576
GO:0007263: nitric oxide mediated signal transduction	PDX1	pancreatic and duodenal homeobox 1	0.0002558342245161701
GO:0007588: excretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011194164532164908
GO:0007588: excretion	HMOX1	heme oxygenase (decycling) 1	-0.00021522995210703432
GO:0007588: excretion	SLC22A18	solute carrier family 22, member 18	0.0007274064541036468
GO:0008065: establishment of blood-nerve barrier	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001136418554814798
GO:0008065: establishment of blood-nerve barrier	GSTM3	glutathione S-transferase mu 3 (brain)	-0.0012904510104553932
GO:0009651: response to salt stress	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011250371577881829
GO:0009651: response to salt stress	BAX	BCL2-associated X protein	-0.00042261239597262036
GO:0009651: response to salt stress	TH	tyrosine hydroxylase	-0.00034049874484744734
GO:0009651: response to salt stress	TP53	tumor protein p53	0.0011676634794120422
GO:0010535: positive regulation of activation of JAK2 kinase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011340970972180376
GO:0010535: positive regulation of activation of JAK2 kinase activity	IL12B	interleukin 12B	0.0012764517062932863
GO:0010595: positive regulation of endothelial cell migration	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001122026980096562
GO:0010595: positive regulation of endothelial cell migration	ALOX12	arachidonate 12-lipoxygenase	-0.0019394077472052152
GO:0010595: positive regulation of endothelial cell migration	ANGPT1	angiopoietin 1	0.0008950471683722523
GO:0010595: positive regulation of endothelial cell migration	BMP4	bone morphogenetic protein 4	-0.00032032702222880243
GO:0010595: positive regulation of endothelial cell migration	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.001736344833359962
GO:0010595: positive regulation of endothelial cell migration	GATA3	GATA binding protein 3	-3.7663198222700225e-5
GO:0010595: positive regulation of endothelial cell migration	NRP1	neuropilin 1	-0.0006378237944011304
GO:0010595: positive regulation of endothelial cell migration	PRKCA	protein kinase C, alpha	-5.936449221386004e-6
GO:0010595: positive regulation of endothelial cell migration	PROX1	prospero homeobox 1	0.0011126813719566882
GO:0010595: positive regulation of endothelial cell migration	THBS1	thrombospondin 1	-0.0010283456165712283
GO:0010595: positive regulation of endothelial cell migration	VEGFA	vascular endothelial growth factor A	0.0005889216945167238
GO:0010595: positive regulation of endothelial cell migration	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006622910120876473
GO:0010595: positive regulation of endothelial cell migration	WNT7A	wingless-type MMTV integration site family, member 7A	1.9848836577096795e-5
GO:0010613: positive regulation of cardiac muscle hypertrophy	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001127706138226641
GO:0010613: positive regulation of cardiac muscle hypertrophy	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012999061425373693
GO:0010613: positive regulation of cardiac muscle hypertrophy	IL6ST	interleukin 6 signal transducer	0.0018700966561512513
GO:0010613: positive regulation of cardiac muscle hypertrophy	PRKCA	protein kinase C, alpha	-5.952841332274661e-6
GO:0010744: positive regulation of macrophage derived foam cell differentiation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0010744: positive regulation of macrophage derived foam cell differentiation	AGTR1	angiotensin II receptor, type 1	0.0003451843215497573
GO:0010873: positive regulation of cholesterol esterification	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0010873: positive regulation of cholesterol esterification	AGTR1	angiotensin II receptor, type 1	0.0003451843215497573
GO:0010951: negative regulation of endopeptidase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011427867962670616
GO:0010951: negative regulation of endopeptidase activity	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007357118999286487
GO:0010951: negative regulation of endopeptidase activity	C3	complement component 3	0.002037330251145308
GO:0010951: negative regulation of endopeptidase activity	CAST	calpastatin	-0.003052321195622297
GO:0010951: negative regulation of endopeptidase activity	CST3	cystatin C	-7.225017747036876e-5
GO:0010951: negative regulation of endopeptidase activity	PI3	peptidase inhibitor 3, skin-derived	-0.001046791517238836
GO:0010951: negative regulation of endopeptidase activity	PTTG1	pituitary tumor-transforming 1	-0.00036217313646242207
GO:0010951: negative regulation of endopeptidase activity	SERPINA5	serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5	-0.0007139125929340422
GO:0010951: negative regulation of endopeptidase activity	SERPINB5	serpin peptidase inhibitor, clade B (ovalbumin), member 5	-0.004556683309996606
GO:0010951: negative regulation of endopeptidase activity	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011187084480742876
GO:0010951: negative regulation of endopeptidase activity	SERPINE2	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2	0.002517990175649597
GO:0010951: negative regulation of endopeptidase activity	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006623869558177233
GO:0010951: negative regulation of endopeptidase activity	SERPINH1	serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1)	-0.0010955084418645007
GO:0014061: regulation of norepinephrine secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011254763501075064
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	ANGPT1	angiopoietin 1	0.0008966105857940083
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	FLT3	fms-related tyrosine kinase 3	-0.0006772422850948271
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012950036429621638
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	JAK2	Janus kinase 2	-3.262564335094836e-5
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002716325925501928
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022528246268256565
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003578912793950708
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	RELN	reelin	0.001528450647539224
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	SOX9	SRY (sex determining region Y)-box 9	-0.0005160082523193127
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	TGFB2	transforming growth factor, beta 2	-0.0010534663100429142
GO:0014824: artery smooth muscle contraction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0014873: response to muscle activity involved in regulation of muscle adaptation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0016525: negative regulation of angiogenesis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011142345282872878
GO:0016525: negative regulation of angiogenesis	CCL2	chemokine (C-C motif) ligand 2	0.0008062675702981245
GO:0016525: negative regulation of angiogenesis	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008474072551148818
GO:0016525: negative regulation of angiogenesis	CXCL10	chemokine (C-X-C motif) ligand 10	6.037374343293471e-5
GO:0016525: negative regulation of angiogenesis	FOXC1	forkhead box C1	-2.313858152175271e-5
GO:0016525: negative regulation of angiogenesis	HOXA5	homeobox A5	0.0010503760111728372
GO:0016525: negative regulation of angiogenesis	PML	promyelocytic leukemia	-0.0006733407439434913
GO:0016525: negative regulation of angiogenesis	SULF1	sulfatase 1	-0.0007903565640150293
GO:0016525: negative regulation of angiogenesis	THBS1	thrombospondin 1	-0.0010227421262162888
GO:0016525: negative regulation of angiogenesis	THBS4	thrombospondin 4	-0.00044121451627804185
GO:0016525: negative regulation of angiogenesis	VASH1	vasohibin 1	0.0005917174396845661
GO:0019229: regulation of vasoconstriction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011377222488670718
GO:0019229: regulation of vasoconstriction	AGTR1	angiotensin II receptor, type 1	0.0003476617451183309
GO:0019229: regulation of vasoconstriction	ASIC2	acid-sensing (proton-gated) ion channel 2	0.002285878334650618
GO:0019229: regulation of vasoconstriction	PER2	period circadian clock 2	0.0012416736147635248
GO:0030198: extracellular matrix organization	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011353962802214247
GO:0030198: extracellular matrix organization	BMP4	bone morphogenetic protein 4	-0.0003230041778459229
GO:0030198: extracellular matrix organization	BMP7	bone morphogenetic protein 7	0.0008564480838143903
GO:0030198: extracellular matrix organization	COL11A1	collagen, type XI, alpha 1	-0.000442332376929362
GO:0030198: extracellular matrix organization	COL1A1	collagen, type I, alpha 1	-0.0005275772332481819
GO:0030198: extracellular matrix organization	COL5A1	collagen, type V, alpha 1	-5.0651252001064364e-5
GO:0030198: extracellular matrix organization	COL5A2	collagen, type V, alpha 2	-0.00034659497924633423
GO:0030198: extracellular matrix organization	CTSK	cathepsin K	-0.0003640321303025614
GO:0030198: extracellular matrix organization	CTSV	cathepsin V	0.0006550577223109954
GO:0030198: extracellular matrix organization	DAG1	dystroglycan 1 (dystrophin-associated glycoprotein 1)	0.0003620444556816928
GO:0030198: extracellular matrix organization	DSPP	dentin sialophosphoprotein	0.0008306362325807079
GO:0030198: extracellular matrix organization	EGFL6	EGF-like-domain, multiple 6	0.00013687380078647768
GO:0030198: extracellular matrix organization	FBN2	fibrillin 2	-0.0007423944454956595
GO:0030198: extracellular matrix organization	ICAM1	intercellular adhesion molecule 1	0.0007296354396173886
GO:0030198: extracellular matrix organization	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014011452838385515
GO:0030198: extracellular matrix organization	ITGA6	integrin, alpha 6	0.0016721877762541245
GO:0030198: extracellular matrix organization	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024300089939523423
GO:0030198: extracellular matrix organization	ITGB4	integrin, beta 4	0.0005814874489974709
GO:0030198: extracellular matrix organization	KLK7	kallikrein-related peptidase 7	0.0016280003757965927
GO:0030198: extracellular matrix organization	LAMB2	laminin, beta 2 (laminin S)	-0.001310873878058994
GO:0030198: extracellular matrix organization	LOX	lysyl oxidase	-0.0005772349323089475
GO:0030198: extracellular matrix organization	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011332886696424152
GO:0030198: extracellular matrix organization	MMP20	matrix metallopeptidase 20	-0.0024346693987929774
GO:0030198: extracellular matrix organization	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042591564956760876
GO:0030198: extracellular matrix organization	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.0029780332048168325
GO:0030198: extracellular matrix organization	PRDX4	peroxiredoxin 4	0.0015264475327929482
GO:0030198: extracellular matrix organization	PRKCA	protein kinase C, alpha	-5.839797129212124e-6
GO:0030198: extracellular matrix organization	SERPINB5	serpin peptidase inhibitor, clade B (ovalbumin), member 5	-0.004536539408318588
GO:0030198: extracellular matrix organization	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.0001121322413896654
GO:0030198: extracellular matrix organization	SERPINH1	serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1)	-0.0010902762951661928
GO:0030198: extracellular matrix organization	SOX9	SRY (sex determining region Y)-box 9	-0.0005191319035850546
GO:0030198: extracellular matrix organization	TGFB1	transforming growth factor, beta 1	-7.326144857069025e-5
GO:0030198: extracellular matrix organization	TGFB2	transforming growth factor, beta 2	-0.0010608832620807034
GO:0030198: extracellular matrix organization	TGFB3	transforming growth factor, beta 3	-0.0018265300195037522
GO:0030198: extracellular matrix organization	THBS1	thrombospondin 1	-0.001037232948127688
GO:0030198: extracellular matrix organization	TNC	tenascin C	0.0007352193829639204
GO:0030432: peristalsis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011158610057580539
GO:0030432: peristalsis	DRD2	dopamine receptor D2	-0.0002318705753627969
GO:0030432: peristalsis	GDNF	glial cell derived neurotrophic factor	0.00044020063148044017
GO:0032270: positive regulation of cellular protein metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011252869951244595
GO:0032270: positive regulation of cellular protein metabolic process	AGTR1	angiotensin II receptor, type 1	0.0003465033700135895
GO:0032270: positive regulation of cellular protein metabolic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007258870202631818
GO:0032270: positive regulation of cellular protein metabolic process	INHBA	inhibin, beta A	-0.0013433361947508904
GO:0032270: positive regulation of cellular protein metabolic process	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007965623366097773
GO:0032270: positive regulation of cellular protein metabolic process	TGFB1	transforming growth factor, beta 1	-7.252275201797455e-5
GO:0032930: positive regulation of superoxide anion generation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011230354599038475
GO:0032930: positive regulation of superoxide anion generation	GSTP1	glutathione S-transferase pi 1	0.00023020869859851002
GO:0032930: positive regulation of superoxide anion generation	PRKCD	protein kinase C, delta	-0.001118917610372097
GO:0032930: positive regulation of superoxide anion generation	TGFB1	transforming growth factor, beta 1	-7.253484562525228e-5
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011282006662961482
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007282841687977953
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006244734032888662
GO:0033138: positive regulation of peptidyl-serine phosphorylation	ANGPT1	angiopoietin 1	0.0008983012903031146
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AVP	arginine vasopressin	-0.0009339310067446515
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AXIN1	axin 1	-0.0007304631354543681
GO:0033138: positive regulation of peptidyl-serine phosphorylation	BCL2	B-cell CLL/lymphoma 2	-4.7014865394078305e-6
GO:0033138: positive regulation of peptidyl-serine phosphorylation	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005343319103674755
GO:0033138: positive regulation of peptidyl-serine phosphorylation	CDC42	cell division cycle 42	0.001236688640996076
GO:0033138: positive regulation of peptidyl-serine phosphorylation	GSK3B	glycogen synthase kinase 3 beta	0.0015446040341675605
GO:0033138: positive regulation of peptidyl-serine phosphorylation	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0021812362555912583
GO:0033138: positive regulation of peptidyl-serine phosphorylation	PFN2	profilin 2	0.0019989673366821244
GO:0033138: positive regulation of peptidyl-serine phosphorylation	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014944590290901206
GO:0033138: positive regulation of peptidyl-serine phosphorylation	TGFB1	transforming growth factor, beta 1	-7.240759311739787e-5
GO:0033138: positive regulation of peptidyl-serine phosphorylation	VEGFA	vascular endothelial growth factor A	0.0005920034529647973
GO:0033138: positive regulation of peptidyl-serine phosphorylation	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006650898199579922
GO:0033864: positive regulation of NAD(P)H oxidase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0033864: positive regulation of NAD(P)H oxidase activity	AGTR1	angiotensin II receptor, type 1	0.0003451843215497573
GO:0034104: negative regulation of tissue remodeling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0035411: catenin import into nucleus	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0035813: regulation of renal sodium excretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011266866601655772
GO:0035813: regulation of renal sodium excretion	AGTR1	angiotensin II receptor, type 1	0.000345712012605298
GO:0035813: regulation of renal sodium excretion	AVP	arginine vasopressin	-0.000932189079003875
GO:0035815: positive regulation of renal sodium excretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011260364256689736
GO:0035815: positive regulation of renal sodium excretion	DRD2	dopamine receptor D2	-0.00023290838230142057
GO:0040018: positive regulation of multicellular organism growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001125341647488298
GO:0040018: positive regulation of multicellular organism growth	BBS4	Bardet-Biedl syndrome 4	-0.0005073218178665523
GO:0040018: positive regulation of multicellular organism growth	BCL2	B-cell CLL/lymphoma 2	-4.803184511103098e-6
GO:0040018: positive regulation of multicellular organism growth	CREB1	cAMP responsive element binding protein 1	0.0006538172107678809
GO:0040018: positive regulation of multicellular organism growth	DRD2	dopamine receptor D2	-0.000233197938866767
GO:0040018: positive regulation of multicellular organism growth	POU1F1	POU class 1 homeobox 1	0.00013657207900539297
GO:0040018: positive regulation of multicellular organism growth	SMO	smoothened, frizzled class receptor	0.0021288626327105645
GO:0040018: positive regulation of multicellular organism growth	STAT5A	signal transducer and activator of transcription 5A	0.0015892017426617896
GO:0042127: regulation of cell proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011341826209634674
GO:0042127: regulation of cell proliferation	AGTR1	angiotensin II receptor, type 1	0.0003471994036480122
GO:0042127: regulation of cell proliferation	CHEK1	checkpoint kinase 1	0.0009009769811606011
GO:0042127: regulation of cell proliferation	CIB1	calcium and integrin binding 1 (calmyrin)	5.411435171858962e-5
GO:0042127: regulation of cell proliferation	CXCL10	chemokine (C-X-C motif) ligand 10	6.302211511482064e-5
GO:0042127: regulation of cell proliferation	CXCL13	chemokine (C-X-C motif) ligand 13	0.0029945756728374942
GO:0042127: regulation of cell proliferation	E2F4	E2F transcription factor 4, p107/p130-binding	-0.002346331170449161
GO:0042127: regulation of cell proliferation	ENG	endoglin	0.0008269777790662979
GO:0042127: regulation of cell proliferation	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.0001358448631660165
GO:0042127: regulation of cell proliferation	FOXM1	forkhead box M1	0.00019783273086723828
GO:0042127: regulation of cell proliferation	GUCY2C	guanylate cyclase 2C (heat stable enterotoxin receptor)	-0.0016341243245748655
GO:0042127: regulation of cell proliferation	HOXD13	homeobox D13	-0.000592431039895753
GO:0042127: regulation of cell proliferation	INHA	inhibin, alpha	0.0002114948402304591
GO:0042127: regulation of cell proliferation	JAG1	jagged 1	0.0017568436223542345
GO:0042127: regulation of cell proliferation	JAG2	jagged 2	-5.598829809758504e-6
GO:0042127: regulation of cell proliferation	JAK2	Janus kinase 2	-3.144520313963049e-5
GO:0042127: regulation of cell proliferation	JUP	junction plakoglobin	-0.001479485583929458
GO:0042127: regulation of cell proliferation	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027555034989152954
GO:0042127: regulation of cell proliferation	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.000425798350187564
GO:0042127: regulation of cell proliferation	RPA3	replication protein A3, 14kDa	0.0031381711793049246
GO:0042127: regulation of cell proliferation	SHH	sonic hedgehog	0.0006002971515527102
GO:0042127: regulation of cell proliferation	SIRT1	sirtuin 1	-1.5183824789954493e-6
GO:0042127: regulation of cell proliferation	SIX3	SIX homeobox 3	0.0020385109905892208
GO:0042127: regulation of cell proliferation	SOX9	SRY (sex determining region Y)-box 9	-0.0005185173871042268
GO:0042127: regulation of cell proliferation	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010611623802875975
GO:0042127: regulation of cell proliferation	TGFB3	transforming growth factor, beta 3	-0.0018249526898884549
GO:0042311: vasodilation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011265381176853433
GO:0042311: vasodilation	GPX1	glutathione peroxidase 1	0.0003857047065419779
GO:0043410: positive regulation of MAPK cascade	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011327409337338343
GO:0043410: positive regulation of MAPK cascade	CDH2	cadherin 2, type 1, N-cadherin (neuronal)	-0.0006448969576984285
GO:0043410: positive regulation of MAPK cascade	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011675481917323439
GO:0043410: positive regulation of MAPK cascade	FGFR2	fibroblast growth factor receptor 2	0.0007628068618386048
GO:0043410: positive regulation of MAPK cascade	FGFR3	fibroblast growth factor receptor 3	0.0002225137668399347
GO:0043410: positive regulation of MAPK cascade	FLT3	fms-related tyrosine kinase 3	-0.000681161542209997
GO:0043410: positive regulation of MAPK cascade	HMGB1	high mobility group box 1	-0.0007756731930923219
GO:0043410: positive regulation of MAPK cascade	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013091166905775247
GO:0043410: positive regulation of MAPK cascade	IGF1R	insulin-like growth factor 1 receptor	0.001071091307656998
GO:0043410: positive regulation of MAPK cascade	IGFBP3	insulin-like growth factor binding protein 3	0.0008360134930686304
GO:0043410: positive regulation of MAPK cascade	IGFBP4	insulin-like growth factor binding protein 4	-0.0012776354032527758
GO:0043410: positive regulation of MAPK cascade	INSR	insulin receptor	-0.0013623665436417675
GO:0043410: positive regulation of MAPK cascade	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027491895017796986
GO:0043410: positive regulation of MAPK cascade	LEP	leptin	0.0031889836225433912
GO:0043524: negative regulation of neuron apoptotic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011332376252700877
GO:0043524: negative regulation of neuron apoptotic process	ANGPT1	angiopoietin 1	0.0009006358254645083
GO:0043524: negative regulation of neuron apoptotic process	BAX	BCL2-associated X protein	-0.00042516345503465996
GO:0043524: negative regulation of neuron apoptotic process	BCL2	B-cell CLL/lymphoma 2	-4.953281541930612e-6
GO:0043524: negative regulation of neuron apoptotic process	CCL2	chemokine (C-C motif) ligand 2	0.0008165370033201193
GO:0043524: negative regulation of neuron apoptotic process	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.00027400391778237314
GO:0043524: negative regulation of neuron apoptotic process	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002818100246927244
GO:0043524: negative regulation of neuron apoptotic process	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009839431073587381
GO:0043524: negative regulation of neuron apoptotic process	GCLM	glutamate-cysteine ligase, modifier subunit	-0.0037613093741005084
GO:0043524: negative regulation of neuron apoptotic process	GDNF	glial cell derived neurotrophic factor	0.00044471905434896906
GO:0043524: negative regulation of neuron apoptotic process	HIPK2	homeodomain interacting protein kinase 2	0.0007707519811739049
GO:0043524: negative regulation of neuron apoptotic process	HMOX1	heme oxygenase (decycling) 1	-0.00021760405086036658
GO:0043524: negative regulation of neuron apoptotic process	HTT	huntingtin	-0.0009715676832402414
GO:0043524: negative regulation of neuron apoptotic process	ISL1	ISL LIM homeobox 1	7.89267365097406e-5
GO:0043524: negative regulation of neuron apoptotic process	JAK2	Janus kinase 2	-3.171008687526421e-5
GO:0043524: negative regulation of neuron apoptotic process	KIF14	kinesin family member 14	0.00048599383726065994
GO:0043524: negative regulation of neuron apoptotic process	MDK	midkine (neurite growth-promoting factor 2)	0.0016652841063607645
GO:0043524: negative regulation of neuron apoptotic process	MEF2C	myocyte enhancer factor 2C	0.0009733500044987466
GO:0043524: negative regulation of neuron apoptotic process	MSH2	mutS homolog 2	0.0013922790619047267
GO:0043524: negative regulation of neuron apoptotic process	NES	nestin	0.0013735926438886215
GO:0043524: negative regulation of neuron apoptotic process	NRP1	neuropilin 1	-0.000643207218067869
GO:0043524: negative regulation of neuron apoptotic process	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003490480491911305
GO:0043524: negative regulation of neuron apoptotic process	SIX1	SIX homeobox 1	-0.001869884356182417
GO:0043524: negative regulation of neuron apoptotic process	STAMBP	STAM binding protein	-0.00017040826720829676
GO:0043524: negative regulation of neuron apoptotic process	STAR	steroidogenic acute regulatory protein	0.0008945065528124633
GO:0043524: negative regulation of neuron apoptotic process	TGFB3	transforming growth factor, beta 3	-0.0018236566560317184
GO:0043524: negative regulation of neuron apoptotic process	TP73	tumor protein p73	0.0010278837325965113
GO:0043524: negative regulation of neuron apoptotic process	WFS1	Wolfram syndrome 1 (wolframin)	0.0005767752251105917
GO:0044267: cellular protein metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001129864686643366
GO:0044267: cellular protein metabolic process	BCHE	butyrylcholinesterase	-6.363623417656149e-6
GO:0044267: cellular protein metabolic process	BLM	Bloom syndrome, RecQ helicase-like	0.0005233192652441639
GO:0044267: cellular protein metabolic process	CCL2	chemokine (C-C motif) ligand 2	0.0008150974570626097
GO:0044267: cellular protein metabolic process	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.001754035939332782
GO:0044267: cellular protein metabolic process	CPE	carboxypeptidase E	-0.002539351420838332
GO:0044267: cellular protein metabolic process	CUL7	cullin 7	-0.00011849200300347684
GO:0044267: cellular protein metabolic process	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.000741097187402905
GO:0044267: cellular protein metabolic process	GALNT6	polypeptide N-acetylgalactosaminyltransferase 6	-0.001771917485097236
GO:0044267: cellular protein metabolic process	GCNT1	glucosaminyl (N-acetyl) transferase 1, core 2	0.0006921481954517552
GO:0044267: cellular protein metabolic process	GCNT3	glucosaminyl (N-acetyl) transferase 3, mucin type	-0.0023071710945766844
GO:0044267: cellular protein metabolic process	GCNT4	glucosaminyl (N-acetyl) transferase 4, core 2	0.0004512824233740167
GO:0044267: cellular protein metabolic process	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001299910868766467
GO:0044267: cellular protein metabolic process	IGFBP1	insulin-like growth factor binding protein 1	0.0003873728371359079
GO:0044267: cellular protein metabolic process	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014411493184502303
GO:0044267: cellular protein metabolic process	IGFBP3	insulin-like growth factor binding protein 3	0.0008356939504056856
GO:0044267: cellular protein metabolic process	IGFBP4	insulin-like growth factor binding protein 4	-0.0012758392785670847
GO:0044267: cellular protein metabolic process	IGFBP6	insulin-like growth factor binding protein 6	-0.002024178844411311
GO:0044267: cellular protein metabolic process	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011283739831991321
GO:0044267: cellular protein metabolic process	MUC1	mucin 1, cell surface associated	0.00128249710776525
GO:0044267: cellular protein metabolic process	MUC7	mucin 7, secreted	-0.0031546803003083025
GO:0044267: cellular protein metabolic process	NUP153	nucleoporin 153kDa	0.0008231568379220465
GO:0044267: cellular protein metabolic process	PCSK2	proprotein convertase subtilisin/kexin type 2	0.0006041548261440685
GO:0044267: cellular protein metabolic process	PGM3	phosphoglucomutase 3	0.001983267230083849
GO:0044267: cellular protein metabolic process	PML	promyelocytic leukemia	-0.0006790064186019181
GO:0044267: cellular protein metabolic process	RAD21	RAD21 homolog (S. pombe)	-0.00010208722922996505
GO:0044267: cellular protein metabolic process	RPA1	replication protein A1, 70kDa	0.0004376611291702858
GO:0044267: cellular protein metabolic process	SEH1L	SEH1-like (S. cerevisiae)	-0.0007311997696591835
GO:0044267: cellular protein metabolic process	SMC1A	structural maintenance of chromosomes 1A	-0.0010182806749436464
GO:0044267: cellular protein metabolic process	SMC5	structural maintenance of chromosomes 5	-0.0007013261910983885
GO:0044267: cellular protein metabolic process	SMC6	structural maintenance of chromosomes 6	-0.0017478535236534363
GO:0044267: cellular protein metabolic process	SPHK1	sphingosine kinase 1	0.0018072090727828199
GO:0044267: cellular protein metabolic process	THBS1	thrombospondin 1	-0.001033819946202434
GO:0044267: cellular protein metabolic process	TPR	translocated promoter region, nuclear basket protein	-0.0006956505200481417
GO:0044267: cellular protein metabolic process	WFS1	Wolfram syndrome 1 (wolframin)	0.0005760037162688466
GO:0044267: cellular protein metabolic process	XBP1	X-box binding protein 1	0.0002666677820414088
GO:0045429: positive regulation of nitric oxide biosynthetic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001114094899517808
GO:0045429: positive regulation of nitric oxide biosynthetic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007201755139836965
GO:0045429: positive regulation of nitric oxide biosynthetic process	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.000618964829837747
GO:0045429: positive regulation of nitric oxide biosynthetic process	ASS1	argininosuccinate synthase 1	0.0001379700842304554
GO:0045429: positive regulation of nitric oxide biosynthetic process	EGFR	epidermal growth factor receptor	0.0006742966701912764
GO:0045429: positive regulation of nitric oxide biosynthetic process	ESR1	estrogen receptor 1	-0.0009346559442157984
GO:0045429: positive regulation of nitric oxide biosynthetic process	ICAM1	intercellular adhesion molecule 1	0.0007229834608800635
GO:0045429: positive regulation of nitric oxide biosynthetic process	IFNG	interferon, gamma	-4.87153904118692e-5
GO:0045429: positive regulation of nitric oxide biosynthetic process	INSR	insulin receptor	-0.0013447000675839104
GO:0045429: positive regulation of nitric oxide biosynthetic process	JAK2	Janus kinase 2	-3.363238477781016e-5
GO:0045723: positive regulation of fatty acid biosynthetic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001129525416396521
GO:0045723: positive regulation of fatty acid biosynthetic process	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007982188691035317
GO:0046622: positive regulation of organ growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011348383041610301
GO:0046622: positive regulation of organ growth	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009848521483020666
GO:0046622: positive regulation of organ growth	IL7	interleukin 7	0.0008721384041544566
GO:0046622: positive regulation of organ growth	SMO	smoothened, frizzled class receptor	0.002140592949770093
GO:0046622: positive regulation of organ growth	YAP1	Yes-associated protein 1	-0.00016420445902064822
GO:0048143: astrocyte activation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011464001484450565
GO:0048143: astrocyte activation	SMO	smoothened, frizzled class receptor	0.002155616885929774
GO:0048144: fibroblast proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0048169: regulation of long-term neuronal synaptic plasticity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001124766421243505
GO:0048169: regulation of long-term neuronal synaptic plasticity	DRD2	dopamine receptor D2	-0.00023294888617112787
GO:0048169: regulation of long-term neuronal synaptic plasticity	EGR1	early growth response 1	0.0010866701092259229
GO:0048659: smooth muscle cell proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0050663: cytokine secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011379983167102842
GO:0050663: cytokine secretion	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001423508579175651
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011283689576810588
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	ANGPT1	angiopoietin 1	0.0008983233655464451
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	EFNA1	ephrin-A1	-0.0005197146846847346
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	FGF7	fibroblast growth factor 7	0.0006320722858868139
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	ICAM1	intercellular adhesion molecule 1	0.0007278150678050745
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013018510362595783
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	JAK2	Janus kinase 2	-3.246110063992826e-5
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009298787235284281
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	NRP1	neuropilin 1	-0.0006410515846548173
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	RELN	reelin	0.0015320091530040382
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	TGFB1	transforming growth factor, beta 1	-7.247029046501868e-5
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	THBS4	thrombospondin 4	-0.00044362526692384263
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	TP53	tumor protein p53	0.0011712953670444946
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	VEGFA	vascular endothelial growth factor A	0.0005921379831008294
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	VEGFC	vascular endothelial growth factor C	-0.0033543365913085996
GO:0051145: smooth muscle cell differentiation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011385839497855875
GO:0051145: smooth muscle cell differentiation	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011669252822893963
GO:0051145: smooth muscle cell differentiation	GATA6	GATA binding protein 6	-2.7448038199776915e-5
GO:0051145: smooth muscle cell differentiation	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0027079462603562814
GO:0051145: smooth muscle cell differentiation	MEF2C	myocyte enhancer factor 2C	0.0009766005189961663
GO:0051145: smooth muscle cell differentiation	WNT4	wingless-type MMTV integration site family, member 4	-0.00025416908849661753
GO:0051387: negative regulation of neurotrophin TRK receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0051403: stress-activated MAPK cascade	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001138100062112676
GO:0051403: stress-activated MAPK cascade	CREB1	cAMP responsive element binding protein 1	0.0006612426418666481
GO:0051403: stress-activated MAPK cascade	CRYAB	crystallin, alpha B	0.0009881431402928246
GO:0051403: stress-activated MAPK cascade	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016138378058296798
GO:0051403: stress-activated MAPK cascade	MAP3K19	mitogen-activated protein kinase kinase kinase 19	-0.0016542761039534369
GO:0051403: stress-activated MAPK cascade	MEF2C	myocyte enhancer factor 2C	0.000976745135554231
GO:0051403: stress-activated MAPK cascade	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025209549577330003
GO:0051924: regulation of calcium ion transport	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011194082351256931
GO:0051924: regulation of calcium ion transport	BCL2	B-cell CLL/lymphoma 2	-5.8812412124922436e-6
GO:0051924: regulation of calcium ion transport	GJA1	gap junction protein, alpha 1, 43kDa	-0.00015850971419528812
GO:0051969: regulation of transmission of nerve impulse	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0061049: cell growth involved in cardiac muscle cell development	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001135665279717375
GO:0061049: cell growth involved in cardiac muscle cell development	GATA4	GATA binding protein 4	-0.0010955738267244865
GO:0061098: positive regulation of protein tyrosine kinase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011336556975768699
GO:0061098: positive regulation of protein tyrosine kinase activity	CD24	CD24 molecule	0.0010716397024626801
GO:0061098: positive regulation of protein tyrosine kinase activity	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008277527067870904
GO:0061098: positive regulation of protein tyrosine kinase activity	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009308798552369753
GO:0061098: positive regulation of protein tyrosine kinase activity	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.001041824103006975
GO:0061098: positive regulation of protein tyrosine kinase activity	RELN	reelin	0.0015369846024346162
GO:0070371: ERK1 and ERK2 cascade	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011245650318756969
GO:0070371: ERK1 and ERK2 cascade	AVP	arginine vasopressin	-0.0009309082047241991
GO:0070371: ERK1 and ERK2 cascade	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012932958021281906
GO:0070371: ERK1 and ERK2 cascade	MED1	mediator complex subunit 1	0.001121218119224792
GO:0070371: ERK1 and ERK2 cascade	SOX9	SRY (sex determining region Y)-box 9	-0.0005150462600783926
GO:0070471: uterine smooth muscle contraction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:0071260: cellular response to mechanical stimulus	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011308490019734613
GO:0071260: cellular response to mechanical stimulus	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007290802436596668
GO:0071260: cellular response to mechanical stimulus	BAK1	BCL2-antagonist/killer 1	-0.0018722361088507136
GO:0071260: cellular response to mechanical stimulus	BMP4	bone morphogenetic protein 4	-0.00032202665188792786
GO:0071260: cellular response to mechanical stimulus	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002907018929805615
GO:0071260: cellular response to mechanical stimulus	CASP8AP2	caspase 8 associated protein 2	0.0012695237955783517
GO:0071260: cellular response to mechanical stimulus	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005345261633046913
GO:0071260: cellular response to mechanical stimulus	CHEK1	checkpoint kinase 1	0.0008983420885444517
GO:0071260: cellular response to mechanical stimulus	COL1A1	collagen, type I, alpha 1	-0.0005252066452635589
GO:0071260: cellular response to mechanical stimulus	EGR1	early growth response 1	0.0010909384885159693
GO:0071260: cellular response to mechanical stimulus	FAS	Fas cell surface death receptor	-3.315298479412204e-5
GO:0071260: cellular response to mechanical stimulus	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016123313902589054
GO:0071260: cellular response to mechanical stimulus	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007752898729378251
GO:0071260: cellular response to mechanical stimulus	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004249327201853569
GO:0071260: cellular response to mechanical stimulus	SOX9	SRY (sex determining region Y)-box 9	-0.0005172766424310747
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011358793941080557
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	GDNF	glial cell derived neurotrophic factor	0.00044512131423449333
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008294600210623038
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.0003088071821391136
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	LHX1	LIM homeobox 1	-0.0007599456780626495
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	PAX2	paired box 2	-0.0016165706499387544
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	PAX8	paired box 8	0.0009488374160705629
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SALL1	spalt-like transcription factor 1	-0.002442120875766333
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SIX1	SIX homeobox 1	-0.001872528142639171
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SMO	smoothened, frizzled class receptor	0.0021421752555515605
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SOX9	SRY (sex determining region Y)-box 9	-0.0005194276940881326
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	TGFB1	transforming growth factor, beta 1	-7.324219900892421e-5
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	VEGFA	vascular endothelial growth factor A	0.0005962983015804187
GO:1900020: positive regulation of protein kinase C activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011306837922656992
GO:1900020: positive regulation of protein kinase C activity	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006657721693316108
GO:1901201: regulation of extracellular matrix assembly	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.00112896000986938
GO:1901201: regulation of extracellular matrix assembly	NOTCH1	notch 1	0.0005170083157855367
GO:1902632: positive regulation of membrane hyperpolarization	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:1903598: positive regulation of gap junction assembly	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011274210960150425
GO:1903598: positive regulation of gap junction assembly	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005330003027876889
GO:1903779: regulation of cardiac conduction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001141324461898953
GO:2000650: negative regulation of sodium ion transmembrane transporter activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011440163609418423
GO:2000650: negative regulation of sodium ion transmembrane transporter activity	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022756847164011945
GO:2001238: positive regulation of extrinsic apoptotic signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011188591065510768
GO:2001238: positive regulation of extrinsic apoptotic signaling pathway	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005313378843129161
GO:2001238: positive regulation of extrinsic apoptotic signaling pathway	PML	promyelocytic leukemia	-0.0006749960214677704
KEGG:04080: Neuroactive ligand-receptor interaction	AGTR1	angiotensin II receptor, type 1	0.00035059797124114016
KEGG:04080: Neuroactive ligand-receptor interaction	CHRNB1	cholinergic receptor, nicotinic, beta 1 (muscle)	-7.444182280315203e-6
KEGG:04080: Neuroactive ligand-receptor interaction	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007775952737220376
KEGG:04080: Neuroactive ligand-receptor interaction	CSH1	chorionic somatomammotropin hormone 1 (placental lactogen)	-0.000257415284805191
KEGG:04080: Neuroactive ligand-receptor interaction	DRD2	dopamine receptor D2	-0.0002336862061888898
KEGG:04080: Neuroactive ligand-receptor interaction	DRD4	dopamine receptor D4	-0.0019435849857920115
KEGG:04080: Neuroactive ligand-receptor interaction	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.001482629666143303
KEGG:04080: Neuroactive ligand-receptor interaction	GNRHR	gonadotropin-releasing hormone receptor	0.000740786377644628
KEGG:04080: Neuroactive ligand-receptor interaction	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.00023290905636431524
KEGG:04080: Neuroactive ligand-receptor interaction	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005246970516044349
KEGG:04080: Neuroactive ligand-receptor interaction	HTR6	5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled	-0.0010813633042108214
KEGG:04080: Neuroactive ligand-receptor interaction	LEP	leptin	0.0031865997634206895
KEGG:04080: Neuroactive ligand-receptor interaction	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029318047410087453
KEGG:04080: Neuroactive ligand-receptor interaction	PRLR	prolactin receptor	0.0021826627020479802
KEGG:04080: Neuroactive ligand-receptor interaction	THRA	thyroid hormone receptor, alpha	0.0007633707382364809
KEGG:04080: Neuroactive ligand-receptor interaction	THRB	thyroid hormone receptor, beta	0.0019430701777553023
KEGG:04270: Vascular smooth muscle contraction	AGTR1	angiotensin II receptor, type 1	0.00034777176244726274
KEGG:04270: Vascular smooth muscle contraction	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007726285830895633
KEGG:04270: Vascular smooth muscle contraction	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.000650215459696932
KEGG:04270: Vascular smooth muscle contraction	PLA2G5	phospholipase A2, group V	0.002063440001743987
KEGG:04270: Vascular smooth muscle contraction	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001507684537455337
KEGG:04270: Vascular smooth muscle contraction	PRKCA	protein kinase C, alpha	-5.907479652625536e-6
KEGG:04270: Vascular smooth muscle contraction	PRKCD	protein kinase C, delta	-0.001117562725652301
KEGG:04270: Vascular smooth muscle contraction	PRKX	protein kinase, X-linked	0.0003893818631832802
KEGG:04270: Vascular smooth muscle contraction	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014867845994448313
KEGG:04270: Vascular smooth muscle contraction	RHOA	ras homolog family member A	0.0006644111183773569
KEGG:05200: Pathways in cancer	AGTR1	angiotensin II receptor, type 1	0.00034753532408598125
KEGG:05200: Pathways in cancer	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007292479628088175
KEGG:05200: Pathways in cancer	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006249550526819739
KEGG:05200: Pathways in cancer	APC	adenomatous polyposis coli	0.000643076515587974
KEGG:05200: Pathways in cancer	AR	androgen receptor	0.0026342428208375075
KEGG:05200: Pathways in cancer	AXIN1	axin 1	-0.0007317074748467239
KEGG:05200: Pathways in cancer	BAX	BCL2-associated X protein	-0.0004245212723179915
KEGG:05200: Pathways in cancer	BCL2	B-cell CLL/lymphoma 2	-5.116964969240624e-6
KEGG:05200: Pathways in cancer	BIRC5	baculoviral IAP repeat containing 5	-0.0002601839706338836
KEGG:05200: Pathways in cancer	BMP4	bone morphogenetic protein 4	-0.00032207511799027874
KEGG:05200: Pathways in cancer	BRCA2	breast cancer 2, early onset	-1.017752536150198e-5
KEGG:05200: Pathways in cancer	CCNA1	cyclin A1	-0.00175665115466659
KEGG:05200: Pathways in cancer	CCND1	cyclin D1	-0.002627716223086891
KEGG:05200: Pathways in cancer	CCNE1	cyclin E1	0.00037025602622588845
KEGG:05200: Pathways in cancer	CCNE2	cyclin E2	0.0011049610661534755
KEGG:05200: Pathways in cancer	CDC42	cell division cycle 42	0.0012381436869618628
KEGG:05200: Pathways in cancer	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017548340934393526
KEGG:05200: Pathways in cancer	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018324229590384973
KEGG:05200: Pathways in cancer	CKS2	CDC28 protein kinase regulatory subunit 2	-4.828990952743835e-5
KEGG:05200: Pathways in cancer	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.285031067242035e-5
KEGG:05200: Pathways in cancer	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011680281936528777
KEGG:05200: Pathways in cancer	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012063082190449052
KEGG:05200: Pathways in cancer	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007932901940236527
KEGG:05200: Pathways in cancer	E2F1	E2F transcription factor 1	0.0020940947519646176
KEGG:05200: Pathways in cancer	E2F3	E2F transcription factor 3	0.0021585216052612214
KEGG:05200: Pathways in cancer	EGFR	epidermal growth factor receptor	0.0006843054887895302
KEGG:05200: Pathways in cancer	FAS	Fas cell surface death receptor	-3.3187967708277944e-5
KEGG:05200: Pathways in cancer	FGF3	fibroblast growth factor 3	0.0015583623166298707
KEGG:05200: Pathways in cancer	FGF5	fibroblast growth factor 5	-0.0010922603319737498
KEGG:05200: Pathways in cancer	FGF7	fibroblast growth factor 7	0.0006326358006618654
KEGG:05200: Pathways in cancer	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009820564825246726
KEGG:05200: Pathways in cancer	FGFR2	fibroblast growth factor receptor 2	0.0007618709844360249
KEGG:05200: Pathways in cancer	FGFR3	fibroblast growth factor receptor 3	0.00022198210416180585
KEGG:05200: Pathways in cancer	FLT3	fms-related tyrosine kinase 3	-0.0006801293417308781
KEGG:05200: Pathways in cancer	FOXO1	forkhead box O1	0.0017972413502108646
KEGG:05200: Pathways in cancer	FZD3	frizzled class receptor 3	0.00037754096218346343
KEGG:05200: Pathways in cancer	FZD7	frizzled class receptor 7	0.0010684524267841437
KEGG:05200: Pathways in cancer	GLI1	GLI family zinc finger 1	-0.0012948875572445205
KEGG:05200: Pathways in cancer	GLI2	GLI family zinc finger 2	0.0018503085215558046
KEGG:05200: Pathways in cancer	GLI3	GLI family zinc finger 3	-0.002147785799533417
KEGG:05200: Pathways in cancer	GRB2	growth factor receptor-bound protein 2	0.00042890537229290824
KEGG:05200: Pathways in cancer	GSK3B	glycogen synthase kinase 3 beta	0.001546480312301669
KEGG:05200: Pathways in cancer	GSTP1	glutathione S-transferase pi 1	0.00023115625791369766
KEGG:05200: Pathways in cancer	HDAC2	histone deacetylase 2	-0.0012055335931622562
KEGG:05200: Pathways in cancer	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006455051398532941
KEGG:05200: Pathways in cancer	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013034899531345478
KEGG:05200: Pathways in cancer	IGF1R	insulin-like growth factor 1 receptor	0.00107056753690786
KEGG:05200: Pathways in cancer	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0013975734579825924
KEGG:05200: Pathways in cancer	ITGA6	integrin, alpha 6	0.0016654431816611514
KEGG:05200: Pathways in cancer	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024220572218738787
KEGG:05200: Pathways in cancer	JUP	junction plakoglobin	-0.001476930825441091
KEGG:05200: Pathways in cancer	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002738835427770112
KEGG:05200: Pathways in cancer	LAMB2	laminin, beta 2 (laminin S)	-0.0013066990581547015
KEGG:05200: Pathways in cancer	LEF1	lymphoid enhancer-binding factor 1	-0.00010032595847838233
KEGG:05200: Pathways in cancer	MLH1	mutL homolog 1	0.0023325033266400007
KEGG:05200: Pathways in cancer	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011290305320316339
KEGG:05200: Pathways in cancer	MSH2	mutS homolog 2	0.0013896006625863
KEGG:05200: Pathways in cancer	MSH3	mutS homolog 3	-0.0005297582184598427
KEGG:05200: Pathways in cancer	MSH6	mutS homolog 6	0.001075835573800222
KEGG:05200: Pathways in cancer	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001134682992267957
KEGG:05200: Pathways in cancer	PAX8	paired box 8	0.0009469430853739503
KEGG:05200: Pathways in cancer	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003602048010627458
KEGG:05200: Pathways in cancer	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007795017904443298
KEGG:05200: Pathways in cancer	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001532798270354627
KEGG:05200: Pathways in cancer	PML	promyelocytic leukemia	-0.0006791343357943937
KEGG:05200: Pathways in cancer	PRKCA	protein kinase C, alpha	-5.86798659992537e-6
KEGG:05200: Pathways in cancer	PRKX	protein kinase, X-linked	0.00039379988542872677
KEGG:05200: Pathways in cancer	PTCH1	patched 1	-6.599530310629066e-5
KEGG:05200: Pathways in cancer	PTEN	phosphatase and tensin homolog	1.7445182939432893e-5
KEGG:05200: Pathways in cancer	RAD51	RAD51 recombinase	-0.0018582796598198693
KEGG:05200: Pathways in cancer	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014963299309306965
KEGG:05200: Pathways in cancer	RB1	retinoblastoma 1	-0.0014914358284641791
KEGG:05200: Pathways in cancer	RET	ret proto-oncogene	-0.0004905200765679353
KEGG:05200: Pathways in cancer	RHOA	ras homolog family member A	0.0006686522994744406
KEGG:05200: Pathways in cancer	RXRA	retinoid X receptor, alpha	0.0011132437576497672
KEGG:05200: Pathways in cancer	SHH	sonic hedgehog	0.0005986343010761837
KEGG:05200: Pathways in cancer	SKP2	S-phase kinase-associated protein 2, E3 ubiquitin protein ligase	-0.0005362216081415743
KEGG:05200: Pathways in cancer	SMO	smoothened, frizzled class receptor	0.002135621711913837
KEGG:05200: Pathways in cancer	STAT5A	signal transducer and activator of transcription 5A	0.0015937308840572005
KEGG:05200: Pathways in cancer	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005725618128288142
KEGG:05200: Pathways in cancer	TGFB1	transforming growth factor, beta 1	-7.283372914293474e-5
KEGG:05200: Pathways in cancer	TGFB2	transforming growth factor, beta 2	-0.001057378518212652
KEGG:05200: Pathways in cancer	TGFB3	transforming growth factor, beta 3	-0.0018203254005380485
KEGG:05200: Pathways in cancer	TGFBR1	transforming growth factor, beta receptor 1	0.00033918499231240306
KEGG:05200: Pathways in cancer	TP53	tumor protein p53	0.0011732916887733887
KEGG:05200: Pathways in cancer	TPR	translocated promoter region, nuclear basket protein	-0.0006959176399215363
KEGG:05200: Pathways in cancer	VEGFA	vascular endothelial growth factor A	0.0005936513709879258
KEGG:05200: Pathways in cancer	VEGFC	vascular endothelial growth factor C	-0.003358503626733514
KEGG:05200: Pathways in cancer	WNT1	wingless-type MMTV integration site family, member 1	0.0007856803371034059
KEGG:05200: Pathways in cancer	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013859491656375248
KEGG:05200: Pathways in cancer	WNT4	wingless-type MMTV integration site family, member 4	-0.000251258830134748
KEGG:05200: Pathways in cancer	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006662623515509097
KEGG:05200: Pathways in cancer	WNT7A	wingless-type MMTV integration site family, member 7A	1.9609304101290896e-5
KEGG:04022: cGMP-PKG signaling pathway	AGTR1	angiotensin II receptor, type 1	0.0003485926894849315
KEGG:04022: cGMP-PKG signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007225817719238702
KEGG:04022: cGMP-PKG signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006210979171807567
KEGG:04022: cGMP-PKG signaling pathway	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0014853337829943082
KEGG:04022: cGMP-PKG signaling pathway	CREB1	cAMP responsive element binding protein 1	0.0006489619781641577
KEGG:04022: cGMP-PKG signaling pathway	GATA4	GATA binding protein 4	-0.0010834492017024245
KEGG:04022: cGMP-PKG signaling pathway	INSR	insulin receptor	-0.001348771581336535
KEGG:04022: cGMP-PKG signaling pathway	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007704561243640072
KEGG:04022: cGMP-PKG signaling pathway	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006479979619600895
KEGG:04022: cGMP-PKG signaling pathway	MEF2C	myocyte enhancer factor 2C	0.0009623584081566341
KEGG:04022: cGMP-PKG signaling pathway	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007731994922275429
KEGG:04022: cGMP-PKG signaling pathway	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015005615254737393
KEGG:04022: cGMP-PKG signaling pathway	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001484508621691188
KEGG:04022: cGMP-PKG signaling pathway	RHOA	ras homolog family member A	0.0006635702649900567
KEGG:04261: Adrenergic signaling in cardiomyocytes	AGTR1	angiotensin II receptor, type 1	0.00034856672119127594
KEGG:04261: Adrenergic signaling in cardiomyocytes	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007080662896574123
KEGG:04261: Adrenergic signaling in cardiomyocytes	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006121077292545784
KEGG:04261: Adrenergic signaling in cardiomyocytes	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.001462157628939306
KEGG:04261: Adrenergic signaling in cardiomyocytes	BCL2	B-cell CLL/lymphoma 2	-5.5446879758748425e-6
KEGG:04261: Adrenergic signaling in cardiomyocytes	CACNB3	calcium channel, voltage-dependent, beta 3 subunit	0.00020853217890244718
KEGG:04261: Adrenergic signaling in cardiomyocytes	CREB1	cAMP responsive element binding protein 1	0.0006326820546893795
KEGG:04261: Adrenergic signaling in cardiomyocytes	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007594704790757684
KEGG:04261: Adrenergic signaling in cardiomyocytes	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001437358204609973
KEGG:04261: Adrenergic signaling in cardiomyocytes	PPP2R3A	protein phosphatase 2, regulatory subunit B'', alpha	-4.216054407415221e-5
KEGG:04261: Adrenergic signaling in cardiomyocytes	PRKCA	protein kinase C, alpha	-6.153864745554917e-6
KEGG:04261: Adrenergic signaling in cardiomyocytes	PRKX	protein kinase, X-linked	0.0003762661135962697
KEGG:04020: Calcium signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00034661024807399306
KEGG:04020: Calcium signaling pathway	EGFR	epidermal growth factor receptor	0.000671961967973833
KEGG:04020: Calcium signaling pathway	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00017706689218756366
KEGG:04020: Calcium signaling pathway	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.000517244491343318
KEGG:04020: Calcium signaling pathway	HTR6	5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled	-0.0010658225355745846
KEGG:04020: Calcium signaling pathway	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007666911504247497
KEGG:04020: Calcium signaling pathway	ORAI2	ORAI calcium release-activated calcium modulator 2	0.000722455228441856
KEGG:04020: Calcium signaling pathway	ORAI3	ORAI calcium release-activated calcium modulator 3	-0.0008751577028992486
KEGG:04020: Calcium signaling pathway	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00035189275728375813
KEGG:04020: Calcium signaling pathway	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00014868911896114478
KEGG:04020: Calcium signaling pathway	PRKCA	protein kinase C, alpha	-5.844379105646481e-6
KEGG:04020: Calcium signaling pathway	PRKX	protein kinase, X-linked	0.00038599883480925176
KEGG:04020: Calcium signaling pathway	SPHK1	sphingosine kinase 1	0.0017831484148631684
GO:0003081: regulation of systemic arterial blood pressure by renin-angiotensin	AGTR1	angiotensin II receptor, type 1	0.00034087272072047276
GO:0007266: Rho protein signal transduction	AGTR1	angiotensin II receptor, type 1	0.0003474593609704614
GO:0007266: Rho protein signal transduction	CFL1	cofilin 1 (non-muscle)	-0.001175192183450303
GO:0007266: Rho protein signal transduction	CNKSR1	connector enhancer of kinase suppressor of Ras 1	-0.0011061531138089676
GO:0007266: Rho protein signal transduction	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0021878464033907867
GO:0007266: Rho protein signal transduction	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.0012586585921412227
GO:0007266: Rho protein signal transduction	PHACTR4	phosphatase and actin regulator 4	-0.0017909589800796195
GO:0007266: Rho protein signal transduction	RHOA	ras homolog family member A	0.0006697706205168875
GO:0007266: Rho protein signal transduction	ROPN1B	rhophilin associated tail protein 1B	0.0005978015550404626
GO:0019722: calcium-mediated signaling	AGTR1	angiotensin II receptor, type 1	0.0003470865204972387
GO:0019722: calcium-mediated signaling	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007919562854707347
GO:0019722: calcium-mediated signaling	SPHK1	sphingosine kinase 1	0.0018046616123086453
GO:0032430: positive regulation of phospholipase A2 activity	AGTR1	angiotensin II receptor, type 1	0.00034087272072047276
GO:0038166: angiotensin-activated signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00033485828371932337
GO:0038166: angiotensin-activated signaling pathway	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00030176515636567394
GO:0042312: regulation of vasodilation	AGTR1	angiotensin II receptor, type 1	0.00034087272072047276
GO:0050727: regulation of inflammatory response	AGTR1	angiotensin II receptor, type 1	0.00034965335038647895
GO:0050727: regulation of inflammatory response	BRD4	bromodomain containing 4	0.0005486325697231973
GO:0050727: regulation of inflammatory response	JAK2	Janus kinase 2	-3.679057871386258e-5
GO:0050727: regulation of inflammatory response	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0013931861534899257
GO:0050727: regulation of inflammatory response	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029636083846499125
GO:0050727: regulation of inflammatory response	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0010936282909919453
GO:0051482: positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G-protein coupled signaling pathway	AGTR1	angiotensin II receptor, type 1	0.0003495600405393907
GO:0051482: positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G-protein coupled signaling pathway	DRD2	dopamine receptor D2	-0.00022168420679005534
GO:0051482: positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G-protein coupled signaling pathway	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.00048738072849223896
GO:0060326: cell chemotaxis	AGTR1	angiotensin II receptor, type 1	0.00034692012889688147
GO:0060326: cell chemotaxis	AZU1	azurocidin 1	0.00019664738122811826
GO:0060326: cell chemotaxis	BIN2	bridging integrator 2	-0.0016348003649213072
GO:0060326: cell chemotaxis	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012011471703642532
GO:0060326: cell chemotaxis	ENG	endoglin	0.000820539108666836
GO:0060326: cell chemotaxis	EPHB1	EPH receptor B1	0.001952578732127294
GO:0060326: cell chemotaxis	HMGB2	high mobility group box 2	0.00030318353180710774
GO:0060326: cell chemotaxis	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002717553072549107
GO:0060326: cell chemotaxis	LEF1	lymphoid enhancer-binding factor 1	-0.00010041531808374955
GO:0060326: cell chemotaxis	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.000357937251789311
GO:0060326: cell chemotaxis	PRKCD	protein kinase C, delta	-0.0011208776123495458
GO:0086097: phospholipase C-activating angiotensin-activated signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00034087272072047276
GO:0006418: tRNA aminoacylation for protein translation	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0011874080425433098
GO:0006418: tRNA aminoacylation for protein translation	LARS2	leucyl-tRNA synthetase 2, mitochondrial	0.0004495383965574822
GO:0006915: apoptotic process	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0012090167990556275
GO:0006915: apoptotic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007302741753768608
GO:0006915: apoptotic process	APC	adenomatous polyposis coli	0.000643773545692224
GO:0006915: apoptotic process	AXIN1	axin 1	-0.0007327393983158615
GO:0006915: apoptotic process	BAK1	BCL2-antagonist/killer 1	-0.001875396163227534
GO:0006915: apoptotic process	BAX	BCL2-associated X protein	-0.0004251405877996645
GO:0006915: apoptotic process	BCL2	B-cell CLL/lymphoma 2	-4.977765350639129e-6
GO:0006915: apoptotic process	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.000774660858702622
GO:0006915: apoptotic process	BFAR	bifunctional apoptosis regulator	-0.000369362576607407
GO:0006915: apoptotic process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029113762225990852
GO:0006915: apoptotic process	BUB1	BUB1 mitotic checkpoint serine/threonine kinase	0.0013241946823426406
GO:0006915: apoptotic process	BUB1B	BUB1 mitotic checkpoint serine/threonine kinase B	-0.0012811083549150617
GO:0006915: apoptotic process	CDK1	cyclin-dependent kinase 1	0.00031063400550536917
GO:0006915: apoptotic process	CIB1	calcium and integrin binding 1 (calmyrin)	5.498901725150993e-5
GO:0006915: apoptotic process	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028169464176882202
GO:0006915: apoptotic process	CKAP2	cytoskeleton associated protein 2	4.8815915775722574e-5
GO:0006915: apoptotic process	CST3	cystatin C	-6.975577470499738e-5
GO:0006915: apoptotic process	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.0001170206239645121
GO:0006915: apoptotic process	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007942356023770185
GO:0006915: apoptotic process	DAXX	death-domain associated protein	0.000891037885543598
GO:0006915: apoptotic process	DHCR24	24-dehydrocholesterol reductase	-0.0017067530777823046
GO:0006915: apoptotic process	DIABLO	diablo, IAP-binding mitochondrial protein	-0.0005955950874973306
GO:0006915: apoptotic process	DOCK1	dedicator of cytokinesis 1	-0.0006838636074784749
GO:0006915: apoptotic process	DSG2	desmoglein 2	1.6684566336291924e-5
GO:0006915: apoptotic process	DSP	desmoplakin	-5.6663577730001117e-5
GO:0006915: apoptotic process	E2F1	E2F transcription factor 1	0.0020967558273057426
GO:0006915: apoptotic process	EDAR	ectodysplasin A receptor	0.0005937664990297259
GO:0006915: apoptotic process	ESPL1	extra spindle pole bodies homolog 1 (S. cerevisiae)	0.00019668379559849639
GO:0006915: apoptotic process	FAS	Fas cell surface death receptor	-3.3268354249467116e-5
GO:0006915: apoptotic process	FEM1B	fem-1 homolog b (C. elegans)	-0.0041294375883662495
GO:0006915: apoptotic process	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009834224895683029
GO:0006915: apoptotic process	FGFR2	fibroblast growth factor receptor 2	0.0007628372960817821
GO:0006915: apoptotic process	FOXO1	forkhead box O1	0.0017995590026224561
GO:0006915: apoptotic process	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016112545416969767
GO:0006915: apoptotic process	GLRX2	glutaredoxin 2	0.00111569509792518
GO:0006915: apoptotic process	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008267059407351259
GO:0006915: apoptotic process	HMGB1	high mobility group box 1	-0.0007762934518108856
GO:0006915: apoptotic process	HMGB2	high mobility group box 2	0.00030641277187692343
GO:0006915: apoptotic process	IFNA2	interferon, alpha 2	-0.0017166446112798206
GO:0006915: apoptotic process	IFNG	interferon, gamma	-4.8932342679812774e-5
GO:0006915: apoptotic process	IGFBP3	insulin-like growth factor binding protein 3	0.0008366433195386389
GO:0006915: apoptotic process	JAK2	Janus kinase 2	-3.197876945434215e-5
GO:0006915: apoptotic process	KLF11	Kruppel-like factor 11	0.0006160522158830207
GO:0006915: apoptotic process	KMT2A	lysine (K)-specific methyltransferase 2A	0.000660328715980529
GO:0006915: apoptotic process	KPNB1	karyopherin (importin) beta 1	0.0007716663649921325
GO:0006915: apoptotic process	MAP1S	microtubule-associated protein 1S	0.0005305226458520357
GO:0006915: apoptotic process	MAPT	microtubule-associated protein tau	0.0015512119513917209
GO:0006915: apoptotic process	MEF2C	myocyte enhancer factor 2C	0.0009728470760646266
GO:0006915: apoptotic process	MELK	maternal embryonic leucine zipper kinase	0.002068095947441583
GO:0006915: apoptotic process	NOC2L	nucleolar complex associated 2 homolog (S. cerevisiae)	-0.00015109743019154427
GO:0006915: apoptotic process	PAEP	progestagen-associated endometrial protein	0.0010649492454120441
GO:0006915: apoptotic process	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002186863181408708
GO:0006915: apoptotic process	PAX3	paired box 3	-0.0029442138311813765
GO:0006915: apoptotic process	PLK3	polo-like kinase 3	0.0025634363471375376
GO:0006915: apoptotic process	PML	promyelocytic leukemia	-0.0006799470690519056
GO:0006915: apoptotic process	PPP1R13L	protein phosphatase 1, regulatory subunit 13 like	-0.0014731505524553795
GO:0006915: apoptotic process	PRKCD	protein kinase C, delta	-0.0011277401215461836
GO:0006915: apoptotic process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.0003317158097982079
GO:0006915: apoptotic process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.001094786897076216
GO:0006915: apoptotic process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-5.9830520284207964e-5
GO:0006915: apoptotic process	PTEN	phosphatase and tensin homolog	1.737080243959775e-5
GO:0006915: apoptotic process	RAD21	RAD21 homolog (S. pombe)	-0.00010240308952538403
GO:0006915: apoptotic process	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014982218551294758
GO:0006915: apoptotic process	S100A14	S100 calcium binding protein A14	-0.0021585857386697133
GO:0006915: apoptotic process	SIX1	SIX homeobox 1	-0.0018692210724397704
GO:0006915: apoptotic process	STEAP3	STEAP family member 3, metalloreductase	0.0026082397026490154
GO:0006915: apoptotic process	STK24	serine/threonine kinase 24	0.0026936240307968004
GO:0006915: apoptotic process	SULF1	sulfatase 1	-0.0008048270968838139
GO:0006915: apoptotic process	TFDP1	transcription factor Dp-1	0.0014437072999589982
GO:0006915: apoptotic process	TGFBR1	transforming growth factor, beta receptor 1	0.00033965305776263195
GO:0006915: apoptotic process	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011160752793497304
GO:0006915: apoptotic process	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.0003172603557685239
GO:0006915: apoptotic process	TNFRSF21	tumor necrosis factor receptor superfamily, member 21	0.00034825319608522404
GO:0006915: apoptotic process	TP53	tumor protein p53	0.0011749295130844954
GO:0006915: apoptotic process	TPX2	TPX2, microtubule-associated	0.00134089036921522
GO:0006915: apoptotic process	TRAIP	TRAF interacting protein	0.0010220359191476967
GO:0031398: positive regulation of protein ubiquitination	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0012010069598741666
GO:0031398: positive regulation of protein ubiquitination	ANGPT1	angiopoietin 1	0.0008913658074095572
GO:0031398: positive regulation of protein ubiquitination	AXIN1	axin 1	-0.0007213068450650995
GO:0031398: positive regulation of protein ubiquitination	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005316868040034785
GO:0031398: positive regulation of protein ubiquitination	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011275586233072872
GO:0031398: positive regulation of protein ubiquitination	FGFR3	fibroblast growth factor receptor 3	0.0002186857278572149
GO:0031398: positive regulation of protein ubiquitination	RCHY1	ring finger and CHY zinc finger domain containing 1, E3 ubiquitin protein ligase	-0.0010856415125516392
GO:0031398: positive regulation of protein ubiquitination	SPHK1	sphingosine kinase 1	0.00178811802466624
GO:0031398: positive regulation of protein ubiquitination	WFS1	Wolfram syndrome 1 (wolframin)	0.0005759734548774602
GO:0060510: Type II pneumocyte differentiation	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.001213658882964943
GO:0060510: Type II pneumocyte differentiation	GATA6	GATA binding protein 6	-2.6558144610594504e-5
GO:0060510: Type II pneumocyte differentiation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013298208500483563
GO:0060510: Type II pneumocyte differentiation	NFIB	nuclear factor I/B	0.0029447623268373047
GO:1901216: positive regulation of neuron death	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0011963101836747177
GO:1901216: positive regulation of neuron death	DAXX	death-domain associated protein	0.0008705266213619486
GO:1901216: positive regulation of neuron death	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.00033455092555201727
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014842345117490696
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003966706795817345
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTM1	glutathione S-transferase mu 1	-0.0014679242835137231
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTM2	glutathione S-transferase mu 2 (muscle)	-0.0019064539301062592
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTM3	glutathione S-transferase mu 3 (brain)	-0.0012838890629065188
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTP1	glutathione S-transferase pi 1	0.00022946726349868936
KEGG:00140: Steroid hormone biosynthesis	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014712069940209104
KEGG:00140: Steroid hormone biosynthesis	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003925703910131019
KEGG:00140: Steroid hormone biosynthesis	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016022857801800209
KEGG:00140: Steroid hormone biosynthesis	HSD17B6	hydroxysteroid (17-beta) dehydrogenase 6	-0.0008473314212231179
KEGG:00140: Steroid hormone biosynthesis	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006299596753869802
GO:0001523: retinoid metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014878829230930402
GO:0001523: retinoid metabolic process	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009319875632310966
GO:0001523: retinoid metabolic process	STRA6	stimulated by retinoic acid 6	-0.001676578866016785
GO:0006805: xenobiotic metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014894220236712696
GO:0006805: xenobiotic metabolic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039783342561504077
GO:0006805: xenobiotic metabolic process	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.000470936153498922
GO:0006805: xenobiotic metabolic process	CYP4B1	cytochrome P450, family 4, subfamily B, polypeptide 1	-0.0013561574475498964
GO:0006805: xenobiotic metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016330216790402927
GO:0006805: xenobiotic metabolic process	GCLM	glutamate-cysteine ligase, modifier subunit	-0.003762119668336251
GO:0006805: xenobiotic metabolic process	GSTM1	glutathione S-transferase mu 1	-0.0014741932946486188
GO:0006805: xenobiotic metabolic process	GSTM2	glutathione S-transferase mu 2 (muscle)	-0.0019143488737018632
GO:0006805: xenobiotic metabolic process	GSTM3	glutathione S-transferase mu 3 (brain)	-0.0012889978412383445
GO:0006805: xenobiotic metabolic process	GSTP1	glutathione S-transferase pi 1	0.00023144083870978448
GO:0006805: xenobiotic metabolic process	SLC35D1	solute carrier family 35 (UDP-GlcA/UDP-GalNAc transporter), member D1	-6.69650537166444e-5
GO:0006805: xenobiotic metabolic process	SULT4A1	sulfotransferase family 4A, member 1	-0.0011690724189763388
GO:0006805: xenobiotic metabolic process	UGDH	UDP-glucose 6-dehydrogenase	0.0005021831791150158
GO:0006805: xenobiotic metabolic process	UGP2	UDP-glucose pyrophosphorylase 2	0.0007852680716861067
GO:0007586: digestion	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014971109160566132
GO:0007586: digestion	NMU	neuromedin U	0.0018630596659245915
GO:0007586: digestion	PGC	progastricsin (pepsinogen C)	0.0013304868788324748
GO:0007586: digestion	SLC15A1	solute carrier family 15 (oligopeptide transporter), member 1	-0.002777325068263748
GO:0007603: phototransduction, visible light	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014807883341618933
GO:0007603: phototransduction, visible light	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009278360939371801
GO:0007603: phototransduction, visible light	METAP1	methionyl aminopeptidase 1	-0.0010119364799306915
GO:0007603: phototransduction, visible light	PRKCA	protein kinase C, alpha	-6.423218744170169e-6
GO:0007603: phototransduction, visible light	STRA6	stimulated by retinoic acid 6	-0.0016651468689401097
GO:0015721: bile acid and bile salt transport	AKR1C1	aldo-keto reductase family 1, member C1	-0.001481481518065895
GO:0015721: bile acid and bile salt transport	RXRA	retinoid X receptor, alpha	0.0011089479183730643
GO:0030299: intestinal cholesterol absorption	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152418
GO:0030855: epithelial cell differentiation	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014884134398433023
GO:0030855: epithelial cell differentiation	BMP7	bone morphogenetic protein 7	0.0008552728225342671
GO:0030855: epithelial cell differentiation	CDK1	cyclin-dependent kinase 1	0.0003094416483529572
GO:0030855: epithelial cell differentiation	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012723765196986753
GO:0030855: epithelial cell differentiation	DLX5	distal-less homeobox 5	-0.0032809231137978898
GO:0030855: epithelial cell differentiation	DLX6	distal-less homeobox 6	-0.00017992308000211785
GO:0030855: epithelial cell differentiation	FGFR2	fibroblast growth factor receptor 2	0.000762144187426138
GO:0030855: epithelial cell differentiation	PCNA	proliferating cell nuclear antigen	0.0012237219721258712
GO:0030855: epithelial cell differentiation	SIX1	SIX homeobox 1	-0.0018681328167706034
GO:0030855: epithelial cell differentiation	STX2	syntaxin 2	0.00030777425472991275
GO:0030855: epithelial cell differentiation	VEGFA	vascular endothelial growth factor A	0.0005933402809700335
GO:0030855: epithelial cell differentiation	WT1	Wilms tumor 1	-0.0005061393445866926
GO:0042448: progesterone metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152418
GO:0042574: retinal metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014965655797961738
GO:0042574: retinal metabolic process	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030348572373743057
GO:0042574: retinal metabolic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039888720936128537
GO:0044597: daunorubicin metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152418
GO:0044598: doxorubicin metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152418
GO:0046683: response to organophosphorus	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014904468159268123
GO:0046683: response to organophosphorus	RFC3	replication factor C (activator 1) 3, 38kDa	0.00031439345763005196
GO:0046683: response to organophosphorus	TRIM16	tripartite motif containing 16	-0.0014908189289572122
GO:0046683: response to organophosphorus	TYMS	thymidylate synthetase	0.001565154457501905
GO:0051260: protein homooligomerization	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014765187659678434
GO:0051260: protein homooligomerization	AXIN1	axin 1	-0.000722965788252806
GO:0051260: protein homooligomerization	BAX	BCL2-associated X protein	-0.000421813608639165
GO:0051260: protein homooligomerization	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005317576552947026
GO:0051260: protein homooligomerization	CEP57	centrosomal protein 57kDa	-0.0005350088650690886
GO:0051260: protein homooligomerization	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012631724568001811
GO:0051260: protein homooligomerization	CRYAA	crystallin, alpha A	-0.0006664269036593948
GO:0051260: protein homooligomerization	CRYAB	crystallin, alpha B	0.0009705595613955777
GO:0051260: protein homooligomerization	ECT2	epithelial cell transforming 2	0.0010495059974709277
GO:0051260: protein homooligomerization	FAS	Fas cell surface death receptor	-3.284126954160666e-5
GO:0051260: protein homooligomerization	FLOT1	flotillin 1	-0.0007567730086071728
GO:0051260: protein homooligomerization	HMOX1	heme oxygenase (decycling) 1	-0.00021458075627884052
GO:0051260: protein homooligomerization	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006467593622725968
GO:0051260: protein homooligomerization	KCNV2	potassium channel, subfamily V, member 2	0.0009177516646332513
GO:0051260: protein homooligomerization	RAD51	RAD51 recombinase	-0.0018429989679449605
GO:0051260: protein homooligomerization	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0008918154514029542
GO:0051260: protein homooligomerization	SYT1	synaptotagmin I	-0.0014261697188205768
GO:0071395: cellular response to jasmonic acid stimulus	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152418
KEGG:04510: Focal adhesion	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007311119635755518
KEGG:04510: Focal adhesion	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006259514437814397
KEGG:04510: Focal adhesion	BCL2	B-cell CLL/lymphoma 2	-5.087034901944204e-6
KEGG:04510: Focal adhesion	CAV1	caveolin 1, caveolae protein, 22kDa	-0.000535454747021665
KEGG:04510: Focal adhesion	CCND1	cyclin D1	-0.002635212744020827
KEGG:04510: Focal adhesion	CDC42	cell division cycle 42	0.0012409586708569855
KEGG:04510: Focal adhesion	CHAD	chondroadherin	-0.0021796141370551145
KEGG:04510: Focal adhesion	COL11A1	collagen, type XI, alpha 1	-0.00044194481889284654
KEGG:04510: Focal adhesion	COL1A1	collagen, type I, alpha 1	-0.0005271888644141813
KEGG:04510: Focal adhesion	COL5A1	collagen, type V, alpha 1	-5.05532779934717e-5
KEGG:04510: Focal adhesion	COL5A2	collagen, type V, alpha 2	-0.0003463078706705321
KEGG:04510: Focal adhesion	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011676958739873384
KEGG:04510: Focal adhesion	DOCK1	dedicator of cytokinesis 1	-0.0006848151025178803
KEGG:04510: Focal adhesion	EGFR	epidermal growth factor receptor	0.00068660662733338
KEGG:04510: Focal adhesion	GRB2	growth factor receptor-bound protein 2	0.0004297740014662272
KEGG:04510: Focal adhesion	GSK3B	glycogen synthase kinase 3 beta	0.0015498469809238425
KEGG:04510: Focal adhesion	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001311562435122708
KEGG:04510: Focal adhesion	IGF1R	insulin-like growth factor 1 receptor	0.001071901903015421
KEGG:04510: Focal adhesion	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014001321876838252
KEGG:04510: Focal adhesion	ITGA6	integrin, alpha 6	0.001670939128372588
KEGG:04510: Focal adhesion	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002428203028573577
KEGG:04510: Focal adhesion	ITGB4	integrin, beta 4	0.0005810363399926135
KEGG:04510: Focal adhesion	LAMB2	laminin, beta 2 (laminin S)	-0.0013099544265133148
KEGG:04510: Focal adhesion	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002188867920935421
KEGG:04510: Focal adhesion	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.0012590159858141341
KEGG:04510: Focal adhesion	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003620155184959438
KEGG:04510: Focal adhesion	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007812225179908652
KEGG:04510: Focal adhesion	PRKCA	protein kinase C, alpha	-5.841197382942591e-6
KEGG:04510: Focal adhesion	PTEN	phosphatase and tensin homolog	1.6638750585002282e-5
KEGG:04510: Focal adhesion	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014995066995844872
KEGG:04510: Focal adhesion	RELN	reelin	0.001538452145682454
KEGG:04510: Focal adhesion	RHOA	ras homolog family member A	0.0006700457466109885
KEGG:04510: Focal adhesion	THBS1	thrombospondin 1	-0.0010365297244895536
KEGG:04510: Focal adhesion	THBS3	thrombospondin 3	0.0016180337455121816
KEGG:04510: Focal adhesion	THBS4	thrombospondin 4	-0.00044493624999140474
KEGG:04510: Focal adhesion	TNC	tenascin C	0.0007346498478172672
KEGG:04510: Focal adhesion	VEGFA	vascular endothelial growth factor A	0.0005957414552274811
KEGG:04510: Focal adhesion	VEGFC	vascular endothelial growth factor C	-0.003365676955124796
KEGG:05166: HTLV-I infection	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007301487265280056
KEGG:05166: HTLV-I infection	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006254672127444562
KEGG:05166: HTLV-I infection	APC	adenomatous polyposis coli	0.0006433803976048458
KEGG:05166: HTLV-I infection	BAX	BCL2-associated X protein	-0.00042482099359576964
KEGG:05166: HTLV-I infection	BUB1B	BUB1 mitotic checkpoint serine/threonine kinase B	-0.001280329068868418
KEGG:05166: HTLV-I infection	BUB3	BUB3 mitotic checkpoint protein	0.0016214780334313287
KEGG:05166: HTLV-I infection	CCND1	cyclin D1	-0.002631438324825476
KEGG:05166: HTLV-I infection	CDC20	cell division cycle 20	-0.00018846746314222148
KEGG:05166: HTLV-I infection	CDC23	cell division cycle 23	-0.0015523879891386665
KEGG:05166: HTLV-I infection	CDC27	cell division cycle 27	0.0005361343533335336
KEGG:05166: HTLV-I infection	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017572163952829752
KEGG:05166: HTLV-I infection	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.001834326137940625
KEGG:05166: HTLV-I infection	CHEK1	checkpoint kinase 1	0.0008996601738664548
KEGG:05166: HTLV-I infection	CREB1	cAMP responsive element binding protein 1	0.0006579316282892345
KEGG:05166: HTLV-I infection	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011677765719283274


Excessive output truncated after 524293 bytes.

KEGG:05166: HTLV-I infection	E2F1	E2F transcription factor 1	0.002096507746263104
KEGG:05166: HTLV-I infection	E2F3	E2F transcription factor 3	0.0021608927453620713
KEGG:05166: HTLV-I infection	EGR1	early growth response 1	0.001092420152729813
KEGG:05166: HTLV-I infection	EGR2	early growth response 2	0.001437952547003632
KEGG:05166: HTLV-I infection	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010148671813836451
KEGG:05166: HTLV-I infection	FZD3	frizzled class receptor 3	0.0003783187873494029
KEGG:05166: HTLV-I infection	FZD7	frizzled class receptor 7	0.0010700104194553235
KEGG:05166: HTLV-I infection	GSK3B	glycogen synthase kinase 3 beta	0.0015481661412175235
KEGG:05166: HTLV-I infection	ICAM1	intercellular adhesion molecule 1	0.0007288551674977712
KEGG:05166: HTLV-I infection	MAD2L1	MAD2 mitotic arrest deficient-like 1 (yeast)	0.00031861014213334544
KEGG:05166: HTLV-I infection	MSX1	msh homeobox 1	-0.002767385544638793
KEGG:05166: HTLV-I infection	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011355383056244038
KEGG:05166: HTLV-I infection	NRP1	neuropilin 1	-0.0006427489251350101
KEGG:05166: HTLV-I infection	PCNA	proliferating cell nuclear antigen	0.0012255293610770968
KEGG:05166: HTLV-I infection	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003611017467260215
KEGG:05166: HTLV-I infection	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007803532808301463
KEGG:05166: HTLV-I infection	POLD1	polymerase (DNA directed), delta 1, catalytic subunit	-0.000444476158769185
KEGG:05166: HTLV-I infection	POLD2	polymerase (DNA directed), delta 2, accessory subunit	0.0007395023232667373
KEGG:05166: HTLV-I infection	POLD3	polymerase (DNA-directed), delta 3, accessory subunit	0.0017395010973657733
KEGG:05166: HTLV-I infection	POLD4	polymerase (DNA-directed), delta 4, accessory subunit	-0.0006380253171875893
KEGG:05166: HTLV-I infection	POLE	polymerase (DNA directed), epsilon, catalytic subunit	0.00294659060566357
KEGG:05166: HTLV-I infection	POLE2	polymerase (DNA directed), epsilon 2, accessory subunit	0.0013251314623131932
KEGG:05166: HTLV-I infection	POLE3	polymerase (DNA directed), epsilon 3, accessory subunit	0.0008044456814438907
KEGG:05166: HTLV-I infection	PRKX	protein kinase, X-linked	0.0003947014380226405
KEGG:05166: HTLV-I infection	PTTG1	pituitary tumor-transforming 1	-0.00036139932312809344
KEGG:05166: HTLV-I infection	PTTG2	pituitary tumor-transforming 2	-0.0017237148085190955
KEGG:05166: HTLV-I infection	RB1	retinoblastoma 1	-0.001493091369589594
KEGG:05166: HTLV-I infection	STAT5A	signal transducer and activator of transcription 5A	0.0015953326831280423
KEGG:05166: HTLV-I infection	TBPL1	TBP-like 1	-0.0007881631366525115
KEGG:05166: HTLV-I infection	TGFB1	transforming growth factor, beta 1	-7.303893692018503e-5
KEGG:05166: HTLV-I infection	TGFB2	transforming growth factor, beta 2	-0.0010587016430251186
KEGG:05166: HTLV-I infection	TGFB3	transforming growth factor, beta 3	-0.0018227899253952398
KEGG:05166: HTLV-I infection	TGFBR1	transforming growth factor, beta receptor 1	0.0003397120041990668
KEGG:05166: HTLV-I infection	TP53	tumor protein p53	0.0011750040561670674
KEGG:05166: HTLV-I infection	WNT1	wingless-type MMTV integration site family, member 1	0.0007864609236476774
KEGG:05166: HTLV-I infection	WNT10B	wingless-type MMTV integration site family, member 10B	-0.001387697159989257
KEGG:05166: HTLV-I infection	WNT4	wingless-type MMTV integration site family, member 4	-0.000251960245831356
KEGG:05166: HTLV-I infection	WNT5A	wingless-type MMTV integration site family, member 5A	-0.000667113787232566
KEGG:05166: HTLV-I infection	WNT7A	wingless-type MMTV integration site family, member 7A	1.957956115003797e-5
KEGG:05166: HTLV-I infection	XBP1	X-box binding protein 1	0.0002668001478054869
KEGG:05169: Epstein-Barr virus infection	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007262566190756878
KEGG:05169: Epstein-Barr virus infection	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006235672077896339
KEGG:05169: Epstein-Barr virus infection	BCL2	B-cell CLL/lymphoma 2	-4.88293798505842e-6
KEGG:05169: Epstein-Barr virus infection	CCNA1	cyclin A1	-0.0017501487999748548
KEGG:05169: Epstein-Barr virus infection	CDK1	cyclin-dependent kinase 1	0.0003069529137300437
KEGG:05169: Epstein-Barr virus infection	CSNK2B	casein kinase 2, beta polypeptide	0.0015192769043707267
KEGG:05169: Epstein-Barr virus infection	GSK3B	glycogen synthase kinase 3 beta	0.0015411902495898228
KEGG:05169: Epstein-Barr virus infection	HDAC2	histone deacetylase 2	-0.001203898890181675
KEGG:05169: Epstein-Barr virus infection	HSPA2	heat shock 70kDa protein 2	-0.00010345824148931605
KEGG:05169: Epstein-Barr virus infection	ICAM1	intercellular adhesion molecule 1	0.0007273626760522077
KEGG:05169: Epstein-Barr virus infection	IFNG	interferon, gamma	-4.9007963792688934e-5
KEGG:05169: Epstein-Barr virus infection	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016002937427628521
KEGG:05169: Epstein-Barr virus infection	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014136847532094162
KEGG:05169: Epstein-Barr virus infection	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011325117414121152
KEGG:05169: Epstein-Barr virus infection	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022535228582410438
KEGG:05169: Epstein-Barr virus infection	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007767642901220772
KEGG:05169: Epstein-Barr virus infection	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018450093234024655
KEGG:05169: Epstein-Barr virus infection	PRKX	protein kinase, X-linked	0.00039030241681122673
KEGG:05169: Epstein-Barr virus infection	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.001091548683016146
KEGG:05169: Epstein-Barr virus infection	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.068925883060721e-5
KEGG:05169: Epstein-Barr virus infection	RB1	retinoblastoma 1	-0.0014861678606360028
KEGG:05169: Epstein-Barr virus infection	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009777741038018573
KEGG:05169: Epstein-Barr virus infection	SKP2	S-phase kinase-associated protein 2, E3 ubiquitin protein ligase	-0.0005374559859162727
KEGG:05169: Epstein-Barr virus infection	TBPL1	TBP-like 1	-0.0007871806823993502
KEGG:05169: Epstein-Barr virus infection	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011106622138456052
KEGG:05169: Epstein-Barr virus infection	TP53	tumor protein p53	0.0011672564642736679
KEGG:04630: Jak-STAT signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000732236657694118
KEGG:04630: Jak-STAT signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006269139625152389
KEGG:04630: Jak-STAT signaling pathway	CCND1	cyclin D1	-0.002638355521223424
KEGG:04630: Jak-STAT signaling pathway	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.43339349816852e-5
KEGG:04630: Jak-STAT signaling pathway	CSH1	chorionic somatomammotropin hormone 1 (placental lactogen)	-0.00025766423016498105
KEGG:04630: Jak-STAT signaling pathway	GRB2	growth factor receptor-bound protein 2	0.00043051485571086605
KEGG:04630: Jak-STAT signaling pathway	IFNA2	interferon, alpha 2	-0.0017203925871120368
KEGG:04630: Jak-STAT signaling pathway	IFNG	interferon, gamma	-4.89919176168075e-5
KEGG:04630: Jak-STAT signaling pathway	IL12B	interleukin 12B	0.0012788481986337784
KEGG:04630: Jak-STAT signaling pathway	IL20RA	interleukin 20 receptor, alpha	0.0001745061911577261
KEGG:04630: Jak-STAT signaling pathway	IL4	interleukin 4	0.0002597667927782357
KEGG:04630: Jak-STAT signaling pathway	IL6ST	interleukin 6 signal transducer	0.0018793482781852785
KEGG:04630: Jak-STAT signaling pathway	IL7	interleukin 7	0.0008729639337432423
KEGG:04630: Jak-STAT signaling pathway	JAK2	Janus kinase 2	-3.159219747417667e-5
KEGG:04630: Jak-STAT signaling pathway	LEP	leptin	0.0031976777282567794
KEGG:04630: Jak-STAT signaling pathway	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011388686705106016
KEGG:04630: Jak-STAT signaling pathway	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007822987779466495
KEGG:04630: Jak-STAT signaling pathway	PRLR	prolactin receptor	0.0021873812105298817
KEGG:04630: Jak-STAT signaling pathway	STAT5A	signal transducer and activator of transcription 5A	0.0015991927405241133
KEGG:04071: Sphingolipid signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007202122493181328
KEGG:04071: Sphingolipid signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.000619913285639517
KEGG:04071: Sphingolipid signaling pathway	BAX	BCL2-associated X protein	-0.00042169000397750215
KEGG:04071: Sphingolipid signaling pathway	BCL2	B-cell CLL/lymphoma 2	-4.414007247247366e-6

The following prints the coefficients in the original dimensions:

for (v, β) in zip(variable_names[β_orig .!= 0], β_orig[β_orig .!= 0])
    println("$v\t$β")
end
RFC2	0.017828370354349202
PAX8	0.03684757874519625
THRA	0.028067107007347436
EPHB3	0.019420774902517743
CFL1	-0.030460550648403972
YY1	0.013402782876598915
ZPR1	-0.0041704594130534
RHOA	0.043220992206706325
GUK1	0.05284161532839049
DSP	-0.0008924333259685115
RAD21	-0.0016314685844209583
SF3B2	0.004117778492081896
NDRG1	-0.006543628992920163
CD63	-0.015885903765799944
DNAJB1	-0.0020740235707915316
XBP1	0.021161233616516405
SPTBN1	0.03684346496032824
HMGB1	-0.030756596050312508
GPX1	0.02123400737801506
NUMA1	0.021341452238237465
ARL6IP5	0.0010924161799196028
STMN1	0.007247922509085323
ODC1	0.00984689697218672
DAZAP2	-0.0007855012627521636
TMBIM6	-0.0022818769304895872
GSTP1	0.00815519724724144
ZNF207	-0.0027205566179267678
DHCR24	-0.03582951324451187
DEK	0.01752513149401217
HIF1A	-0.04980124402515669
SNX17	0.011478189129344094
CD9	-0.03889280343675502
JUP	-0.038198768007394045
TGM2	-0.0017271186611303288
MMP2	-0.02598193263059217
THBS1	-0.08446415723750327
TUFM	-0.006526015058534709
POLD2	0.017044076906068104
CPE	-0.022985479474374383
SLC7A5	-0.04388439401899305
AMD1	-0.02540208212059124
PCNA	0.041776759139773585
PSMD13	-0.00248328328284358
RAF1	0.14338085024453606
PSMA5	0.01305134817715597
OGDH	-0.005067398489416659
TOP2A	-0.0015644814822285897
ETS2	-0.012155698340348457
CST3	-0.0020043270870368684
ZFP36L2	-0.004307263131398858
CSNK2B	0.033543365932369354
PHGDH	0.005731129900934973
HSD17B4	-0.021954771791886207
SOX4	-0.0018435626169123736
WDR77	0.001021267345548397
BUB3	0.02098069229083202
ITGA3	0.05313965779313371
RRM1	0.03261837436083389
IGFBP4	-0.015294959879804445
APOD	0.052813903449321284
RPA1	0.016706070001905684
CTNNB1	-0.016692352559666623
ZNHIT1	-0.0016925861371024215
MCM3	0.021427995026917317
SORD	-0.038551956615451875
ID2	0.0030436585873623682
IRAK1	-0.08686643583075758
SMC1A	-0.021331481725464577
KRT18	-0.010141434375582896
PHB2	-0.012382612300996649
TNC	0.010270550679614047
ITGA6	0.0620264749702787
SMC4	0.008291635589654024
GJA1	-0.009687495934931713
EGR1	0.048905226314721446
TPR	-0.028977825234667635
TP53	0.17001586712848318
MCM5	0.01389101962776639
RPA2	0.008798613227269443
DAXX	0.02295086469842311
AZIN1	-0.00084130386837291
NCAPD2	-0.006694478531962176
ADAR	-0.004273578061227499
ENG	0.03035317517838371
HDAC2	-0.07936953927783136
BNIP3	0.10258521554357349
RRM2	-0.009046537510581772
IMPDH2	-0.004533325675427475
PSRC1	0.005150878919895945
PRDX4	0.01523389827163883
MCM6	0.013085227098779625
CHMP1A	-0.011579771180144553
CIB1	0.0024940862002963754
CCNC	0.005668826446434935
NASP	0.016794814852552596
EGFR	0.059238854821459616
LANCL1	0.0007339826494670795
EFNA1	-0.012411014380812584
SFRP1	0.10537629932164158
SLC39A6	0.0011622219237774852
BIRC5	-0.006728392679664575
NUP153	0.02040133078639976
BRD4	0.009878615819780393
IGBP1	0.03716659575857555
MCM2	0.02964701901069166
NOC2L	-0.0013018167154264424
WWTR1	0.024221399551931384
AIMP2	0.008424538648259091
PKN1	-0.038089434810030715
PRKCZ	-0.08299626615623114
MVP	-0.005039939366418272
SLC6A8	-0.010418167114822335
PLK1	0.04441888968698374
E2F4	-0.04000230602549142
VPS72	0.0027918177788449927
PDGFRB	-0.030899955754132926
TACSTD2	-0.027265926405762784
MTHFD1	-0.01510667125644826
COL1A1	-0.027741878551277015
UNG	0.005040246685305158
UBE2K	-0.0026338147552762183
HTT	-0.043330865732513386
BASP1	0.004749137833453015
IGSF3	0.0002846542519311499
RXRA	0.057808121779938125
MYC	-0.072548412304002
CYP1B1	0.016791485175176295
CTSK	-0.005372887927588198
MLXIP	0.010971441163870612
MLH1	0.049206926689411956
DHFR	-0.007368555092904125
PRKCD	-0.06848826247053866
VAMP8	-0.0006123414941763349
GSTM3	-0.016771952909600252
FOXM1	0.005470530397087545
NFX1	-0.0003601096625964096
TYMS	0.05804193843777029
PDK2	0.02221869726926004
SSBP1	0.0033581919245183277
ENSA	0.01107186933266139
IRF6	-0.018578500771458263
NRIP1	0.010689665804530204
CTPS1	-0.005033769164073504
LYN	-0.136020008807996
SERPINE1	0.004549817149767894
TOPBP1	0.008262583182653466
ICAM1	0.04698813280501896
ARL3	-0.01294467102849298
TNFAIP3	0.06196838444377321
RASA1	-0.01034731086096733
PTPN1	-0.03400858029035727
IGFBP2	0.002158294645734258
FOXO1	0.08981646049044094
LIG1	0.0193507999466856
USP8	-0.004295447026511486
SLC7A8	-0.007029917025023934
HMGCL	-0.017920596453702677
UBE2S	0.0045175440810432885
SLC1A3	-0.07846231096017793
DBN1	-0.007958079888046341
WBP1L	-0.000681287991249623
STAMBP	-0.0013439330003021672
HEXIM1	0.0009146807422728791
AGT	-0.11777825302279475
HPRT1	-0.03429130520873595
CDC20	-0.004158031714099346
CDC23	-0.029289849014534894
E2F1	0.09452257827698173
WFS1	0.016589595131934927
MSH6	0.018275675693561977
ADM	0.09880822122504286
SOX9	-0.05534375159597976
UBE2C	-0.005246903745117178
MUT	0.03595052181188065
POLD4	-0.015987318033880746
STMN2	-0.015563832488220842
STAT5A	0.09242498840939785
RNASEH2A	0.004135880019279892
C2	-0.003309436311102554
CAV1	-0.06306570615282243
CHST15	-0.005782691230612214
CTNNBIP1	0.00813817662846005
TGFB1	-0.01286980654040743
KIF2A	-0.00940583501543574
CCDC86	0.0007146750595481009
SLC11A2	-0.02540406821912905
RB1	-0.08508075060728251
KIAA0040	-0.002238970680822911
SPAG5	-0.0032009057004588662
PVRL2	-0.0006298298280750443
RNF8	0.01432228150445324
KATNB1	-0.0011054373409471157
FBN2	-0.007380182720434387
DOCK1	-0.011621186923791514
RFC5	0.04044914529319224
MTMR2	-0.008937113364945702
CDK1	0.011067291839721301
LGALS9	-0.004539435216978988
ZNF24	0.003876944012315019
CDH3	-0.02817740438154239
DTYMK	0.056140409949783615
HS2ST1	-0.00641256666471871
NCK2	-0.006297849220518805
ZNF148	0.01687101223878771
COL5A1	-0.0011032697296370457
UGDH	0.006978188918291187
ORC4	-0.0003733583483527787
EZH2	-0.00451656269024172
MAD2L1	0.005619561855304876
CDC40	0.037816427638019776
RPS6KA1	-0.09063268000400475
HES1	-0.064127697024044
PSMG1	0.0004065201829242524
MMD	0.010754803225344924
KMT2B	0.005044953078137118
POLD1	-0.014189772998580031
ASF1A	0.009452157844126934
SUCO	0.011236978978278106
STC2	-0.016718403399941684
CDH2	-0.017260462882438515
SPR	-0.01968662444539362
PLEK	0.024370121612437626
CEP57	-0.00480474628304929
MED1	0.0675752988782279
GCDH	7.034724478452118e-6
SPG11	-8.77900008434412e-5
APC	0.04037734300954114
PTTG1	-0.005785185428833481
CUL7	-0.00187450026722369
AOC1	-0.018470431644445603
GGH	-0.002498067853885294
ADIRF	-0.00113679635877978
CSF3R	-0.0010011980500108403
ALDH5A1	0.049215938800476006
SKP2	-0.011781180780861274
IGF1R	0.056589839552778694
CPT1A	0.02793053700663757
FGFR2	0.09289228548238229
PCNT	0.028601621161861778
POLR2D	0.04460874361078858
HMOX1	-0.010639419074505245
CXCL12	-0.05774207903759681
IVD	-0.00743819916374257
BCL2	-0.0008945318307243249
CX3CL1	0.0806256887240457
PI3	-0.0020780905281699317
E2F3	0.041153716213057176
RREB1	-0.02182065647643501
FZD7	0.028752992618935908
ITPR1	-0.041649108642733405
KIAA0020	0.0009336617440814795
BAK1	-0.11224104241962272
HMGB3	0.0032015310613518143
BUB1B	-0.02043233995002447
DYNC2LI1	0.004614918362283695
DLGAP5	-0.007949800760510883
MANBA	-0.019025815224275853
SEMA3C	-0.0030735790631009376
AKT2	-0.06589440234688392
IGF2BP3	-0.00228218831845981
MAP3K5	0.009733993057483056
IGFBP6	-0.010108693926009847
PIK3CD	-0.0844687245645645
CXADR	0.008125836938706717
NR1H3	0.029204949713111012
GCLM	-0.07189730152604516
MAPT	0.035560439470454244
VASH1	0.00533699418822194
KIF3B	-0.002474744514527213
E2F6	0.002157328763298449
CDC6	0.021677609174670768
SLC31A1	-0.00026750176527266925
CHAF1A	0.0021731702471032414
SYT1	-0.023198591120091597
LARS2	0.0026855477725405788
PURA	-0.001528919377457104
WWP2	-0.018109591414804605
RFC4	0.013094847932800592
ZWINT	0.005037357692006728
CELSR2	-0.015828809359290326
PTEN	0.0027038745904595443
PRKX	0.02631090918211519
TPST2	0.002124847987139036
AURKA	0.026072099828434364
RBMX2	0.001152530404779395
SMARCD3	0.005056510060143437
LIG3	0.01793752577689787
CDC45	0.035128743764696796
RFC3	0.006289485493524522
FOXO3	0.04304335440765908
TFDP1	0.024597855220075616
AKR1C1	-0.0282352421025686
NDC80	-0.012994348996505867
IMPDH1	-0.0225262430651548
CKS2	-0.00027678237494293374
CPOX	0.015309998121761632
RARG	-0.07205944464497148
BACH1	0.0038557769403125748
ACOT8	0.014671699445802367
SMC2	0.003475792884709931
VDR	0.015094705098909523
MMP7	0.00671835148729825
SKI	-0.025321698970961436
RGS14	-0.03319822659144859
LOX	-0.005739266799934817
PROM1	-0.007435736621323737
CREB1	0.05291850511267863
COL11A1	-0.009683886337841511
TRIM16	-0.013286678121464167
BCAS1	-0.00012129172027097893
FGFR3	0.015061013692887168
GOLGA2	0.0024261581799851157
EFS	0.007825864377930102
GSTM2	-0.03453019093217696
SLC2A5	0.002611578059423234
POLA2	-0.02095432318344105
KIF11	0.012877878211679255
GAP43	-0.0010497450042150271
CDC7	-0.009474360240546223
PHF14	0.012996775839253323
CXCL10	0.002254037703778183
EEF1A2	-0.01120645751560732
KIAA0513	-0.0026336085747406764
STAR	0.04875919120485764
GSTM1	-0.016224872433555543
FKBP5	0.0009347797125010547
ABCG1	-0.06107660423264801
CROT	-0.004733522036937509
CD22	0.0033428343036181903
SLC7A7	-0.008350703535127247
DKK1	-0.004376640259688259
EXO1	-0.007169600632849001
NEK2	0.0008735531837337536
TFAP2A	0.014741557686044906
FOXA1	0.000746407240502839
KIF23	-0.003814023656309865
NCK1	-0.023238340655216322
CNKSR1	-0.003309506835284201
BICD1	0.029467848470741347
PICK1	-0.018798454080332122
DSC2	0.003699088871784487
NUDT1	0.016584887220270787
FEN1	0.03928002763295098
CHAF1B	0.06336904561093554
THBS4	-0.007936586153612106
FAS	-0.0018303251038774484
ZW10	-0.009789089406096772
ESPL1	0.002634948306702256
TTK	0.00865778441087693
MELK	0.02073261360905723
CCNF	0.0017514255657294674
RAD9A	0.00781452458959319
CDK8	0.026158579700205565
POLA1	0.028022750740118868
CP	0.0065020423732590465
ORC2	-0.003678216662216378
SERPINB5	-0.036469081294249625
IL6ST	0.05064993589383436
GCHFR	-0.006643824918077309
PCSK2	0.004188397886511954
MTERF1	0.002183754335489941
MGMT	0.006087508732606009
UGCG	0.0032665560698968733
PLK4	0.027056234063494843
SOX11	-0.01037570549924278
INHBA	-0.07031194038416434
HPN	0.06343944613246812
PTPN2	-0.011850499157072161
CARD8	0.0009737029049671214
MTAP	0.026794832993818393
ORC5	-0.0008066718761636681
PLK3	0.05651776084747911
SHROOM2	0.016570941054944707
CLOCK	0.005225377238792184
SLC22A18	0.0036381804080160766
ITGB4	0.013350845909100316
NF2	-0.03664467039870869
PFN2	0.030182653760940325
ATF5	-0.04388951833889736
RAD51	-0.05959231669664289
CCNE2	0.018853635423271606
ORM1	-0.0027846959939131543
CENPE	0.03231574820149772
PSPH	-0.021255067676917736
KIT	0.02330305444052017
AUH	-0.008742765931883348
PRIM1	0.007640062297202148
SLC22A5	-0.02409020140972212
SERPINF2	0.014325953337234937
CRIP1	0.01716096384814977
ORC1	-0.005887435280780701
MOK	0.005371912559628551
PEX11A	0.006381301901495135
GLI3	-0.14256324992470182
KAL1	-0.0011795132247510995
GALK2	0.00012695444364892882
ESR1	-0.04057493084726799
AREG	0.05169677369466025
GPSM2	0.0071155939118706865
CXCL13	0.0783715582690652
EGR2	0.03901184423000848
PER2	0.03325074136646314
PGC	0.005304266152110364
LRP8	-0.020463024120600196
TFAP2C	0.02018951968784407
CDC14A	0.002323084411661582
IGFBP1	0.003091742143176985
SLC15A2	-0.0010016510545315745
S100A1	0.007943911280445212
DCT	-0.030649335406504684
BARD1	0.020946437515230742
AGTR1	0.012107886892131901
INPP4B	0.0043235597350753455
PDZK1	-0.0015817353024116022
CHEK1	0.01974575498226775
MLLT10	-0.00032716360192899384
DAG1	0.009834514052789572
BCHE	4.276323291334757e-5
OCEL1	-7.907603710843565e-5
HOXB2	0.03343632574992887
C6orf106	0.001471732748532187
DACH1	0.027188465761183726
UGP2	0.010926257825547094
GCNT1	0.008369281276925853
GATA4	-0.06217314871779476
SLC44A4	0.025737067759456722
TRAIP	0.007132092222931832
LRP6	0.005758161221066201
ANGPT1	0.0465162686764429
PRIM2	-0.01067192439934271
PAX6	0.10863461454752393
GAL3ST1	0.013072702833115056
CYP27B1	-0.01250224047819642
HSD17B6	-0.005185492295727334
BLM	0.012447397255563743
KLK7	0.008128490790703461
FGF7	0.027689500012265028
TCP11L1	0.00234870268258731
ROM1	0.01229871910775709
SIX1	-0.09910802932249513
CPA4	-0.0013634362606130973
JAK2	-0.0037682467699033865
TULP3	0.018105928783140254
GREB1	-0.000685505651094436
RET	-0.01794275462279355
MSH3	-0.005832871205581585
SLC22A4	-0.005223516220411507
CX3CR1	-0.018777626308605196
CCNA1	-0.029898620261494983
POLE2	0.022591169092778668
S100A7	0.019112269245436554
RELN	0.0693005409065772
IL27RA	-0.0038227634199274737
MSX1	-0.10305141919522999
BATF	0.028505086668223364
WNT5A	-0.07847281242458233
GPR64	0.0018646637234725893
NMU	0.022327964446469232
DICER1	-0.0011654068895853677
WT1	-0.024530961590750834
ACADL	0.017504038742022124
HMGA1	-0.005375502601779685
LRRC23	0.0008850087968634602
CTH	0.03683707201625852
NELL1	0.010710262449823588
GINS1	0.0057826398319335845
ISL1	0.004283152117975488
PLA2G5	0.06866360274356276
WNT10B	-0.05960610425415585
EDA	-0.012953896218986427
TNFRSF10C	0.0022202442847365036
PAX2	-0.1065520693269734
LHX1	-0.04795659968052897
GUCY2C	-0.011412771717607458
PRLR	0.04369735823572912
PDK3	0.00925588389213795
KIF14	0.015300681464566692
CPLX2	0.016297126542175237
EYA3	0.008291707317188425
ANK3	0.016523807369716512
SLC1A1	-0.012628381153536334
ZNF205	0.002972237203413026
TBCCD1	0.00240792592544731
NDRG2	0.019672720370709124
KIAA0125	0.0004132393741945022
HINFP	0.014878738381224667
PML	-0.047912401958353175
MGAM	-0.011773852786785865
ABAT	0.01909954045691702
KLHL24	0.00032070457449530565
SMA4	0.0020387403396643555
CDKL5	0.018288948441041872
GFI1	0.03157179650491126
DRD2	-0.021851368214878306
SIX3	0.06346645664152692
CHRNB2	-0.03847303987011224
GLI1	-0.034977521847087224
FLT3	-0.02025991321711389
PDK1	0.02563803576820573
ASIC2	0.05260758220733847
IL7	0.015592135087047685
CHRNB1	-0.00019164268514129735
KCNJ2	-0.017567205759020585
ACRV1	-0.0006026324800037686
ERBB4	-0.008486885619535407
SCGB1D2	0.0004387758538985068
STATH	-0.005395035560048601
ALX1	0.02986215295181512
AFM	-0.0016939199422974886
PAEP	0.006354664338546459
CHAD	-0.013078713959233518
AMHR2	-0.0023680302170646
SALL1	-0.08840567092421867
TAT	0.01686296407596211
PRKCA	-0.0006614508433365915
SRD5A2	-0.015277224904423719
TGFBR1	0.025894693239995898
HTR6	-0.009662179726478117
C8B	0.0025303041239801505
PHOX2B	0.011495585806956116
PTK7	-0.003552996431424872
ALDH1A2	-0.1213591095818419
LDHC	0.01635764490086289
CRISP1	0.0002644549426518691
GLI2	0.10206865475980195
TNFRSF11A	0.07533420474772552
SLC16A6	0.0020836993612578535
CDKN2A	0.10917112540001155
THRB	0.02916858368407537
ASS1	0.004830149327111397
LEP	0.1998378331370313
CITED1	0.1163101098189154
AKT1	0.1325823850762814
ZBTB18	0.013958961289168393
AGRP	-0.031067674487839265
ALOX12	-0.07043025237679756
SLC15A1	-0.022132859662382612
SLC17A3	-0.013743047633786632
TCF15	-0.04257782378594969
HTR2C	-0.011836730934854083
TFRC	0.022648351025412846
STX2	0.005044391242978729
CYP7B1	0.0019296241757945807
HOXD13	-0.008245711200176864
PROX1	0.06596269150182497
RAD17	-0.0012069700278087
MSMB	-0.0013331384342858373
NR2E1	-0.09852641803918791
CAST	-0.030527010441833223
ATP5G3	0.0018423725159665723
CDKN2B	-0.058764921665172776
IL4	0.018822780983768377
PITX2	0.10480238529079342
MAGEB3	-0.0069165810048887185
SHH	0.08366559408643312
MMP20	-0.017020842905839703
SLC4A7	0.010467453451719634
FOXH1	-0.024641509894376815
ADAM2	0.006458059209497752
PAX3	-0.05906825353319955
KIF25	-0.009609396255554058
SERPINH1	-0.007563636479709536
PPP2R3A	-0.0006220842487928098
RASSF8	0.003320192670512797
RBPJ	0.051659247464725805
KRT33B	0.0018854914919091362
POU1F1	0.001968463608032283
MUC1	0.015340453178736252
AVP	-0.03623974017775201
INSR	-0.0720055968728548
NAALADL1	-0.0010165593282607662
IL12B	0.09369902304859438
GATA2	-0.019232401633833166
MEF2C	0.0977713863730266
CLEC4M	-0.024936805204337168
RFC1	0.023320146009614216
CDC14B	0.00015707446843614536
HMGA2	0.07233033972660001
LAIR1	0.0012946246181076426
CCL7	-0.055252906132515836
ZNF442	0.0021217095248059516
NDEL1	-0.014938650791860778
ANP32E	0.0008414262211640952
DDX17	0.010624504900571067
CHIT1	0.001704202820298238
PSG4	-0.00103286612383742
TTN	0.03969133562208975
MAS1	0.005871102423210309
DRD4	-0.07577515006143412
HOXB1	0.048177605227734246
TH	-0.02298980468540803
PGR	0.005606482706949595
CSH1	-0.0010294405113189208
UGT8	0.021797239011992674
BRCA2	-0.0004001008524303995
FGF5	-0.02945446553198054
MMP24	0.010426711820916278
TBPL1	-0.009405012825298752
PTN	0.007133781784054915
IRF7	-0.054667593900032764
FGF8	0.07140111278981238
GABRA4	-0.023644228919724865
BAX	-0.047402195440266054
PTTG3P	-0.00020876180747159161
OR5I1	0.009398362467484078
PTCH1	-0.003543640493147917
BCL2L11	-0.03770305268840597
PDX1	0.01051691886780433
WNT1	0.043696803347539837
HOXA3	0.013754711326618266
WNT4	-0.016164899247737872
EIF4G1	0.01103907060260343
YBX1	-0.010053564233932744
CD24	0.029888630624849453
MAGED2	0.001145939693081224
PRKDC	-0.07789656076747946
NRD1	-0.0010531918503088784
CCND1	-0.18493934739300474
CDC42	0.11480020475125488
FLOT1	-0.0202378900509657
PSMD11	-0.04560858541280281
ELOVL5	0.002689234967436739
MCM7	-0.023035440617418326
CHD3	0.001086365278281498
HMGB2	0.010195853792630818
SNRPB	0.009292643196300647
POLE3	0.008058861478672534
ATP1B3	-0.04910506135762834
STK24	0.043152111111214364
SLC1A5	0.013826124416096989
POR	0.0093505987109472
KPNB1	0.016033673916676046
MDK	0.031790169158598856
TXN2	0.020657983182013902
JAG1	0.0648928936419019
TSPAN6	0.005498471709099
QDPR	-0.04019139695326158
AGR2	0.01785423349179095
CXCR4	0.01972775578729736
LMO4	0.023297350079814497
CRYAB	0.02158200226853593
NFIB	0.05601209399912988
ECM1	-0.02181365703317275
STXBP2	-0.009931038665850007
KIF2C	0.007483289154081435
FZR1	0.017831600102073526
MSH2	0.04175805328364862
SERPINA5	-0.00496582218656153
AURKB	0.007573735252924801
LRP5	0.001400067026621578
RPA3	0.09428235665230199
HSDL2	0.002733916507979594
CACNB3	0.003357997583944212
IGF1	0.014117033104510669
YIPF4	0.00108809787938952
THBS3	0.016153803444977646
EPHB2	-0.01725448446227754
BMP7	0.0585798744153879
GATA3	-0.0035472937258636365
PAK1	-0.12024530596624507
MCCC2	-0.007785154522843757
BUB1	0.0237722937467458
KIFC1	0.008559426097992033
S100B	0.08900178023831673
SLC35D1	-0.000755487154643152
TGFB3	-0.13674655463203486
LLPH	-0.0002143266492759179
JAG2	-0.00016145912642093964
PADI2	0.005177628615168406
NPAT	-0.003540964994967754
VLDLR	0.021889991829839618
CDT1	0.013044432987764098
SOX10	0.0037792197723009215
HOXB13	0.016446173550617997
SELPLG	0.0022892769697621758
SLIT2	-0.07791903893529607
TGFB2	-0.11937808737609408
PARP3	0.015434259944578647
FBXL4	0.004265644090267208
GSK3B	0.13906893656117778
VEGFC	-0.12818045716407223
FAP	-0.007189592876954767
ASCL1	-0.06877170297567123
GATA6	-0.0011125332767702005
APEX1	0.0035320394450441012
IDO1	0.02684206122285138
PGM3	0.023887031085594174
TPX2	0.009385015564002137
CTSV	0.012273549678511545
AGER	-0.008157913176116407
IGFBP3	0.016694774973335495
CYP4B1	-0.00815746515945051
FOXA2	-0.000826646192916905
INHA	0.005488558464491141
PTPRJ	-0.007016215211972416
CRYAA	-0.004007589321778288
WNT7A	0.001052917843734397
CYP2B7P	0.00013132082203898838
RECQL5	0.012637809951031559
C8G	-0.010678030681020804
BCL11A	-0.014597514166096856
IFNG	-0.004231728952820182
RBBP4	-0.03534281334268236
GLUD2	-0.007176789123447403
GPR125	0.001233552483545397
NRP1	-0.04242006248869885
VEGFA	0.0666633083753416
MSH4	-0.001491131203788382
SPAM1	-0.01712007318515972
POLDIP3	-0.00033044171711463444
MFGE8	0.016281240676370125
EPHB1	0.045318873159804755
CALCOCO2	0.009873270468472617
ACVRL1	0.08556964022928057
LEF1	-0.008738760148707017
GCNT2	0.03658298255386858
AURKC	0.00967993101179738
AR	0.0818938734171785
IFNA2	-0.07366269960649005
PADI4	-0.009047271237747826
BMP4	-0.05194854849590265
GNRHR	0.003686289180163461
HSPA2	-0.0021826014130114056
ETV4	0.0017136601329301392
FBL	-0.0018366177387389552
BDH1	-0.001844661543438059
PRG2	-0.007673598049155522
GINS4	-0.011529877940197959
KMT2D	-0.0025206311151364153
IGLJ3	0.003248875669633095
IGK	0.00294727331916041
PLCB1	0.010705113862137901
ITGB1	0.15327054269447865
IPO5	0.010054180206643164
TMEM123	-0.001369198395808351
TOP2B	0.0034448039717101973
MKI67	0.014176230928602417
TPGS2	0.0018304301414036233
KMT2A	0.015485947628582021
SLC39A14	0.0009186088282803245
MCM4	-0.012131811779754902
RNF187	-0.011075139468168134
SERPINE2	0.06795055647096447
MAP1B	-0.005304206896318235
SEL1L3	0.0014829438056712708
YIPF6	0.0004924847107853044
SULF1	-0.01763718719146511
FEM1B	-0.029090201626783593
MYH10	-0.009530578464474459
ZCCHC24	-0.000633617454485933
KIAA0232	-0.0025749317470091715
TENC1	-0.0016540678942851374
CEBPB	-0.009142993773767151
GPD1L	0.011155131643536164
SPIDR	-0.018054946994742006
CDC34	-0.0021652700354158035
ZNF609	-0.002093260493643198
METAP1	-0.008021374838937058
SLC25A44	0.00034531985411083167
JMJD6	0.07225247109460833
C16orf45	0.0015129853607803163
RCHY1	-0.012047180085251727
BBS4	-0.024491286185357838
TCF7L2	0.022737387684181265
FAM171A1	-0.0008474461993496482
OBSL1	0.0004996753392981064
NCAPD3	-0.006291945324096308
CBS	0.027408147568601843
CKAP5	-0.00784421841174049
POLD3	0.04009422205891675
AXIN1	-0.040087790721424446
DNAJC16	-0.00010774179655897064
SMC5	-0.00840435524672013
NCAPH	0.0005077986713116518
KANK1	0.035704184864029716
NEDD4	0.08611271769809645
LOC100272216	-0.0004901303998456607
DNAJC2	-0.00785480274112632
HOXA10	-0.03585348281798796
ROBO1	-0.03381507510547673
TNNT1	0.002361670276473978
FOXC1	-0.0010032433396977912
YAP1	-0.005210933274387347
ATAD2B	-0.001240321054198613
SPDEF	0.031499791704416746
SOSTDC1	-0.012182241980776623
CLCN2	0.008450306755612699
CCNE1	0.013357563921641039
DNA2	-0.0005924515358255864
DLX5	-0.06904625505431022
ELOVL2	0.006080546124612895
HIPK2	0.028394484848613795
HOXA5	0.026519392519177332
TWIST1	-0.07355870775008257
CHD5	-0.004060582690920924
YPEL1	0.002844755706654633
CCL8	-0.014706434092778374
LIAS	-0.004366434702725852
SHMT2	-0.013105990524783954
XIST	-0.0013837068271472979
GMPS	0.01779973208013209
FOXC2	0.06632063111815426
PTTG2	-0.013710164253373859
FGF3	0.048193222003622666
AZU1	0.005302910090948997
TNFRSF21	0.006502653335445793
PAK3	-0.040139553387353415
EYA1	0.001748007592293398
ZNF266	0.0008265747472587699
CCNB1	-0.03598713934059483
PP14571	-0.002584759304603601
KCNMA1	-0.02152134514870761
GRIK5	-0.0028890162313301546
RNASEH2B	-0.0003486624368721767
GRB2	0.028244434541645335
DNM1	-0.022181829425535145
CEP152	0.01624295019809501
STOML2	0.005173659861751105
IHH	-0.09813367374120358
EPHA5	0.006530393686639472
RAD21L1	-0.011228435521741088
POLE	0.05615385969439243
RAB3GAP2	0.013865146208784953
LAMB2	-0.023556522814775917
MUC7	-0.015812317014986938
CCL2	0.07777608367830817
IFT122	-0.03543911313873814
LOC100293211	0.0022504739740209045
DISC1	-0.037316775694551406
KCNV2	0.0036969009781805924
ORAI2	0.002164600637607094
ARPIN	-0.0005814888777068231
STEAP1B	0.0028048403971855022
SEC14L1P1	0.004847184538895702
AES	0.01623181327214471
PERP	0.014624321373756953
NAA50	0.0006961107911082425
HN1	-5.812779117379583e-5
C3	0.0830268588437952
UFC1	0.00208190924030329
EVL	0.023265625083061243
CDC27	0.007420671443608752
DSG2	0.00017329429395628084
KLHDC2	-0.00037589909397841426
VPS4A	-0.018885741648463586
FAM127B	0.0020688261001252576
PRC1	0.004887640416565871
PPDPF	-0.004333499725805429
FAM65A	-0.003310434162744441
RBM47	0.0008135753629212924
NUSAP1	-0.003198957639816688
BFAR	-0.003264645455797064
WDR11	0.0004084790987555988
C21orf59	0.001276663114000037
SLC25A37	-0.001101948341530598
SMAP1	0.004010691731589973
GSDMD	0.002328187341833716
GOLT1B	-0.009110027865084443
STMN3	0.020792249166952194
TMEM258	0.003631322283098495
LANCL2	0.0035635361194808883
C1QA	0.005377251754758938
TSKU	0.006514104145863088
CKAP2	0.00018595795606970826
MKL2	-0.0007206805073324866
BCCIP	0.005814671919895754
SAV1	-0.03272071156693998
LGR4	0.006571083295942726
PRDM4	0.0083706803472399
KIF4A	0.015508808710484124
PGLS	0.010472817234260468
FAM204A	-0.004478857609673523
ABT1	0.017961669141553935
NDE1	-0.03188184230872024
STEAP3	0.028820763187179226
MCCC1	0.0007363760398943176
TTC4	0.0003864077187552613
CMC2	-0.0002452364987398969
GREM1	-0.036280446583260545
KLF11	0.003711793055216214
RNASEH1	0.0016941513093079092
TRPS1	-0.0028047543800425643
DCP1A	-0.005907259550498896
LPPR2	-0.0013568981277233031
PNPO	-0.01199231896941334
MAP1S	0.004225192055676364
E4F1	0.017773349853668383
MRS2	0.0019480424105514202
C8orf4	-0.001078389203450085
CEP55	0.0001826941535894277
KBTBD4	0.002194444134936168
RINT1	-0.0069193386541334945
SMO	0.13712788392939157
NCAPG	0.0006931164278052547
S100A14	-0.015165150621937296
NES	0.015184277222533588
GINS3	-0.0002792408671414478
HJURP	-0.00045926730263408925
CDK5RAP3	0.022624477001446937
KIF20A	-0.001686633809426733
SMC6	-0.01398471781996996
ATAD2	-0.00019412537390888266
FCGRT	0.001765194609950125
IGF2BP2	-0.004613114653713913
PPP1R13L	-0.017696251377432595
FBXO5	0.007503733417388883
SIRT1	-0.0009599762338105214
NOTCH1	0.06908067138798712
INTS8	-0.004526390346986948
RAB17	0.0023503069475402857
HSPB7	0.0015844318424696412
KRT23	-0.0007346504263966141
DNAJC12	0.0007439037392301426
METRN	-0.005624192028500555
CYB5R4	-0.00021192099129545015
CTPS2	0.014098873505983597
SHQ1	-0.0043061549669067166
IL20RA	0.0008584941824028733
PBK	0.005020736063415771
BIN2	-0.006561411567025762
SCUBE2	0.002522166130814539
HSPA14	0.00027877884879171
RBKS	0.0008862409994960193
PHACTR4	-0.016079244020787184
CEP63	-0.0001574280868425633
SPHK1	0.06878627113250539
TIPIN	-0.004828443375978899
C1orf159	-0.001394827527761829
DIABLO	-0.005344035959869669
ATHL1	-0.0009901807536505766
KLF2	-0.02328942670693096
GRHL2	0.025092132700132382
TTYH1	0.009566840787928561
COA7	0.0005966881548589189
TTC33	-0.0026210948750966627
SULT4A1	-0.005814538701167439
EGFL6	0.0008221974015097795
C7orf63	0.0012350401404626554
LAMP5	-0.003579246121745117
LRFN4	0.001393938640831941
GCNT3	-0.025506586914859165
CEP72	-0.016425670499335222
BORA	0.011964177974982481
ROBO3	0.004799815360220845
SOX18	0.029500021112874805
KIF16B	0.03523818751096762
PIEZO2	0.0020898293231342586
CEP83	-0.0007677935602652965
PTPLA	0.0025548743142632937
TBX3	0.05010579689726047
FZD3	0.009331988846620854
BBS7	-0.020445120694412323
TFCP2L1	0.0048593677482660904
HEY2	0.1388358538151586
VTCN1	-0.01106039187761466
GIMAP6	-0.0007352876517308433
MTL5	-0.0025622556198957322
ECT2	0.024320114192369516
ARL15	-0.00453672821623362
NARF	0.0014994215563336715
FAM198B	9.67987649116311e-5
LHX6	0.009407866917839704
SPAG4	0.0006137799805040563
ASPM	0.0002548203396439125
GLRX2	0.01667586375117495
GPR87	-7.28810936273236e-5
GALNT6	-0.010690878808872862
KIZ	3.311750415139013e-5
TXLNG	-0.005025118529839368
E2F8	0.020587127716811992
AUNIP	-0.0004402857743541958
ERO1LB	0.0018389095331322219
MFI2	0.0043596430722205055
EDAR	0.005933150194892729
GDF3	-0.03949371944325589
STAP1	0.031923029066223435
HELLS	0.02789855780890321
STEAP4	-0.01391388036506503
CAMK1D	-0.031182194982635195
ARPP21	-0.0008943828850588782
ALLC	-0.002765043249267739
ROPN1B	0.0041696314332420464
DMRT1	0.02853845282955852
EN1	-0.00021794323410886566
CCDC170	-0.0009410021876603584
SIRT2	-0.048816855988439746
FOXE3	0.014651722139499565
ELF5	0.0117529556885165
MCM10	-0.004191810376388571
KIF24	-0.011283208386569677
HEYL	0.013492537971960204
TBX21	0.0038694007489718327
SLC5A7	0.0200652334879223
CCDC7	-0.0014199489523593878
EDDM3B	0.001008666120200846
TP73	0.04204531239272018
GCNT4	0.005380114461413642
C1orf112	0.0015332318190178075
PSAT1	-0.005765858129629997
WDR19	-0.010047564609988218
C1QTNF3	0.0015438782131631111
ARHGAP24	-0.007478400689910484
TEX13B	-0.0009161916424618882
TEX14	0.015492611545399734
KCNE2	-0.011773142899107384
EPN1	-0.004333698632650036
RPA4	-0.024908324471982157
MAP3K19	-0.008239112962222225
IQCG	0.0014698666492631823
LOC100131532	-0.005151893057862082
STMN4	0.0013959838112425882
KIF18A	0.01285037659610606
DLX6	-0.001800012326516204
KLF15	0.0036817542319530004
FRS2	0.027713760920404812
NEUROD4	0.015071128029595652
C6orf25	-0.000498361078864335
GDNF	0.014056253615913419
TMEM14B	0.0035909525955786867
BNIP3L	-0.00046372092071295096
KPNA3	-0.004073128755144695
GINS2	0.0036502344793744868
SOAT1	-0.0035840099220547056
FAM64A	0.00022582903076745402
DSPP	0.0049614354906987405
SPDL1	0.02250710639363424
STRA6	-0.06393712883327844
COL5A2	-0.005812223762505946
NRBF2	-0.006598199026985758
GPR124	-0.002425575121783927
KLHL22	0.003054254639106804
ORAI3	-0.002618777114824034
FAM174B	-6.72904177286392e-5
ZNF335	-0.00467502325439356
SEH1L	-0.022554065088721764
LOC389906	0.005430567767702913
KIF18B	0.015702773273153524
RACGAP1	0.02627137379229035
CASP8AP2	0.012679791553399915
KLK5	0.00695160749560311
OR7E47P	0.0005763425767187265
SCAF4	-0.00032868048497175474
SNHG17	-0.0011774470329610936
Age			-0.0022467353533156247
intercept			-0.06328011266889623

(optional) analysis using GPU

Once again, the analysis can be carried out using a GPU. At this time, data should be converted to CuArrays beforehand for overlapping groups.

Random.seed!(222)
T = Float64
A = CuArray
U = ParProx.LogisticUpdate(; maxiter=30000, step=20, tol=5e-4, verbose=true)
lambdas = 10 .^ (range(-6, stop=-9, length=31))

scores = ParProx.cross_validate(U, 
    adapt(A{T}, X), adapt(A{T}, X_unpen), adapt(A{Int32}, y), group_to_variables, lambdas, 5; 
    T=Float64, criteria=auc)
20	(-0.6931299669675715, Inf, 5.0)
40	(-0.6931127550247755, 1.016585738004319e-5, 5.0)
  3.836978 seconds (5.09 M allocations: 304.254 MiB, 1.70% gc time)
20	(-0.6930909832098204, Inf, 35.0)
40	(-0.6930692158627236, 1.2856737865681294e-5, 35.0)
  0.019284 seconds (28.34 k allocations: 48.851 MiB)
20	(-0.693019459670282, Inf, 231.0)
40	(-0.6929697871677261, 2.934045423163878e-5, 231.0)
  0.040717 seconds (29.73 k allocations: 48.881 MiB)
20	(-0.6928195220455068, Inf, 1272.0)
40	(-0.6926704275530874, 8.808241107805568e-5, 1272.0)
  0.085327 seconds (38.40 k allocations: 49.061 MiB, 47.05% gc time)
20	(-0.6921737583844234, Inf, 6412.0)
40	(-0.6916903180042857, 0.0002857735691884926, 6366.0)
  0.018284 seconds (28.20 k allocations: 48.844 MiB)
20	(-0.6904786105516274, Inf, 14137.0)
40	(-0.6893248921581476, 0.000682946423648488, 14063.0)
60	(-0.6882256525617884, 0.0006511212495149772, 13960.0)
80	(-0.6871776821871006, 0.0006211381206330579, 13885.0)
100	(-0.6861777618018517, 0.0005930100656649389, 13770.0)
120	(-0.6852231232611591, 0.000566476051459166, 13663.0)
140	(-0.6843108046097219, 0.0005416569489076847, 13517.0)
160	(-0.6834382967953333, 0.0005182891562165232, 13430.0)
180	(-0.6826035890119676, 0.0004960810667566922, 13288.0)
  0.144357 seconds (131.34 k allocations: 220.108 MiB)
20	(-0.6810726409327895, Inf, 17050.0)
40	(-0.6796249461110111, 0.0008619155277077793, 16975.0)
60	(-0.6782548105185826, 0.0008164049844165894, 16886.0)
80	(-0.6769568786362968, 0.0007739804754796403, 16805.0)
100	(-0.675726269050318, 0.0007343738704271145, 16658.0)
120	(-0.6745584857234704, 0.0006973678953607893, 16622.0)
140	(-0.6734494375202918, 0.0006627318270350421, 16474.0)
160	(-0.6723951973035371, 0.0006303774481381546, 16384.0)
180	(-0.6713918175986945, 0.0006003258447706302, 16223.0)
200	(-0.6704362930683998, 0.0005720209350453549, 16139.0)
220	(-0.6695260245291852, 0.0005452257262484481, 16099.0)
240	(-0.6686577670511528, 0.0005203328658379198, 15972.0)
260	(-0.6678291335876433, 0.0004968335465678157, 15878.0)
  0.156920 seconds (221.67 k allocations: 318.321 MiB, 16.70% gc time)
20	(-0.6664904011484339, Inf, 18003.0)
40	(-0.6652231885793831, 0.000760986621938585, 17947.0)
60	(-0.6640224659204327, 0.0007215783942473835, 17916.0)
80	(-0.6628836495803763, 0.0006848442705800801, 17877.0)
100	(-0.6618024640051273, 0.0006506101649670006, 17788.0)
120	(-0.6607749699206752, 0.0006186835080379412, 17728.0)
140	(-0.659797692249199, 0.0005887932463334359, 17709.0)
160	(-0.6588673297190492, 0.0005608420356964022, 17656.0)
180	(-0.657980561676617, 0.0005348482744184982, 17560.0)
200	(-0.6571348122851883, 0.0005103684897322179, 17512.0)
220	(-0.6563274687492614, 0.00048742990209332056, 17471.0)
  0.096638 seconds (155.04 k allocations: 268.623 MiB)
20	(-0.6551592189184753, Inf, 18669.0)
40	(-0.6540504377294513, 0.0006703430341254094, 18629.0)
60	(-0.6529968740181719, 0.0006373658219439691, 18599.0)
80	(-0.6519946563769161, 0.0006066712367301257, 18528.0)
100	(-0.6510402097388873, 0.0005780880637545105, 18497.0)
120	(-0.6501303044856783, 0.0005514141827075907, 18457.0)
140	(-0.6492619630247374, 0.0005265030543409934, 18421.0)
160	(-0.6484324010572814, 0.0005032429397310521, 18377.0)
180	(-0.6476390748126541, 0.00048149273512310435, 18320.0)
  0.089263 seconds (145.82 k allocations: 220.200 MiB, 8.48% gc time)
20	(-0.6465929273202671, Inf, 19380.0)
40	(-0.6455967537523492, 0.0006053570327277403, 19351.0)
60	(-0.644646948076122, 0.0005775134154708529, 19325.0)
80	(-0.6437402347705632, 0.0005516159344273549, 19314.0)
100	(-0.6428736647773057, 0.0005274720825079271, 19304.0)
120	(-0.6420445027081353, 0.0005049571237581526, 19296.0)
140	(-0.6412502123630831, 0.0004839544507406703, 19261.0)
  0.071057 seconds (117.70 k allocations: 171.385 MiB, 10.33% gc time)
20	(-0.6402776207964139, Inf, 20003.0)
40	(-0.639348454337913, 0.0005667900903204895, 19975.0)
60	(-0.6384595509860492, 0.0005425238305875793, 19978.0)
80	(-0.6376080544435434, 0.0005199635774844563, 19969.0)
100	(-0.6367913418620875, 0.0004989717140895623, 19946.0)
  0.043319 seconds (70.48 k allocations: 122.297 MiB)
20	(-0.6358497760949846, Inf, 20513.0)
40	(-0.6349480014594291, 0.0005515616611357387, 20481.0)
60	(-0.6340830579462977, 0.000529314289702282, 20475.0)
80	(-0.6332522832480191, 0.0005086628114956553, 20462.0)
100	(-0.6324532413690174, 0.0004894730573303331, 20451.0)
  0.054109 seconds (89.44 k allocations: 122.505 MiB, 13.73% gc time)
20	(-0.6315674649425094, Inf, 20741.0)
40	(-0.6307160066129978, 0.0005221377150029289, 20728.0)
60	(-0.6298963156709741, 0.000502909868647792, 20733.0)
80	(-0.6291060947995825, 0.0004850640936856261, 20746.0)
  0.034364 seconds (56.38 k allocations: 97.680 MiB)
20	(-0.6282561471110251, Inf, 21131.0)
40	(-0.6274365979260018, 0.0005035828652665667, 21132.0)
60	(-0.6266452094561462, 0.00048651572282329246, 21124.0)
  0.025731 seconds (42.29 k allocations: 73.263 MiB)
20	(-0.6258137881187472, Inf, 21357.0)
40	(-0.6250102958743446, 0.000494453632966213, 21353.0)
  0.017170 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6241816468837723, Inf, 21527.0)
40	(-0.6233797546666272, 0.000493964652965492, 21536.0)
  0.028800 seconds (47.15 k allocations: 49.231 MiB, 25.76% gc time)
20	(-0.6225633637135849, Inf, 21622.0)
40	(-0.6217720043017109, 0.00048795971922993163, 21625.0)
  0.017456 seconds (28.19 k allocations: 48.845 MiB)
20	(-0.6209736148310785, Inf, 21692.0)
40	(-0.6201982443882085, 0.00047856516667366095, 21709.0)
  0.017042 seconds (28.19 k allocations: 48.842 MiB)
20	(-0.6194209366172632, Inf, 21752.0)
40	(-0.6186645324249932, 0.0004673013939069656, 21753.0)
  0.017169 seconds (28.19 k allocations: 48.858 MiB)
20	(-0.6179095840396757, Inf, 21805.0)
40	(-0.6171734489000635, 0.000455198630742309, 21818.0)
  0.016849 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6164409451732968, Inf, 21841.0)
40	(-0.6157252705346192, 0.0004429432724294795, 21843.0)
  0.017452 seconds (28.33 k allocations: 48.855 MiB)
20	(-0.6150145525447791, Inf, 21874.0)
40	(-0.6143188301481979, 0.0004309696347389773, 21890.0)
  0.028130 seconds (47.17 k allocations: 49.238 MiB, 25.87% gc time)
20	(-0.6136288012247954, Inf, 21901.0)
40	(-0.6129521099178034, 0.00041953589497860475, 21901.0)
  0.016991 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6122814494066473, Inf, 21917.0)
40	(-0.6116226409324848, 0.00040878581463795193, 21917.0)
  0.016831 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6109699371660439, Inf, 21934.0)
40	(-0.6103277723966976, 0.00039877891964227696, 21937.0)
  0.017188 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6096916133487108, Inf, 21938.0)
40	(-0.6090648397404562, 0.0003895266323485646, 21938.0)
  0.017508 seconds (28.31 k allocations: 48.853 MiB)
20	(-0.6084438711216759, Inf, 21943.0)
40	(-0.6078312839634794, 0.0003810021389099729, 21943.0)
  0.016973 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6072242421213707, Inf, 21947.0)
40	(-0.6066247083606405, 0.00037316353819924486, 21954.0)
  0.028133 seconds (47.11 k allocations: 49.273 MiB, 26.08% gc time)
20	(-0.6060304323776684, Inf, 21955.0)
40	(-0.6054429092364887, 0.0003659570438783934, 21960.0)
  0.017271 seconds (28.19 k allocations: 48.843 MiB)
20	(-0.6048603481727154, Inf, 21960.0)
40	(-0.6042838858279119, 0.00035932689338581263, 21960.0)
  0.017062 seconds (28.19 k allocations: 48.849 MiB)
20	(-0.6037120940555735, Inf, 21960.0)
40	(-0.6031458360959682, 0.0003532167485050942, 21960.0)
  0.017768 seconds (28.32 k allocations: 48.855 MiB)
20	(-0.6931288506437248, Inf, 6.0)
40	(-0.6931105225507278, 1.0825101346215415e-5, 6.0)
  0.017487 seconds (28.19 k allocations: 48.849 MiB)
20	(-0.6930783664569897, Inf, 86.0)
40	(-0.693046230557674, 1.8981111522947852e-5, 86.0)
  0.027876 seconds (45.68 k allocations: 49.143 MiB, 26.43% gc time)
20	(-0.6929558639365695, Inf, 505.0)
40	(-0.6928658316965042, 5.3183328755057264e-5, 505.0)
  0.017370 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6925429042217657, Inf, 3120.0)
40	(-0.6922250898518171, 0.00018780856746216257, 3031.0)
  0.017269 seconds (28.31 k allocations: 48.853 MiB)
20	(-0.6912671361434383, Inf, 10131.0)
40	(-0.6903460821587789, 0.0005448907737775571, 10007.0)
60	(-0.6894596983895108, 0.0005246551723684416, 9819.0)
80	(-0.6886062383278495, 0.0005054227813977865, 9703.0)
100	(-0.6877841488239563, 0.00048708213337944015, 9631.0)
  0.043302 seconds (70.47 k allocations: 122.101 MiB)
20	(-0.6860619233093127, Inf, 15500.0)
40	(-0.6844307802351708, 0.0009683645616557692, 15399.0)
60	(-0.6828845301419249, 0.0009188093808881444, 15192.0)
80	(-0.6814173417457926, 0.0008725902604340244, 15067.0)
100	(-0.6800241402201878, 0.0008292747063874045, 14969.0)
120	(-0.6787002374980746, 0.0007886474860373358, 14864.0)
140	(-0.6774414780869222, 0.0007504043673630689, 14793.0)
160	(-0.6762437862934926, 0.0007145093113681216, 14749.0)
180	(-0.6751036999787958, 0.0006806064094486717, 14646.0)
200	(-0.6740175792526096, 0.000648810824717328, 14622.0)
220	(-0.672982520433372, 0.0006186907553400357, 14530.0)
240	(-0.6719946136822349, 0.0005908552234875133, 14428.0)
260	(-0.6710512484487431, 0.0005645339928189204, 14307.0)
280	(-0.6701494157020427, 0.0005399712973113439, 14188.0)
300	(-0.6692870275562094, 0.0005166206479755577, 14068.0)
320	(-0.6684611420487239, 0.0004949983470825154, 13939.0)
  0.159736 seconds (263.94 k allocations: 391.534 MiB, 9.14% gc time)
20	(-0.6669427502533459, Inf, 16722.0)
40	(-0.665505513385753, 0.0008629433262404408, 16610.0)
60	(-0.6641438612476948, 0.0008182298236147547, 16527.0)
80	(-0.6628526067344715, 0.0007765297465293606, 16375.0)
100	(-0.6616267403085259, 0.0007377507813325587, 16266.0)
120	(-0.660462179099486, 0.0007013476270031171, 16238.0)
140	(-0.6593549963715324, 0.0006672368060931346, 16147.0)
160	(-0.6583015289662419, 0.0006352689103212471, 16129.0)
180	(-0.6572985638127534, 0.0006051807292833931, 16099.0)
200	(-0.6563428396334067, 0.0005770086702329563, 16004.0)
220	(-0.6554313586519878, 0.0005506002871427581, 15923.0)
240	(-0.6545611698162886, 0.000525933311849531, 15833.0)
260	(-0.6537297865067679, 0.0005027322578961743, 15728.0)
280	(-0.652934882960631, 0.0004809043322464114, 15675.0)
  0.130763 seconds (216.56 k allocations: 342.330 MiB, 5.65% gc time)
20	(-0.651643987695898, Inf, 17727.0)
40	(-0.6504199846573242, 0.0007416312514102154, 17667.0)
60	(-0.6492581918883416, 0.0007044335293871963, 17602.0)
80	(-0.6481543336998568, 0.0006697541400791042, 17542.0)
100	(-0.6471044839265226, 0.000637391120951465, 17489.0)
120	(-0.6461050523570082, 0.0006071493238438061, 17434.0)
140	(-0.6451526374576878, 0.000578921905259933, 17329.0)
160	(-0.6442440866556562, 0.0005525644333497501, 17188.0)
180	(-0.6433765734334684, 0.0005278846225581365, 17147.0)
200	(-0.6425476747266348, 0.0005046420993360945, 17103.0)
220	(-0.6417549599538722, 0.00048284597403306826, 17036.0)
  0.105250 seconds (174.27 k allocations: 269.231 MiB, 6.87% gc time)
20	(-0.640609440623032, Inf, 18464.0)
40	(-0.6395203922637694, 0.0006642481328084589, 18402.0)
60	(-0.6384837791915351, 0.0006326660571188794, 18355.0)
80	(-0.6374960228659143, 0.0006032114349151253, 18331.0)
100	(-0.6365537718721389, 0.0005757531527348099, 18266.0)
120	(-0.6356539859947319, 0.0005501077153917811, 18235.0)
140	(-0.6347937804543838, 0.0005261859634118234, 18157.0)
160	(-0.6339706202964298, 0.0005037790445734532, 18123.0)
180	(-0.6331821653739258, 0.00048277218501433406, 18096.0)
  0.077150 seconds (126.86 k allocations: 219.800 MiB)
20	(-0.6321447659843, Inf, 19133.0)
40	(-0.6311551963657122, 0.0006066679742017663, 19107.0)
60	(-0.6302100531898768, 0.0005797677262423918, 19092.0)
80	(-0.6293062524139962, 0.000554715097018447, 19060.0)
100	(-0.6284409389140821, 0.0005313754274017843, 19010.0)
120	(-0.627611520550215, 0.0005095923403066105, 19006.0)
140	(-0.6268156349737652, 0.0004892291168953219, 18985.0)
  0.071183 seconds (117.70 k allocations: 171.333 MiB, 10.26% gc time)
20	(-0.6258436632613414, Inf, 19776.0)
40	(-0.6249134713944654, 0.0005724562465949461, 19761.0)
60	(-0.6240220563300061, 0.0005488934469731088, 19750.0)
80	(-0.6231667142557461, 0.0005269588556417382, 19744.0)
100	(-0.6223449673863459, 0.0005065179637620707, 19741.0)
120	(-0.6215545101655292, 0.00048746879359364253, 19721.0)
  0.052342 seconds (84.70 k allocations: 146.535 MiB)
20	(-0.620639874983638, Inf, 20354.0)
40	(-0.6197614003962194, 0.0005423481428831079, 20349.0)
60	(-0.618916469093448, 0.0005219116111929804, 20329.0)
80	(-0.6181027333441752, 0.0005028949846657905, 20311.0)
100	(-0.6173180419768878, 0.0004851806181103867, 20295.0)
  0.042685 seconds (71.45 k allocations: 122.223 MiB)
20	(-0.6164461534112061, Inf, 20676.0)
40	(-0.6156058825216457, 0.0005200964533806368, 20675.0)
60	(-0.6147949474665285, 0.0005021907310209801, 20679.0)
80	(-0.6140113211829773, 0.00048551473788725774, 20677.0)
  0.033799 seconds (56.38 k allocations: 97.681 MiB)
20	(-0.6131672474451538, Inf, 20958.0)
40	(-0.6123515137146207, 0.0005059279714097756, 20963.0)
60	(-0.6115620745885983, 0.0004898595831152772, 20965.0)
  0.036168 seconds (60.31 k allocations: 73.649 MiB, 19.83% gc time)
20	(-0.6107317217741722, Inf, 21221.0)
40	(-0.6099275984254776, 0.0004994779575684384, 21192.0)
  0.017271 seconds (28.21 k allocations: 48.848 MiB)
20	(-0.6090973278281437, Inf, 21460.0)
40	(-0.6082923250850184, 0.0005005326025433738, 21454.0)
60	(-0.6075107401142837, 0.00048620824186785557, 21469.0)
  0.025797 seconds (42.29 k allocations: 73.264 MiB)
20	(-0.6067125480972934, Inf, 21579.0)
40	(-0.6059365038672944, 0.0004832346908674065, 21577.0)
  0.017206 seconds (28.19 k allocations: 48.859 MiB)
20	(-0.6051514302639156, Inf, 21650.0)
40	(-0.604386915110732, 0.000476515450221612, 21658.0)
  0.017890 seconds (28.32 k allocations: 49.058 MiB)
20	(-0.6036186626248389, Inf, 21742.0)
40	(-0.6028692420026953, 0.0004675494435261609, 21781.0)
  0.017369 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6021196874333068, Inf, 21840.0)
40	(-0.6013872198658708, 0.00045739566192947145, 21827.0)
  0.028745 seconds (47.18 k allocations: 49.219 MiB, 25.79% gc time)
20	(-0.6006570257173691, Inf, 21835.0)
40	(-0.599942239363239, 0.00044675759945847466, 21845.0)
  0.017404 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.5992312760439075, Inf, 21847.0)
40	(-0.5985341533688047, 0.0004361012078682596, 21856.0)
  0.017031 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.5978417645725441, Inf, 21894.0)
40	(-0.5971617711154582, 0.0004257511476818074, 21894.0)
  0.017438 seconds (28.31 k allocations: 48.853 MiB)
20	(-0.5964870195485082, Inf, 21927.0)
40	(-0.5958233627345935, 0.00041587109789992233, 21925.0)
  0.017227 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.5951651684835482, Inf, 21936.0)
40	(-0.5945169092015072, 0.0004065552885014948, 21937.0)
  0.017444 seconds (28.19 k allocations: 48.842 MiB)
20	(-0.5938741411451994, Inf, 21945.0)
40	(-0.5932402824741475, 0.0003978424836632943, 21945.0)
  0.028299 seconds (47.19 k allocations: 49.219 MiB, 26.29% gc time)
20	(-0.5926118205289055, Inf, 21949.0)
40	(-0.5919913706786255, 0.0003897319179660493, 21953.0)
  0.017479 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.5913761456862333, Inf, 21953.0)
40	(-0.590768140468084, 0.00038220857124432553, 21952.0)
  0.017481 seconds (28.31 k allocations: 48.854 MiB)
20	(-0.5901651435955728, Inf, 21952.0)
40	(-0.5895686785572469, 0.0003752370352863664, 21962.0)
  0.017709 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.5889769852161709, Inf, 21962.0)
40	(-0.588391224744245, 0.00036877594310573566, 21962.0)
  0.017049 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.5878099927834122, Inf, 21962.0)
40	(-0.5872341728812066, 0.00036278194613231877, 21962.0)
  0.023295 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6931306409828323, Inf, 2.0)
40	(-0.6931141029316892, 9.767830245146443e-6, 2.0)
  0.018696 seconds (28.32 k allocations: 48.853 MiB)
20	(-0.6930874199432274, Inf, 71.0)
40	(-0.6930607488367714, 1.5753189290088307e-5, 71.0)
  0.018460 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6929801879650251, Inf, 431.0)
40	(-0.6928998923742787, 4.7430796769554e-5, 431.0)
  0.018242 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6926104207514241, Inf, 2789.0)
40	(-0.692325234907342, 0.00016851716100405346, 2752.0)
  0.018392 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6914442614609629, Inf, 9399.0)
40	(-0.690595523535369, 0.0005020348828435584, 9235.0)
60	(-0.6897772245761827, 0.0004842644031916814, 9007.0)
  0.027300 seconds (42.28 k allocations: 73.260 MiB)
20	(-0.688027164883457, Inf, 15456.0)
40	(-0.6863699295176204, 0.000982723503798875, 15347.0)
60	(-0.6847993248189733, 0.0009322206363157656, 15227.0)
80	(-0.6833096874936064, 0.0008849454954334101, 15108.0)
100	(-0.6818954771786611, 0.0008408431642361498, 14974.0)
120	(-0.6805520760160909, 0.0007993808592678702, 14864.0)
140	(-0.6792750927625997, 0.000760437202334999, 14797.0)
160	(-0.678060541832333, 0.000723782545378528, 14739.0)
180	(-0.6769045690801553, 0.0006893491576636399, 14636.0)
200	(-0.6758032537618935, 0.0006571865257985842, 14553.0)
220	(-0.6747535051427538, 0.0006268078352523151, 14440.0)
240	(-0.6737520841274502, 0.0005983090475586132, 14334.0)
260	(-0.6727961208180354, 0.0005714762830435925, 14238.0)
280	(-0.6718830491383884, 0.0005461337024247022, 14160.0)
300	(-0.6710106252292527, 0.0005220935737712472, 14089.0)
320	(-0.6701763786795051, 0.0004994960774186024, 14023.0)
  0.170997 seconds (263.98 k allocations: 391.791 MiB, 9.37% gc time)
20	(-0.6686234551984978, Inf, 16884.0)
40	(-0.6671546652723159, 0.0008810159949628364, 16804.0)
60	(-0.6657641899411175, 0.0008347371972545259, 16688.0)
80	(-0.6644466132440972, 0.0007916004553924046, 16627.0)
100	(-0.6631969745011139, 0.0007513474123280344, 16516.0)
120	(-0.662010860627355, 0.0007136619271616359, 16392.0)
140	(-0.6608838013001387, 0.0006785901134890289, 16273.0)
160	(-0.6598120143427029, 0.0006457279186885819, 16189.0)
180	(-0.6587921885865662, 0.0006148001920636379, 16116.0)
200	(-0.6578210463559903, 0.0005857943670763306, 16060.0)
220	(-0.6568955128681048, 0.000558594963108675, 15977.0)
240	(-0.6560128756405132, 0.000532989350852803, 15944.0)
260	(-0.6551703632338474, 0.0005090185429733027, 15804.0)
280	(-0.6543652826203731, 0.00048664017670819716, 15671.0)
  0.132002 seconds (216.62 k allocations: 342.297 MiB, 5.52% gc time)
20	(-0.6530448553069857, Inf, 17833.0)
40	(-0.6517940925817395, 0.0007572146739496673, 17753.0)
60	(-0.650608046358838, 0.0007185510972867773, 17671.0)
80	(-0.649482266060674, 0.0006825052450260734, 17625.0)
100	(-0.6484127293742958, 0.0006488282135410278, 17588.0)
120	(-0.6473956338304441, 0.0006173960419494762, 17509.0)
140	(-0.6464274816208543, 0.0005880321000452905, 17451.0)
160	(-0.6455050294970763, 0.0005605890636869606, 17353.0)
180	(-0.6446253621641772, 0.0005348739920571111, 17294.0)
200	(-0.6437857192204749, 0.0005107982955956646, 17235.0)
220	(-0.6429835081051528, 0.00048826486167671254, 17129.0)
  0.104589 seconds (174.34 k allocations: 269.077 MiB, 6.85% gc time)
20	(-0.6418142579016519, Inf, 18659.0)
40	(-0.6407041084398271, 0.0006766299030484665, 18620.0)
60	(-0.6396488642468326, 0.000643579376050818, 18570.0)
80	(-0.6386447031127235, 0.0006127997925369029, 18525.0)
100	(-0.6376880950471764, 0.0005841210352814689, 18465.0)
120	(-0.6367758172949761, 0.0005573626776255423, 18418.0)
140	(-0.635904987946197, 0.0005323226930632567, 18394.0)
160	(-0.6350728126196448, 0.0005089530693247502, 18316.0)
180	(-0.6342768013739085, 0.00048707247454473875, 18277.0)
  0.089156 seconds (146.14 k allocations: 220.244 MiB, 8.06% gc time)
20	(-0.6332224001094675, Inf, 19297.0)
40	(-0.6322181977921822, 0.0006152377902927417, 19246.0)
60	(-0.6312605743207101, 0.0005870450659735192, 19202.0)
80	(-0.6303462743781142, 0.0005608010745721532, 19155.0)
100	(-0.6294723294055442, 0.0005363361849101252, 19113.0)
120	(-0.6286359994342039, 0.0005135155870500563, 19090.0)
140	(-0.6278348116541205, 0.0004921800260981631, 19054.0)
  0.061116 seconds (98.80 k allocations: 171.152 MiB)
20	(-0.6268523084300257, Inf, 19829.0)
40	(-0.6259138104214422, 0.0005772126434796783, 19799.0)
60	(-0.6250161303929417, 0.0005524129956072996, 19774.0)
80	(-0.6241564087560021, 0.0005293342638090397, 19757.0)
100	(-0.623332009120372, 0.0005078441323144941, 19731.0)
120	(-0.6225405122103405, 0.00048781334214781434, 19703.0)
  0.062144 seconds (103.67 k allocations: 146.912 MiB, 11.53% gc time)
20	(-0.6216222250333061, Inf, 20274.0)
40	(-0.6207421360168746, 0.0005430160646001666, 20265.0)
60	(-0.6198974759889716, 0.0005214280782722234, 20239.0)
80	(-0.6190857371389189, 0.0005013563095720442, 20216.0)
100	(-0.6183046407649913, 0.0004826633714393938, 20204.0)
  0.042677 seconds (70.60 k allocations: 122.114 MiB)
20	(-0.6174352851444137, Inf, 20743.0)
40	(-0.6165994220017265, 0.0005170502545721871, 20698.0)
60	(-0.6157946166610465, 0.0004980864104764971, 20694.0)
  0.025808 seconds (42.28 k allocations: 73.260 MiB)
20	(-0.6149296762382754, Inf, 21042.0)
40	(-0.6140968081381573, 0.0005159963738971036, 21039.0)
60	(-0.6132936510911385, 0.0004978368609307501, 21027.0)
  0.036329 seconds (61.39 k allocations: 73.643 MiB, 19.70% gc time)
20	(-0.6124506013155574, Inf, 21271.0)
40	(-0.6116370631908761, 0.0005047899078906769, 21233.0)
60	(-0.6108508553294882, 0.00048806992825355013, 21238.0)
  0.025968 seconds (42.41 k allocations: 73.283 MiB)
20	(-0.6100389276151815, Inf, 21443.0)
40	(-0.6092534234412874, 0.00048811713708482433, 21415.0)
  0.016932 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6084531039135348, Inf, 21549.0)
40	(-0.607677678104899, 0.0004823266623629578, 21548.0)
  0.016960 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6068951048341467, Inf, 21627.0)
40	(-0.6061355661503578, 0.00047289824084361195, 21614.0)
  0.017320 seconds (28.20 k allocations: 48.879 MiB)
20	(-0.6053741485114051, Inf, 21690.0)
40	(-0.6046337738621365, 0.00046139789734495046, 21693.0)
  0.028583 seconds (47.45 k allocations: 49.234 MiB, 25.48% gc time)
20	(-0.6038950390268689, Inf, 21748.0)
40	(-0.6031753506362875, 0.0004489143313585839, 21766.0)
  0.017000 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6024595718937277, Inf, 21855.0)
40	(-0.6017609202577942, 0.00043617722663696825, 21857.0)
  0.017113 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6010675647331297, Inf, 21867.0)
40	(-0.6003895534118615, 0.0004236539283968482, 21870.0)
  0.017138 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.5997176152427387, Inf, 21898.0)
40	(-0.5990593797345871, 0.0004116391901974508, 21899.0)
  0.017362 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.5984075768331067, Inf, 21907.0)
40	(-0.5977680047853984, 0.00040029093447410284, 21910.0)
  0.016764 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.5971349465203328, Inf, 21919.0)
40	(-0.5965128088037828, 0.0003896853900071196, 21919.0)
  0.028301 seconds (47.40 k allocations: 49.283 MiB, 25.09% gc time)
20	(-0.5958970855346771, Inf, 21952.0)
40	(-0.595291129865431, 0.0003798401795772942, 21952.0)
  0.017125 seconds (28.19 k allocations: 48.842 MiB)
20	(-0.5946913805368789, Inf, 21962.0)
40	(-0.5941003798340616, 0.0003707424640842112, 21962.0)
  0.016788 seconds (28.20 k allocations: 48.846 MiB)
20	(-0.5935153070074343, Inf, 21964.0)
40	(-0.5929380946096221, 0.0003623570807713164, 21964.0)
  0.017106 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.5923665023442046, Inf, 21965.0)
40	(-0.5918019958360029, 0.000354633622572667, 21965.0)
  0.017412 seconds (28.19 k allocations: 49.036 MiB)
20	(-0.5912427924188146, Inf, 21965.0)
40	(-0.5906900013062324, 0.0003475165570464898, 21965.0)
  0.017840 seconds (28.31 k allocations: 48.854 MiB)
20	(-0.5901421998577161, Inf, 21965.0)
40	(-0.589600225377622, 0.0003409501781904478, 21965.0)
  0.028033 seconds (47.15 k allocations: 49.225 MiB, 26.02% gc time)
20	(-0.6931301577235442, Inf, 5.0)
40	(-0.6931131364966566, 1.0053212936995817e-5, 5.0)
  0.019322 seconds (28.19 k allocations: 48.845 MiB)
20	(-0.6930903858962535, Inf, 34.0)
40	(-0.6930676404344521, 1.3434467270031205e-5, 34.0)
  0.017547 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6930192528235559, Inf, 240.0)
40	(-0.6929709546710932, 2.852863619987507e-5, 238.0)
  0.017735 seconds (28.31 k allocations: 48.852 MiB)
20	(-0.6928227561461723, Inf, 1234.0)
40	(-0.6926757284828355, 8.686109268461197e-5, 1234.0)
  0.017305 seconds (28.19 k allocations: 48.858 MiB)
20	(-0.6921954162648813, Inf, 5834.0)
40	(-0.691727320014114, 0.0002766972225544451, 5755.0)
  0.017660 seconds (28.19 k allocations: 48.859 MiB)
20	(-0.6905759755276719, Inf, 13783.0)
40	(-0.6894791469432545, 0.0006492110816531063, 13744.0)
60	(-0.6884335066819584, 0.0006192960854887415, 13533.0)
80	(-0.6874356563110373, 0.0005913412859264065, 13419.0)
100	(-0.6864828746538514, 0.0005649518720321947, 13291.0)
120	(-0.6855724532363628, 0.0005401259469686366, 13219.0)
140	(-0.6847020794772338, 0.0005166336349505165, 13088.0)
160	(-0.6838692087236365, 0.0004946172477544099, 12971.0)
  0.069157 seconds (112.90 k allocations: 195.379 MiB)
20	(-0.6823440080098861, Inf, 16683.0)
40	(-0.6809019339989018, 0.0008579168015790608, 16623.0)
60	(-0.6795373182116263, 0.0008124950678252686, 16519.0)
80	(-0.6782446554422296, 0.0007702469155524541, 16365.0)
100	(-0.6770190750608887, 0.0007308088498017885, 16313.0)
120	(-0.675856316010069, 0.0006938297989579277, 16230.0)
140	(-0.6747521843720312, 0.0006592806078063454, 16165.0)
160	(-0.6737028370640706, 0.0006269615398401873, 16057.0)
180	(-0.6727046439488228, 0.0005967539570472955, 15987.0)
200	(-0.671754256896371, 0.0005684968640164646, 15862.0)
220	(-0.6708489736780814, 0.0005418103207118838, 15830.0)
240	(-0.6699859847698665, 0.0005167641621458433, 15767.0)
260	(-0.6691625925518724, 0.0004932965917569906, 15668.0)
  0.121578 seconds (202.52 k allocations: 317.866 MiB, 5.98% gc time)
20	(-0.6678335184494327, Inf, 17825.0)
40	(-0.666575907003639, 0.0007546079602547506, 17755.0)
60	(-0.6653846856441733, 0.0007152830032209244, 17711.0)
80	(-0.6642552170497591, 0.0006786630937630026, 17642.0)
100	(-0.6631832016960986, 0.000644556385951527, 17603.0)
120	(-0.6621648016072994, 0.0006126950154487574, 17539.0)
140	(-0.6611963935557494, 0.0005829581952541502, 17448.0)
160	(-0.6602745744370727, 0.0005552208850691304, 17355.0)
180	(-0.659396074440567, 0.0005294094701301842, 17234.0)
200	(-0.6585581588589721, 0.0005052072350428862, 17172.0)
220	(-0.6577584863742947, 0.00048238177711058323, 17153.0)
  0.104454 seconds (174.40 k allocations: 269.265 MiB, 6.86% gc time)
20	(-0.656599630330794, Inf, 18613.0)
40	(-0.6555001973187539, 0.0006641092606457104, 18559.0)
60	(-0.6544558680377817, 0.0006312222049239647, 18513.0)
80	(-0.6534627790657924, 0.0006006116282522779, 18494.0)
100	(-0.6525173277912494, 0.0005721279036793696, 18432.0)
120	(-0.6516162398789592, 0.000545579469693391, 18394.0)
140	(-0.6507565343620008, 0.0005207948592435717, 18336.0)
160	(-0.6499352551608364, 0.0004977645023315247, 18232.0)
  0.079913 seconds (132.06 k allocations: 195.765 MiB, 9.02% gc time)
20	(-0.6488598978989331, Inf, 19343.0)
40	(-0.6478370547788084, 0.0006207186063442306, 19311.0)
60	(-0.6468628658587966, 0.0005915422226147296, 19288.0)
80	(-0.6459338217084256, 0.0005644480586750845, 19256.0)
100	(-0.6450467077613911, 0.0005392636834255954, 19217.0)
120	(-0.6441985892052616, 0.0005158248898263408, 19194.0)
140	(-0.6433867563925388, 0.0004939998509571025, 19126.0)
  0.060619 seconds (98.67 k allocations: 170.968 MiB)
20	(-0.642396264773029, Inf, 20015.0)
40	(-0.6414507372847245, 0.000576031596213877, 19983.0)
60	(-0.6405468175066948, 0.0005509868833876953, 19966.0)
80	(-0.639681485752335, 0.000527743809928327, 19954.0)
100	(-0.6388519872145789, 0.0005061460975288415, 19918.0)
120	(-0.6380557861627096, 0.00048606467410640164, 19894.0)
  0.063919 seconds (103.86 k allocations: 146.956 MiB, 11.34% gc time)
20	(-0.6371340959910105, Inf, 20543.0)
40	(-0.6362507802648122, 0.0005398412864654568, 20547.0)
60	(-0.6354029658623267, 0.0005184131496535781, 20534.0)
80	(-0.6345880362004376, 0.0004985535461175919, 20484.0)
  0.035049 seconds (56.38 k allocations: 97.690 MiB)
20	(-0.6336858312869165, Inf, 20899.0)
40	(-0.632819037207341, 0.0005308574066223315, 20896.0)
60	(-0.6319849597702849, 0.0005110815709805961, 20887.0)
80	(-0.6311811818946707, 0.000492758183171681, 20872.0)
  0.045108 seconds (75.66 k allocations: 98.074 MiB, 16.00% gc time)
20	(-0.6303172810973108, Inf, 21180.0)
40	(-0.6294845285165771, 0.000511052769240947, 21176.0)
60	(-0.6286805492770258, 0.0004936383871645187, 21176.0)
  0.025841 seconds (42.28 k allocations: 73.261 MiB)
20	(-0.6278363005723823, Inf, 21368.0)
40	(-0.6270204862177954, 0.0005014161539436693, 21380.0)
60	(-0.6262309160119924, 0.00048552158123965026, 21354.0)
  0.025802 seconds (42.28 k allocations: 73.261 MiB)
20	(-0.6254148968808726, Inf, 21500.0)
40	(-0.6246241023825725, 0.0004867553652197927, 21498.0)
  0.016985 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6238175578810852, Inf, 21573.0)
40	(-0.6230346414757507, 0.00048237812387207286, 21573.0)
  0.017375 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6222434958771217, Inf, 21640.0)
40	(-0.6214740889268691, 0.0004745107895999985, 21646.0)
  0.028804 seconds (47.44 k allocations: 49.291 MiB, 25.45% gc time)
20	(-0.6207016152410821, Inf, 21704.0)
40	(-0.6199488774675311, 0.00046466761020740396, 21710.0)
  0.016887 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6191965361298505, Inf, 21774.0)
40	(-0.6184619501047263, 0.0004538790825923862, 21778.0)
  0.017495 seconds (28.19 k allocations: 48.850 MiB)
20	(-0.6177300138239472, Inf, 21830.0)
40	(-0.6170139420468833, 0.00044283587076402364, 21830.0)
  0.018413 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6163019197335747, Inf, 21854.0)
40	(-0.6156040162217591, 0.00043197683640806844, 21853.0)
  0.017908 seconds (28.19 k allocations: 49.036 MiB)
20	(-0.6149109721977327, Inf, 21896.0)
40	(-0.6142304659167009, 0.00042156699145516857, 21896.0)
  0.017840 seconds (28.32 k allocations: 48.888 MiB)
20	(-0.613555226778515, Inf, 21905.0)
40	(-0.6128911150745199, 0.00041175234818283373, 21922.0)
  0.028617 seconds (47.31 k allocations: 49.221 MiB, 26.40% gc time)
20	(-0.6122324122119053, Inf, 21945.0)
40	(-0.6115836017385589, 0.00040259188083478114, 21951.0)
  0.017761 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6109401626121548, Inf, 21955.0)
40	(-0.6103055171829443, 0.00039411491945992827, 21955.0)
  0.017000 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6096761013974364, Inf, 21955.0)
40	(-0.6090545321946293, 0.0003862946782538932, 21959.0)
  0.016846 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6084379888462774, Inf, 21959.0)
40	(-0.6078284738677671, 0.00037909204148134146, 21958.0)
  0.017475 seconds (28.32 k allocations: 48.855 MiB)
20	(-0.6072237486616052, Inf, 21961.0)
40	(-0.6066253437319036, 0.0003724607806270864, 21961.0)
  0.017109 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6060314809880332, Inf, 21964.0)
40	(-0.6054433302229767, 0.000366347882846033, 21964.0)
  0.028453 seconds (47.31 k allocations: 49.222 MiB, 26.18% gc time)
20	(-0.6048594747970136, Inf, 21963.0)
40	(-0.6042808080995009, 0.0003607016269166948, 21963.0)
  0.017359 seconds (28.20 k allocations: 48.845 MiB)
20	(-0.6931302673307973, Inf, 2.0)
40	(-0.6931133557056254, 9.988477803291825e-6, 2.0)
  0.017766 seconds (28.31 k allocations: 48.852 MiB)
20	(-0.6930925569346791, Inf, 27.0)
40	(-0.6930717612535823, 1.228281138031057e-5, 27.0)
  0.017488 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6930273814185639, Inf, 195.0)
40	(-0.6929830554784895, 2.6182152225906974e-5, 195.0)
  0.017576 seconds (28.19 k allocations: 48.849 MiB)
20	(-0.6928344795672624, Inf, 1559.0)
40	(-0.6926871077916908, 8.706380221907785e-5, 1559.0)
  0.028364 seconds (47.06 k allocations: 49.219 MiB, 26.40% gc time)
20	(-0.6921567083581682, Inf, 6701.0)
40	(-0.6916405871090576, 0.00030510100847877563, 6563.0)
  0.017371 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6904013511915331, Inf, 14219.0)
40	(-0.689219982568228, 0.000699357475933348, 13962.0)
60	(-0.6880926973696628, 0.0006677863131104713, 13812.0)
80	(-0.6870162064233553, 0.0006381035002561374, 13633.0)
100	(-0.685987319649394, 0.0006102577178191652, 13501.0)
120	(-0.6850034037289205, 0.0005839251827598752, 13432.0)
140	(-0.6840619831417213, 0.0005590177776253709, 13363.0)
160	(-0.6831607515933626, 0.0005354399735767891, 13279.0)
180	(-0.6822973676963489, 0.0005132171717037549, 13195.0)
200	(-0.6814693144496621, 0.0004924581373985976, 13010.0)
  0.097225 seconds (160.32 k allocations: 244.648 MiB, 7.50% gc time)
20	(-0.6799535074046449, Inf, 16748.0)
40	(-0.6785170159847781, 0.0008558098644141592, 16638.0)
60	(-0.6771543531347817, 0.0008124850568759267, 16485.0)
80	(-0.6758606144289631, 0.00077198467144563, 16380.0)
100	(-0.6746310963558759, 0.0007342023420935255, 16281.0)
120	(-0.6734617512918921, 0.0006987581658684977, 16212.0)
140	(-0.6723486776916695, 0.0006655750771776739, 16131.0)
160	(-0.6712882932674789, 0.0006344712809048228, 16015.0)
180	(-0.6702772914098951, 0.0006052898298882711, 15938.0)
200	(-0.6693127378998406, 0.0005778147426515396, 15864.0)
220	(-0.6683918517413423, 0.0005519603548393789, 15843.0)
240	(-0.6675121182492034, 0.0005275724730939592, 15747.0)
260	(-0.6666708742117332, 0.0005047451482393525, 15705.0)
280	(-0.6658660625698766, 0.0004831190573719254, 15649.0)
  0.133075 seconds (216.85 k allocations: 342.536 MiB, 5.52% gc time)
20	(-0.6645599964087723, Inf, 17788.0)
40	(-0.6633204112079548, 0.0007452473933854007, 17678.0)
60	(-0.6621427024023587, 0.0007085485523558847, 17625.0)
80	(-0.6610226986081436, 0.0006742856645810337, 17572.0)
100	(-0.659956627170753, 0.000642228489552521, 17517.0)
120	(-0.6589408087940897, 0.000612329488356928, 17450.0)
140	(-0.6579719964178832, 0.000584335789928693, 17401.0)
160	(-0.657047208005836, 0.0005580941855965948, 17327.0)
180	(-0.6561636308818576, 0.0005335083487541533, 17280.0)
200	(-0.6553187845328039, 0.000510382868211173, 17203.0)
220	(-0.654510030258895, 0.0004888179939183358, 17119.0)
  0.105957 seconds (174.52 k allocations: 269.021 MiB, 6.95% gc time)
20	(-0.6533415630937076, Inf, 18759.0)
40	(-0.6522298944416304, 0.0006728292810928247, 18674.0)
60	(-0.6511709930943247, 0.0006413032640073726, 18635.0)
80	(-0.6501612566062855, 0.0006119017059676747, 18587.0)
100	(-0.6491973719439719, 0.0005844568265213197, 18556.0)
120	(-0.6482763058611475, 0.0005588056320103262, 18547.0)
140	(-0.6473952524900548, 0.000534816019264931, 18492.0)
160	(-0.6465515604495004, 0.0005123994054119581, 18441.0)
180	(-0.6457428964251424, 0.0004913671668366561, 18389.0)
  0.077148 seconds (126.86 k allocations: 219.794 MiB)
20	(-0.6446783255038053, Inf, 19504.0)
40	(-0.6436620706076615, 0.0006182870033425826, 19475.0)
60	(-0.6426907122108307, 0.0005913215370429659, 19444.0)
80	(-0.6417611408924171, 0.0005662037523365652, 19406.0)
100	(-0.6408705194623594, 0.0005427737408247844, 19358.0)
120	(-0.640016233158196, 0.0005209011270079265, 19328.0)
140	(-0.6391958818997203, 0.0005004595652869436, 19275.0)
160	(-0.6384072356958242, 0.000481349317015886, 19254.0)
  0.079039 seconds (132.14 k allocations: 195.773 MiB, 9.11% gc time)
20	(-0.6374378277571222, Inf, 20035.0)
40	(-0.6365083954012833, 0.00056793619785309, 20017.0)
60	(-0.6356161314974862, 0.0005455215845665703, 20008.0)
80	(-0.6347584905776434, 0.0005246285153348261, 20000.0)
100	(-0.6339331338285937, 0.0005051349605205409, 19984.0)
120	(-0.6331379118603959, 0.0004869288517660654, 19981.0)
  0.051732 seconds (84.57 k allocations: 146.574 MiB)
20	(-0.6322145948238072, Inf, 20627.0)
40	(-0.6313262509996562, 0.0005445531349762574, 20607.0)
60	(-0.6304703919553887, 0.0005249154161218069, 20598.0)
80	(-0.6296447745658157, 0.0005066241443893525, 20610.0)
100	(-0.6288473381847224, 0.0004895709759896931, 20614.0)
  0.052992 seconds (89.89 k allocations: 122.549 MiB, 13.36% gc time)
20	(-0.6279594167285552, Inf, 20962.0)
40	(-0.6271022543114082, 0.0005268030419573739, 20956.0)
60	(-0.626273658930271, 0.0005095055045546597, 20952.0)
80	(-0.6254716540569972, 0.0004933982522992872, 20938.0)
  0.034133 seconds (56.38 k allocations: 97.877 MiB)
20	(-0.6246063749878357, Inf, 21207.0)
40	(-0.6237687492377443, 0.0005158528580406528, 21224.0)
60	(-0.6229568062877373, 0.0005002862348901113, 21221.0)
80	(-0.6221687748256013, 0.0004857888244216385, 21229.0)
  0.044580 seconds (75.74 k allocations: 98.076 MiB, 16.22% gc time)
20	(-0.6213367585100668, Inf, 21374.0)
40	(-0.6205287826874978, 0.000498587764192019, 21371.0)
  0.017229 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6196919251581207, Inf, 21507.0)
40	(-0.618878383532395, 0.0005025341211552394, 21503.0)
60	(-0.6180865057320956, 0.0004893915112042498, 21512.0)
  0.028576 seconds (42.28 k allocations: 73.260 MiB)
20	(-0.6172757245940234, Inf, 21686.0)
40	(-0.6164855440406168, 0.0004888262417932652, 21686.0)
  0.017270 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6156842950145448, Inf, 21791.0)
40	(-0.6149022587180898, 0.00048426230890022653, 21770.0)
  0.017179 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6141147238140161, Inf, 21803.0)
40	(-0.6133448805237788, 0.0004771721778342853, 21782.0)
  0.017622 seconds (28.31 k allocations: 48.853 MiB)
20	(-0.6125734244382728, Inf, 21812.0)
40	(-0.6118181131271738, 0.0004686082784077548, 21789.0)
  0.038167 seconds (47.39 k allocations: 49.223 MiB, 43.99% gc time)
20	(-0.6110638454670246, Inf, 21851.0)
40	(-0.6103242266221783, 0.0004592980920356198, 21830.0)
  0.017373 seconds (28.20 k allocations: 48.844 MiB)
20	(-0.6095874209214772, Inf, 21850.0)
40	(-0.6088638521794711, 0.0004497389515128222, 21860.0)
  0.017102 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6081442318431545, Inf, 21862.0)
40	(-0.6074365546642323, 0.00044025201297602376, 21870.0)
  0.017171 seconds (28.19 k allocations: 48.841 MiB)
20	(-0.6067335184255371, Inf, 21870.0)
40	(-0.6060412560094977, 0.0004310365088375948, 21873.0)
  0.017449 seconds (28.32 k allocations: 48.862 MiB)
20	(-0.6053540150433743, Inf, 21884.0)
40	(-0.6046765028922301, 0.00042221104996743457, 21907.0)
  0.028232 seconds (46.12 k allocations: 49.114 MiB, 25.87% gc time)
20	(-0.604004181294629, Inf, 21939.0)
40	(-0.6033406660625468, 0.00041383297144931665, 21939.0)
  0.017443 seconds (28.20 k allocations: 48.845 MiB)
20	(-0.6026823625138807, Inf, 21944.0)
40	(-0.6020320457077298, 0.0004059324580262172, 21944.0)
  0.017096 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6013868705843042, Inf, 21944.0)
40	(-0.6007489668470745, 0.000398503294670974, 21944.0)
  0.017178 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.6001160757487858, Inf, 21947.0)
40	(-0.5994898305610677, 0.0003915280833629054, 21947.0)
  0.017435 seconds (28.31 k allocations: 48.854 MiB)
20	(-0.5988684342123589, Inf, 21964.0)
40	(-0.5982531377210938, 0.0003849806246227439, 21964.0)
  0.017198 seconds (28.19 k allocations: 48.840 MiB)
20	(-0.5976425077659405, Inf, 21965.0)
40	(-0.5970375010917948, 0.00037883059961469473, 21965.0)
  0.029612 seconds (47.39 k allocations: 49.307 MiB, 28.28% gc time)





31×5 Array{Float64,2}:
 0.515088  0.722807  0.579659  0.523509  0.576491
 0.73193   0.719298  0.707681  0.674386  0.792281
 0.807018  0.728421  0.711238  0.729123  0.813333
 0.821053  0.738947  0.716927  0.764211  0.814035
 0.847018  0.738947  0.731863  0.797193  0.823158
 0.857544  0.738246  0.737553  0.812632  0.825965
 0.859649  0.740351  0.741821  0.815439  0.825965
 0.860351  0.743158  0.739687  0.81614   0.82386
 0.860351  0.740351  0.743243  0.81614   0.820351
 0.863158  0.740351  0.745377  0.818246  0.818246
 0.863158  0.741754  0.746088  0.820351  0.818947
 0.864561  0.742456  0.747511  0.821053  0.819649
 0.864561  0.741754  0.751067  0.820351  0.818947
 ⋮                                       
 0.866667  0.745965  0.756757  0.816842  0.815439
 0.865965  0.745263  0.756046  0.817544  0.81614
 0.865965  0.745263  0.756046  0.817544  0.815439
 0.866667  0.745263  0.756046  0.818246  0.815439
 0.867368  0.745965  0.756757  0.817544  0.81614
 0.868772  0.746667  0.757468  0.81614   0.81614
 0.86807   0.747368  0.757468  0.815439  0.816842
 0.869474  0.74807   0.75889   0.815439  0.81614
 0.870175  0.749474  0.759602  0.814737  0.81614
 0.869474  0.749474  0.760313  0.815439  0.81614
 0.869474  0.750877  0.761024  0.815439  0.81614
 0.868772  0.751579  0.761735  0.814737  0.815439
lambda_idx = argmax(mean(scores; dims=2)[:])
lambda = lambdas[lambda_idx]
1.2589254117941663e-9
U = ParProx.LogisticUpdate(; maxiter=30000, step=20, tol=1e-5, verbose=true)
V = ParProx.LogisticVariables{Float64}(adapt(A{T}, X), 
    adapt(A{T}, X_unpen), adapt(A{Int}, y), lambda, group_to_variables)
@time ParProx.fit!(U, V)
20	(-0.6882550177051432, Inf, 21956.0)
40	(-0.6837195236951092, 0.0026937348805460793, 21956.0)
60	(-0.6795117856550147, 0.0025053340357796446, 21965.0)
80	(-0.6756051154510823, 0.0023314981363498225, 21965.0)
100	(-0.6719749218217416, 0.0021712010042503073, 21965.0)
120	(-0.6685985792479503, 0.002023460055511381, 21965.0)
140	(-0.6654552969825818, 0.00188734111991083, 21965.0)
160	(-0.6625259907792304, 0.0017619611480350081, 21965.0)
180	(-0.6597931556525487, 0.0016464913819982819, 21965.0)
200	(-0.6572407470450712, 0.0015401555941878505, 21965.0)
220	(-0.6548540665157275, 0.0014422302108903038, 21965.0)
240	(-0.652619654399164, 0.0013520425650364518, 21965.0)
260	(-0.6505251896861826, 0.001268968644689206, 21965.0)
280	(-0.6485593943226992, 0.0011924322352310746, 21965.0)
300	(-0.6467119433282783, 0.0011219029544941822, 21965.0)
320	(-0.6449733910173964, 0.0010568878015751134, 21965.0)
340	(-0.6433350875183513, 0.000996938184724751, 21965.0)
360	(-0.6417891146766035, 0.0009416391106067039, 21965.0)
380	(-0.6403282223432534, 0.00089060976544267, 21965.0)
400	(-0.6389457698190533, 0.0008435010783503441, 21965.0)
420	(-0.6376356736644256, 0.0007999924376928809, 21965.0)
440	(-0.6363923618480131, 0.0007597883279096186, 21965.0)
460	(-0.6352107238229326, 0.0007226212547810904, 21965.0)
480	(-0.63408607416433, 0.0006882438302264702, 21965.0)
500	(-0.6330141122508016, 0.0006564315063088662, 21965.0)
520	(-0.6319908927020182, 0.0006269762615459639, 21965.0)
540	(-0.6310127933004291, 0.0005996883688507902, 21965.0)
560	(-0.6300764873580551, 0.0005743938702481104, 21965.0)
580	(-0.6291789183855417, 0.0005509333335854982, 21965.0)
600	(-0.6283172746412842, 0.0005291620728198602, 21965.0)
620	(-0.6274889704966146, 0.0005089460879214815, 21965.0)
640	(-0.6266916281082514, 0.0004901619794345514, 21965.0)
660	(-0.6259230617437904, 0.0004726954076392187, 21965.0)
680	(-0.6251812522101218, 0.00045644726251908396, 21965.0)
700	(-0.6244643382747976, 0.00044132328327103144, 21965.0)
720	(-0.6237706071851064, 0.00042723466394918016, 21965.0)
740	(-0.6230984777336672, 0.0004141026934962222, 21965.0)
760	(-0.6224464916390238, 0.00040185368084762245, 21965.0)
780	(-0.6218133025204272, 0.00039042047417697773, 21965.0)
800	(-0.6211976673541612, 0.00037974096475896927, 21965.0)
820	(-0.6205984364939565, 0.00036975900180493017, 21965.0)
840	(-0.6200145477781701, 0.0003604218965732148, 21965.0)
860	(-0.61944501870125, 0.0003516816380569937, 21965.0)
880	(-0.6188889407207327, 0.0003434935939890352, 21965.0)
900	(-0.6183454717261188, 0.00033581766323004724, 21965.0)
920	(-0.6178138318877403, 0.000328616202865634, 21965.0)
940	(-0.6172932994015968, 0.0003218541042222059, 21965.0)
960	(-0.6167832060567257, 0.00031549891349705143, 21965.0)
980	(-0.616282934794322, 0.00030951960924302394, 21965.0)
1000	(-0.6157919046957435, 0.0003038943920633694, 21965.0)
1020	(-0.615309581592831, 0.0002985948380476437, 21965.0)
1040	(-0.61483546925153, 0.0002935979239549174, 21965.0)
1060	(-0.6143691052088734, 0.00028888315636850704, 21965.0)
1080	(-0.6139100610351733, 0.0002844298358272178, 21965.0)
1100	(-0.6134579379054079, 0.00028021996678285777, 21965.0)
1120	(-0.6130123638094815, 0.00027623724772577775, 21965.0)
1140	(-0.6125729938955936, 0.00027246513215288266, 21965.0)
1160	(-0.6121395078830295, 0.0002688886479392399, 21965.0)
1180	(-0.6117116027811591, 0.0002654973142415907, 21965.0)
1200	(-0.6112889989888656, 0.00026227684329671906, 21965.0)
1220	(-0.6108714371526406, 0.00025921487375992386, 21965.0)
1240	(-0.6104586736106117, 0.0002563018528774153, 21965.0)
1260	(-0.6100504804478585, 0.000253528176731239, 21965.0)
1280	(-0.6096466480304759, 0.000250882650472848, 21965.0)
1300	(-0.6092469781584483, 0.00024835831755602695, 21965.0)
1320	(-0.6088512839770336, 0.000245948264675262, 21965.0)
1340	(-0.6084593928170913, 0.00024364380082729221, 21965.0)
1360	(-0.6080711413570442, 0.00024143923117693564, 21965.0)
1380	(-0.6076863780303342, 0.0002393273538719644, 21965.0)
1400	(-0.6073049620702842, 0.0002373015507640528, 21965.0)
1420	(-0.6069267587946967, 0.00023535812912291103, 21965.0)
1440	(-0.6065516436089444, 0.00023349089787716266, 21965.0)
1460	(-0.6061795016959802, 0.0002316938502647111, 21965.0)
1480	(-0.6058102205659972, 0.0002299656119095216, 21965.0)
1500	(-0.6054436975599311, 0.00022830013075087442, 21965.0)
1520	(-0.6050798356411459, 0.00022669396917561518, 21965.0)
1540	(-0.6047185431785463, 0.0002251438198526062, 21965.0)
1560	(-0.6043597343023793, 0.00022364614898730067, 21965.0)
1580	(-0.6040033282211931, 0.0002221978439293532, 21965.0)
1600	(-0.603649248739402, 0.00022079608871419313, 21965.0)
1620	(-0.6032974241715964, 0.00021943811703393974, 21965.0)
1640	(-0.6029477869261881, 0.0002181214187136608, 21965.0)
1660	(-0.6026002732332283, 0.00021684365013785822, 21965.0)
1680	(-0.6022548228919468, 0.00021560262222086287, 21965.0)
1700	(-0.6019113792027758, 0.0002143961854755431, 21965.0)
1720	(-0.601569889303857, 0.00021322197751059985, 21965.0)
1740	(-0.6012303013746019, 0.0002120793798141483, 21965.0)
1760	(-0.600892568612357, 0.00021096528828143531, 21965.0)
1780	(-0.6005566444890933, 0.00020987955935223608, 21965.0)
1800	(-0.6002224869542063, 0.00020881942205611077, 21965.0)
1820	(-0.5998900538590144, 0.0002077849627167102, 21965.0)
1840	(-0.5995593060111507, 0.00020677435755006796, 21965.0)
1860	(-0.5992302063141148, 0.00020578631877794353, 21965.0)
1880	(-0.5989027199794057, 0.00020481942435707118, 21965.0)
1900	(-0.5985768133078854, 0.00020387301304961234, 21965.0)
1920	(-0.5982524552497571, 0.000202945446486151, 21965.0)
1940	(-0.597929622119981, 0.00020203213289694, 21965.0)
1960	(-0.5976082808198689, 0.0002011389800428233, 21965.0)
1980	(-0.5972884007163424, 0.00020026446281279755, 21965.0)
2000	(-0.5969699554124354, 0.00019940594550807883, 21965.0)
2020	(-0.5966529197670454, 0.00019856265658302295, 21965.0)
2040	(-0.5963372697430976, 0.00019773391872165687, 21965.0)
2060	(-0.5960229846133475, 0.0001969176714747119, 21965.0)
2080	(-0.5957100408674418, 0.00019611567132554113, 21965.0)
2100	(-0.595398416660709, 0.0001953268873019576, 21965.0)
2120	(-0.5950880927978556, 0.00019454967048818895, 21965.0)
2140	(-0.5947790566023992, 0.00019377994348308066, 21965.0)
2160	(-0.5944712835355893, 0.00019302515510181468, 21965.0)
2180	(-0.5941647538005757, 0.00019228234364288715, 21965.0)
2200	(-0.593859450688779, 0.00019154958215715113, 21965.0)
2220	(-0.5935553575070885, 0.00019082687040515505, 21965.0)
2240	(-0.5932524582990271, 0.00019011375534600363, 21965.0)
2260	(-0.5929507376060623, 0.00018940993330288547, 21965.0)
2280	(-0.5926501819550559, 0.00018871416611866948, 21965.0)
2300	(-0.5923507758579549, 0.0001880277270814759, 21965.0)
2320	(-0.5920525046424278, 0.00018735011229680488, 21965.0)
2340	(-0.5917553548404481, 0.00018668057316476667, 21965.0)
2360	(-0.5914593146983949, 0.0001860180397444241, 21965.0)
2380	(-0.5911643705308086, 0.00018536373303020177, 21965.0)
2400	(-0.5908705100009632, 0.00018471681258658255, 21965.0)
2420	(-0.5905777212795877, 0.00018407696616042158, 21965.0)
2440	(-0.5902859934589828, 0.00018344362071026507, 21965.0)
2460	(-0.5899953162174664, 0.00018281641370362282, 21965.0)
2480	(-0.5897056786771039, 0.00018219570090704604, 21965.0)
2500	(-0.5894170695197205, 0.0001815817653641969, 21965.0)
2520	(-0.5891294778925599, 0.00018097432031908767, 21965.0)
2540	(-0.5888428943261423, 0.00018037250091934123, 21965.0)
2560	(-0.5885573096423833, 0.00017977612896027384, 21965.0)
2580	(-0.5882727133336492, 0.00017918604679468191, 21965.0)
2600	(-0.5879890961630309, 0.0001786014597352081, 21965.0)
2620	(-0.5877064508237179, 0.00017802115697543032, 21965.0)
2640	(-0.5874247693003528, 0.00017744558911550871, 21965.0)
2660	(-0.5871440418937985, 0.00017687582169246825, 21965.0)
2680	(-0.5868642600180729, 0.00017631115828549266, 21965.0)
2700	(-0.5865854145206291, 0.00017575196071500902, 21965.0)
2720	(-0.5863074977229322, 0.00017519730449221119, 21965.0)
2740	(-0.586030501123341, 0.00017464771288764648, 21965.0)
2760	(-0.5857544171880239, 0.0001741025800241228, 21965.0)
2780	(-0.5854792388668546, 0.00017356160485959497, 21965.0)
2800	(-0.5852049581518188, 0.00017302539562805226, 21965.0)
2820	(-0.5849315698077582, 0.00017249220677320132, 21965.0)
2840	(-0.5846590651948504, 0.00017196419021161754, 21965.0)
2860	(-0.5843874368253932, 0.0001714406231354137, 21965.0)
2880	(-0.5841166778718435, 0.00017092109270221975, 21965.0)
2900	(-0.5838467878147977, 0.00017040161909736824, 21965.0)
2920	(-0.5835777545108944, 0.00016988954482147258, 21965.0)
2940	(-0.5833095708293466, 0.00016938170935663544, 21965.0)
2960	(-0.5830422308916687, 0.0001688773252292393, 21965.0)
2980	(-0.582775729952683, 0.00016837567947399116, 21965.0)
3000	(-0.5825100597336648, 0.00016787900802536174, 21965.0)
3020	(-0.5822452141572677, 0.00016738592351383174, 21965.0)
3040	(-0.5819811872417168, 0.00016689636873071077, 21965.0)
3060	(-0.5817179733777047, 0.00016641011131079473, 21965.0)
3080	(-0.5814555671409971, 0.00016592703719268994, 21965.0)
3100	(-0.5811939632913136, 0.0001654470329111343, 21965.0)
3120	(-0.5809331564401403, 0.00016497019504639656, 21965.0)
3140	(-0.5806731396585939, 0.00016449750111055417, 21965.0)
3160	(-0.5804139074755902, 0.00016402803200953563, 21965.0)
3180	(-0.5801554547311777, 0.00016356159366387482, 21965.0)
3200	(-0.5798977779690885, 0.0001630971102576303, 21965.0)
3220	(-0.5796408700486428, 0.00016263691660353528, 21965.0)
3240	(-0.5793847257453805, 0.00016217980273393345, 21965.0)
3260	(-0.5791293397540543, 0.00016172582251299626, 21965.0)
3280	(-0.5788747070284402, 0.00016127481457559034, 21965.0)
3300	(-0.5786208225864458, 0.000160826740887979, 21965.0)
3320	(-0.5783676815084027, 0.00016038156445345123, 21965.0)
3340	(-0.5781152789354348, 0.00015993924926583692, 21965.0)
3360	(-0.5778636100678973, 0.00015949976026548922, 21965.0)
3380	(-0.5776126704023556, 0.00015906291211370853, 21965.0)
3400	(-0.5773624555758016, 0.00015862861808938847, 21965.0)
3420	(-0.5771129616723072, 0.00015819659691961865, 21965.0)
3440	(-0.5768641857745529, 0.00015776621728021297, 21965.0)
3460	(-0.5766161221920983, 0.00015733924001084458, 21965.0)
3480	(-0.5763687647284502, 0.00015691598893786377, 21965.0)
3500	(-0.5761221089242576, 0.0001564953646649463, 21965.0)
3520	(-0.5758761504018822, 0.00015607731756882455, 21965.0)
3540	(-0.575630884821074, 0.00015566182611102206, 21965.0)
3560	(-0.575386307901299, 0.0001552488545497813, 21965.0)
3580	(-0.5751424154079187, 0.0001548383758792648, 21965.0)
3600	(-0.5748992031512423, 0.00015443036366371383, 21965.0)
3620	(-0.5746566669856128, 0.0001540247920162913, 21965.0)
3640	(-0.5744148028085271, 0.00015362163557803508, 21965.0)
3660	(-0.5741736080585108, 0.00015321991728329526, 21965.0)
3680	(-0.5739330779228742, 0.0001528210690851343, 21965.0)
3700	(-0.5736932078398409, 0.0001524249338043086, 21965.0)
3720	(-0.573453993740421, 0.00015203120038558492, 21965.0)
3740	(-0.573215432396261, 0.00015163933638550497, 21965.0)
3760	(-0.5729775201414282, 0.0001512496216801861, 21965.0)
3780	(-0.5727402522791556, 0.0001508627136164335, 21965.0)
3800	(-0.5725036251363587, 0.00015047796330288984, 21965.0)
3820	(-0.5722676353023222, 0.00015009520563661634, 21965.0)
3840	(-0.5720322786114991, 0.00014971492254024492, 21965.0)
3860	(-0.5717975513851732, 0.00014933680620575802, 21965.0)
3880	(-0.5715634499791529, 0.00014896083643547477, 21965.0)
3900	(-0.5713299708827543, 0.00014858693000517674, 21965.0)
3920	(-0.5710971105425793, 0.0001482151158018375, 21965.0)
3940	(-0.5708648652933321, 0.00014784546677334647, 21965.0)
3960	(-0.5706332316232148, 0.00014747788691442054, 21965.0)
3980	(-0.5704022065683017, 0.0001471120289737554, 21965.0)
4000	(-0.570171787678564, 0.00014674756707881755, 21965.0)
4020	(-0.5699419704548423, 0.000146385807913108, 21965.0)
4040	(-0.5697127513681753, 0.0001460261353341016, 21965.0)
4060	(-0.5694841271557585, 0.00014566838138795868, 21965.0)
4080	(-0.5692560946724796, 0.0001453124726123452, 21965.0)
4100	(-0.5690286500601818, 0.00014495886502080172, 21965.0)
4120	(-0.5688017900516977, 0.00014460718359874278, 21965.0)
4140	(-0.5685755114091561, 0.00014425741119620947, 21965.0)
4160	(-0.5683498116447401, 0.00014390907101222882, 21965.0)
4180	(-0.5681246868972917, 0.00014356304019027733, 21965.0)
4200	(-0.5679001339757123, 0.00014321889303626486, 21965.0)
4220	(-0.5676761497532496, 0.00014287658997546728, 21965.0)
4240	(-0.5674527315516115, 0.00014253584630716175, 21965.0)
4260	(-0.5672298771404382, 0.0001421963774579971, 21965.0)
4280	(-0.5670075821972572, 0.00014185951983029473, 21965.0)
4300	(-0.566785846296674, 0.00014152278762753718, 21965.0)
4320	(-0.5665646643845539, 0.0001411891364260761, 21965.0)
4340	(-0.5663440334252035, 0.00014085727952623987, 21965.0)
4360	(-0.5661239505004272, 0.0001405271432736485, 21965.0)
4380	(-0.5659044146897557, 0.00014019745305779907, 21965.0)
4400	(-0.5656854210947141, 0.00013987075059337863, 21965.0)
4420	(-0.5654669662693341, 0.0001395461099384074, 21965.0)
4440	(-0.5652490473450767, 0.0001392231636409575, 21965.0)
4460	(-0.5650316614778379, 0.0001389018973798755, 21965.0)
4480	(-0.5648148058485419, 0.00013858229643882465, 21965.0)
4500	(-0.5645984780746505, 0.00013826408303660998, 21965.0)
4520	(-0.5643826763130892, 0.00013794691339194347, 21965.0)
4540	(-0.56416739734992, 0.00013763166495730023, 21965.0)
4560	(-0.5639526378254964, 0.0001373184323038221, 21965.0)
4580	(-0.5637383951939088, 0.00013700669641809228, 21965.0)
4600	(-0.5635246665807392, 0.00013669666858342336, 21965.0)
4620	(-0.5633114492303222, 0.00013638827408447084, 21965.0)
4640	(-0.5630987403897443, 0.00013608151237128754, 21965.0)
4660	(-0.5628865387435555, 0.0001357754647751531, 21965.0)
4680	(-0.5626748411323845, 0.00013547131213657203, 21965.0)
4700	(-0.5624636442017426, 0.00013516918068828205, 21965.0)
4720	(-0.5622529453864128, 0.0001348685665480646, 21965.0)
4740	(-0.5620427421411323, 0.00013456945806259246, 21965.0)
4760	(-0.561833031940276, 0.0001342718437679127, 21965.0)
4780	(-0.5616238122776501, 0.00013397571232006992, 21965.0)
4800	(-0.5614150806663247, 0.00013368105246961093, 21965.0)
4820	(-0.5612068346384644, 0.00013338785306337526, 21965.0)
4840	(-0.5609990717451443, 0.00013309610305396814, 21965.0)
4860	(-0.5607917895561498, 0.00013280579151009496, 21965.0)
4880	(-0.5605849856597649, 0.00013251690762455587, 21965.0)
4900	(-0.5603786576625565, 0.00013222944071633993, 21965.0)
4920	(-0.5601728045218093, 0.00013194252595004273, 21965.0)
4940	(-0.5599674229708504, 0.0001316575897256262, 21965.0)
4960	(-0.5597625102227803, 0.00013137432572401023, 21965.0)
4980	(-0.5595580639553349, 0.0001310924371272907, 21965.0)
5000	(-0.5593540818634969, 0.00013081191386260461, 21965.0)
5020	(-0.5591505616593003, 0.00013053274597160658, 21965.0)
5040	(-0.5589475010716418, 0.00013025492360642257, 21965.0)
5060	(-0.5587448978460928, 0.0001299784370290182, 21965.0)
5080	(-0.5585427497447192, 0.00012970327660678896, 21965.0)
5100	(-0.5583410545458998, 0.0001294294328132047, 21965.0)
5120	(-0.5581398100441519, 0.00012915689622367858, 21965.0)
5140	(-0.5579390140499585, 0.0001288856575145673, 21965.0)
5160	(-0.5577386644691844, 0.00012861565636387105, 21965.0)
5180	(-0.5575387593027952, 0.00012834683258779381, 21965.0)
5200	(-0.5573392961693584, 0.0001280794326113769, 21965.0)
5220	(-0.5571402732892033, 0.00012781307090250124, 21965.0)
5240	(-0.556941688221469, 0.00012754817295774958, 21965.0)
5260	(-0.556743539024551, 0.00012728441901363032, 21965.0)
5280	(-0.5565458235584747, 0.00012702193734603426, 21965.0)
5300	(-0.556348539639983, 0.00012676075664732253, 21965.0)
5320	(-0.5561516852274944, 0.00012650078675321725, 21965.0)
5340	(-0.5559552584843919, 0.00012624189675854112, 21965.0)
5360	(-0.5557592572212589, 0.00012598431423322808, 21965.0)
5380	(-0.5555636796571444, 0.0001257277774430849, 21965.0)
5400	(-0.5553685235191252, 0.00012547260348150287, 21965.0)
5420	(-0.5551737868255089, 0.00012521860596291623, 21965.0)
5440	(-0.5549794676610622, 0.0001249657429489818, 21965.0)
5460	(-0.5547855646489201, 0.00012471366891410833, 21965.0)
5480	(-0.5545920764751812, 0.0001244623439595127, 21965.0)
5500	(-0.5543989999539325, 0.00012421297315193318, 21965.0)
5520	(-0.5542063331714487, 0.00012396473902574095, 21965.0)
5540	(-0.5540140746696669, 0.00012371734909975442, 21965.0)
5560	(-0.5538222225975817, 0.00012347105691694728, 21965.0)
5580	(-0.5536307748259175, 0.00012322604235597435, 21965.0)
5600	(-0.5534397293528414, 0.00012298222419979154, 21965.0)
5620	(-0.5532490842495704, 0.00012273955620134425, 21965.0)
5640	(-0.5530588376753665, 0.00012249798242591382, 21965.0)
5660	(-0.5528689878064045, 0.0001222574927136391, 21965.0)
5680	(-0.5526795328312396, 0.00012201807981548432, 21965.0)
5700	(-0.5524904709506935, 0.00012177973654830305, 21965.0)
5720	(-0.5523018003777423, 0.00012154245579385475, 21965.0)
5740	(-0.552113519337407, 0.00012130623049767626, 21965.0)
5760	(-0.5519256264921835, 0.00012107077943436936, 21965.0)
5780	(-0.5517381197109461, 0.00012083661466812766, 21965.0)
5800	(-0.5515509972068452, 0.0001206035150876613, 21965.0)
5820	(-0.551364257252016, 0.00012037144336429783, 21965.0)
5840	(-0.5511778981301063, 0.00012014039275206514, 21965.0)
5860	(-0.550991918136174, 0.0001199103565644753, 21965.0)
5880	(-0.5508063156955564, 0.00011968125144909525, 21965.0)
5900	(-0.5506210891464345, 0.00011945313424303965, 21965.0)
5920	(-0.5504362370964513, 0.00011922583177582032, 21965.0)
5940	(-0.5502517574686864, 0.00011899978624513, 21965.0)
5960	(-0.5500676486137245, 0.00011877472259133318, 21965.0)
5980	(-0.54988390889297, 0.00011855063447023673, 21965.0)
6000	(-0.5497005367349536, 0.00011832747919336272, 21965.0)
6020	(-0.5495175305195384, 0.00011810528878221566, 21965.0)
6040	(-0.549334888590231, 0.00011788408732832546, 21965.0)
6060	(-0.5491526093507461, 0.00011766383659347061, 21965.0)
6080	(-0.5489706912151561, 0.00011744453050126688, 21965.0)
6100	(-0.5487891326078018, 0.00011722616302746518, 21965.0)
6120	(-0.5486079327241218, 0.00011700823678546843, 21965.0)
6140	(-0.5484270895021864, 0.0001167915642663456, 21965.0)
6160	(-0.548246601143041, 0.00011657597634134199, 21965.0)
6180	(-0.548066466111183, 0.0001163613034719977, 21965.0)
6200	(-0.5478866830097614, 0.00011614745665494174, 21965.0)
6220	(-0.5477072502081962, 0.00011593458746222538, 21965.0)
6240	(-0.5475281661859328, 0.00011572262539478246, 21965.0)
6260	(-0.5473494294463273, 0.00011551155556990882, 21965.0)
6280	(-0.5471710385022434, 0.00011530137240455865, 21965.0)
6300	(-0.5469929918759727, 0.00011509207036207974, 21965.0)
6320	(-0.5468152881607917, 0.00011488360410006932, 21965.0)
6340	(-0.5466379258510261, 0.00011467603813479744, 21965.0)
6360	(-0.5464609036871713, 0.00011446921382414367, 21965.0)
6380	(-0.5462842202779056, 0.00011426321690971748, 21965.0)
6400	(-0.5461078739412721, 0.00011405823591332129, 21965.0)
6420	(-0.5459318632544409, 0.00011385410380295242, 21965.0)
6440	(-0.5457561868034718, 0.0001136508153542257, 21965.0)
6460	(-0.5455808431832431, 0.00011344836538451007, 21965.0)
6480	(-0.545405830997376, 0.00011324674875470659, 21965.0)
6500	(-0.5452311488581639, 0.00011304596036729091, 21965.0)
6520	(-0.5450567953865009, 0.0001128459951657912, 21965.0)
6540	(-0.5448827692118108, 0.00011264684813519964, 21965.0)
6560	(-0.5447090689719772, 0.0001124485143012337, 21965.0)
6580	(-0.5445356933132742, 0.00011225098872988418, 21965.0)
6600	(-0.5443626408902984, 0.00011205426652645921, 21965.0)
6620	(-0.5441899103659004, 0.00011185834283628096, 21965.0)
6640	(-0.5440175004111176, 0.00011166321284365666, 21965.0)
6660	(-0.5438454097051091, 0.0001114688717709205, 21965.0)
6680	(-0.5436736369350882, 0.00011127531487934449, 21965.0)
6700	(-0.5435021807962588, 0.00011108253746746004, 21965.0)
6720	(-0.5433310399917504, 0.00011089053487146426, 21965.0)
6740	(-0.5431602132325541, 0.00011069930246476301, 21965.0)
6760	(-0.5429896992374608, 0.00011050883565693741, 21965.0)
6780	(-0.5428194967424264, 0.00011031912378199991, 21961.0)
6800	(-0.5426496044788403, 0.00011013017025567359, 21961.0)
6820	(-0.5424800212792272, 0.00010994190995898981, 21961.0)
6840	(-0.5423107460932837, 0.0001097542673370729, 21961.0)
6860	(-0.5421417784443464, 0.00010956687076314425, 21961.0)
6880	(-0.5419731163670224, 0.0001093806860403635, 21961.0)
6900	(-0.5418047583018968, 0.00010919545047391853, 21961.0)
6920	(-0.5416367030278815, 0.00010901094511128238, 21961.0)
6940	(-0.5414689493311524, 0.00010882716567326564, 21961.0)
6960	(-0.5413014960050928, 0.00010864410791375404, 21961.0)
6980	(-0.5411343418502376, 0.00010846176761888415, 21961.0)
7000	(-0.5409674856742178, 0.00010828014060708292, 21961.0)
7020	(-0.5408009262917058, 0.00010809922272881858, 21961.0)
7040	(-0.5406346625872999, 0.00010791896900901806, 21961.0)
7060	(-0.5404686934031, 0.00010773940743529013, 21961.0)
7080	(-0.5403030174974733, 0.00010756059278247357, 21961.0)
7100	(-0.5401376337127226, 0.00010738247097569225, 21961.0)
7120	(-0.5399725408979246, 0.00010720503802085856, 21961.0)
7140	(-0.5398077379088799, 0.00010702828995290829, 21961.0)
7160	(-0.5396432236080607, 0.00010685222283749481, 21961.0)
7180	(-0.5394789968645586, 0.00010667683277044847, 21961.0)
7200	(-0.5393150570911547, 0.00010650176690514253, 21961.0)
7220	(-0.5391514030050627, 0.00010632747744793607, 21961.0)
7240	(-0.5389880333092737, 0.0001061539740745831, 21961.0)
7260	(-0.5388249468455739, 0.00010598116701583862, 21961.0)
7280	(-0.5386621423811843, 0.00010580910513447953, 21961.0)
7300	(-0.5384996188238083, 0.00010563769752523852, 21961.0)
7320	(-0.5383373750874111, 0.00010546694049343554, 21961.0)
7340	(-0.5381754102279888, 0.00010529674206553532, 21961.0)
7360	(-0.5380137230695039, 0.0001051272534566007, 21961.0)
7380	(-0.5378523125103848, 0.00010495842663566752, 21961.0)
7400	(-0.5376911774891256, 0.0001047902359186681, 21961.0)
7420	(-0.5375303169502232, 0.00010462267776383323, 21961.0)
7440	(-0.5373697298441272, 0.00010445574865864731, 21961.0)
7460	(-0.5372094151271906, 0.00010428944511988094, 21961.0)
7480	(-0.5370493717616213, 0.00010412376369268414, 21961.0)
7500	(-0.5368895987286411, 0.00010395869235654445, 21961.0)
7520	(-0.5367300955261293, 0.00010379389521696157, 21961.0)
7540	(-0.5365708610245085, 0.00010362978087104878, 21961.0)
7560	(-0.5364118937785822, 0.00010346655514054684, 21961.0)
7580	(-0.5362531927791496, 0.00010330393464993017, 21961.0)
7600	(-0.536094757022613, 0.00010314191609098182, 21961.0)
7620	(-0.5359365855109424, 0.00010298049617590034, 21961.0)
7640	(-0.5357786772516387, 0.00010281967163797593, 21961.0)
7660	(-0.5356210320767655, 0.00010265890579791557, 21961.0)
7680	(-0.5354636501795283, 0.00010249796354262677, 21961.0)
7700	(-0.5353065285752266, 0.00010233891498364946, 21961.0)
7720	(-0.535149666364955, 0.00010218040215134148, 21961.0)
7740	(-0.5349930625493025, 0.00010202249083291407, 21961.0)
7760	(-0.5348367161294052, 0.00010186518100214357, 21961.0)
7780	(-0.5346806261505473, 0.00010170844421837519, 21961.0)
7800	(-0.534524791663269, 0.00010155227737271412, 21961.0)
7820	(-0.5343692118152942, 0.00010139661743525805, 21961.0)
7840	(-0.5342138856667116, 0.0001012415218202141, 21961.0)
7860	(-0.5340588121913664, 0.00010108704706284299, 21961.0)
7880	(-0.5339039904604654, 0.0001009331300158505, 21961.0)
7900	(-0.5337494195502921, 0.00010077976767460983, 21961.0)
7920	(-0.5335950985421699, 0.00010062695705592657, 21961.0)
7940	(-0.5334410265224265, 0.00010047469519762806, 21961.0)
7960	(-0.533287202582358, 0.0001003229791584421, 21961.0)
7980	(-0.533133625894982, 0.00010017175592653944, 21961.0)
8000	(-0.5329802957912676, 0.00010002092273161912, 21961.0)
8020	(-0.5328272110696874, 9.987082723650498e-5, 21961.0)
8040	(-0.5326743708410472, 9.97212660092897e-5, 21961.0)
8060	(-0.5325217742209446, 9.957223621188515e-5, 21961.0)
8080	(-0.5323694203297348, 9.942373502666131e-5, 21961.0)
8100	(-0.5322173082924959, 9.927575965603368e-5, 21961.0)
8120	(-0.5320654384324026, 9.912752829193322e-5, 21965.0)
8140	(-0.5319138088247004, 9.8980508452065e-5, 21965.0)
8160	(-0.5317624184758193, 9.883409271247214e-5, 21965.0)
8180	(-0.5316112665292961, 9.868819185802357e-5, 21965.0)
8200	(-0.5314603522085343, 9.854275400876584e-5, 21965.0)
8220	(-0.5313096748706133, 9.839769211520739e-5, 21965.0)
8240	(-0.5311592336727861, 9.825313691665691e-5, 21965.0)
8260	(-0.531009027496973, 9.810926853817612e-5, 21965.0)
8280	(-0.5308590555091665, 9.796590173786365e-5, 21965.0)
8300	(-0.5307093168797589, 9.782303390745895e-5, 21965.0)
8320	(-0.5305598108034214, 9.768064944745877e-5, 21965.0)
8340	(-0.530410536552682, 9.753869773770191e-5, 21965.0)
8360	(-0.5302614931984985, 9.739731075112271e-5, 21965.0)
8380	(-0.5301126799285482, 9.725641248673196e-5, 21965.0)
8400	(-0.5299640959347566, 9.711600042535944e-5, 21965.0)
8420	(-0.5298157404132677, 9.697607206523051e-5, 21965.0)
8440	(-0.5296676126164053, 9.683659093043033e-5, 21965.0)
8460	(-0.5295197117931438, 9.669755945024401e-5, 21965.0)
8480	(-0.5293720370555169, 9.655906741384333e-5, 21965.0)
8500	(-0.5292245876162522, 9.642104924205106e-5, 21965.0)
8520	(-0.5290773626921534, 9.628350251656913e-5, 21965.0)
8540	(-0.5289303615040715, 9.614642483609474e-5, 21965.0)
8560	(-0.5287835832768777, 9.600981381495833e-5, 21965.0)
8580	(-0.5286370272394354, 9.587366708430245e-5, 21965.0)
8600	(-0.5284906926245738, 9.573798229042853e-5, 21965.0)
8620	(-0.5283445788831749, 9.560261698688192e-5, 21965.0)
8640	(-0.5281986851529056, 9.546777633478984e-5, 21965.0)
8660	(-0.5280530119548243, 9.533255518070837e-5, 21965.0)
8680	(-0.527907557737721, 9.519830984977243e-5, 21965.0)
8700	(-0.5277623211562253, 9.506490602920585e-5, 21965.0)
8720	(-0.5276173014663005, 9.493195042087091e-5, 21965.0)
8740	(-0.5274724980366186, 9.479936946037009e-5, 21965.0)
8760	(-0.5273279101029963, 9.466725034345378e-5, 21965.0)
8780	(-0.5271835368523136, 9.45356253514206e-5, 21965.0)
8800	(-0.5270393775555097, 9.4404439677687e-5, 21965.0)
8820	(-0.5268954314872089, 9.427369113326294e-5, 21965.0)
8840	(-0.5267516979256949, 9.414337754414374e-5, 21965.0)
8860	(-0.5266081761528866, 9.401349675067098e-5, 21965.0)
8880	(-0.5264648654543149, 9.388404660660148e-5, 21965.0)
8900	(-0.5263217651190975, 9.375502498079494e-5, 21965.0)
8920	(-0.5261788744399157, 9.362642975526455e-5, 21965.0)
8940	(-0.5260361927129913, 9.349825882620972e-5, 21965.0)
8960	(-0.525893719238062, 9.337051010366662e-5, 21965.0)
8980	(-0.5257514533183596, 9.324318151101295e-5, 21965.0)
9000	(-0.5256093942605865, 9.31162709849091e-5, 21965.0)
9020	(-0.5254675413748927, 9.298977647596682e-5, 21965.0)
9040	(-0.5253258939748531, 9.286369594796264e-5, 21965.0)
9060	(-0.5251844513774457, 9.27380273773417e-5, 21965.0)
9080	(-0.5250432129760818, 9.261272084763226e-5, 21965.0)
9100	(-0.5249021781305354, 9.248779860705405e-5, 21965.0)
9120	(-0.5247613460580843, 9.236335431454166e-5, 21965.0)
9140	(-0.5246207160891024, 9.22393140128887e-5, 21965.0)
9160	(-0.5244802875572576, 9.211567574273528e-5, 21965.0)
9180	(-0.5243400597994896, 9.199243755783287e-5, 21965.0)
9200	(-0.5242000321559892, 9.186959752411025e-5, 21965.0)
9220	(-0.5240602041195426, 9.174705570598595e-5, 21965.0)
9240	(-0.5239205749424379, 9.162497009393868e-5, 21965.0)
9260	(-0.5237811439221196, 9.150331126912283e-5, 21965.0)
9280	(-0.523641910411554, 9.138204299463845e-5, 21965.0)
9300	(-0.5235028737668542, 9.126116339771111e-5, 21965.0)
9320	(-0.5233640333472622, 9.114067061628696e-5, 21965.0)
9340	(-0.5232253885151268, 9.102056280101214e-5, 21965.0)
9360	(-0.5230869386358856, 9.090083811313093e-5, 21965.0)
9380	(-0.5229486831464469, 9.07814498076513e-5, 21965.0)
9400	(-0.5228106214333824, 9.066243111344013e-5, 21965.0)
9420	(-0.5226727527876005, 9.054384504452011e-5, 21965.0)
9440	(-0.5225350765866933, 9.042563486672583e-5, 21965.0)
9460	(-0.5223975922112434, 9.030779879927549e-5, 21965.0)
9480	(-0.5222602990448062, 9.019033507168873e-5, 21965.0)
9500	(-0.5221231964738899, 9.007324192540193e-5, 21965.0)
9520	(-0.5219862838879378, 8.995651761224772e-5, 21965.0)
9540	(-0.5218495606793093, 8.984016039497613e-5, 21965.0)
9560	(-0.5217130262432618, 8.972416854748434e-5, 21965.0)
9580	(-0.5215766799779323, 8.960854035395177e-5, 21965.0)
9600	(-0.5214405212843198, 8.949327410943421e-5, 21965.0)
9620	(-0.5213045495662673, 8.937836811921759e-5, 21965.0)
9640	(-0.521168764230443, 8.926382069970407e-5, 21965.0)
9660	(-0.5210331646863245, 8.914963017681656e-5, 21965.0)
9680	(-0.5208977503461799, 8.903579488746869e-5, 21965.0)
9700	(-0.5207625206250512, 8.892231317818792e-5, 21965.0)
9720	(-0.5206274749407368, 8.880918340614744e-5, 21965.0)
9740	(-0.5204926127137742, 8.86964039383731e-5, 21965.0)
9760	(-0.520357933367424, 8.858397315160707e-5, 21965.0)
9780	(-0.5202234363276518, 8.84718894329746e-5, 21965.0)
9800	(-0.5200891210231128, 8.836015117889843e-5, 21965.0)
9820	(-0.5199549868851343, 8.824875679598445e-5, 21965.0)
9840	(-0.5198210333477001, 8.813770470008176e-5, 21965.0)
9860	(-0.5196872598474336, 8.802699331702239e-5, 21965.0)
9880	(-0.5195536658235818, 8.791662108190008e-5, 21965.0)
9900	(-0.5194202507179999, 8.780658643900629e-5, 21965.0)
9920	(-0.5192870139751344, 8.769688784271608e-5, 21965.0)
9940	(-0.5191539550420079, 8.758752375618201e-5, 21965.0)
9960	(-0.5190210733682041, 8.747849265126962e-5, 21965.0)
9980	(-0.5188883684058504, 8.736979301053985e-5, 21965.0)
10000	(-0.5187558396981302, 8.726136503055188e-5, 21965.0)
10020	(-0.5186234867021176, 8.715326555371846e-5, 21965.0)
10040	(-0.5184913087889278, 8.704555134739334e-5, 21965.0)
10060	(-0.5183593054207191, 8.693816261899642e-5, 21965.0)
10080	(-0.5182274760621187, 8.68310978946807e-5, 21965.0)
10100	(-0.5180958201802078, 8.672435570981121e-5, 21965.0)
10120	(-0.5179643372445079, 8.661793460751066e-5, 21965.0)
10140	(-0.5178330267269646, 8.651183314042282e-5, 21965.0)
10160	(-0.5177018881643549, 8.640600873754098e-5, 21965.0)
10180	(-0.5175709210221576, 8.630050851862567e-5, 21965.0)
10200	(-0.5174401247291939, 8.619535679346504e-5, 21965.0)
10220	(-0.5173094987923879, 8.609050224096066e-5, 21965.0)
10240	(-0.5171790427176274, 8.598594568430029e-5, 21965.0)
10260	(-0.5170487559439908, 8.588173130632649e-5, 21965.0)
10280	(-0.5169186379599906, 8.577782667051107e-5, 21965.0)
10300	(-0.5167886882564515, 8.567423039557053e-5, 21965.0)
10320	(-0.5166589063264972, 8.55709411080576e-5, 21965.0)
10340	(-0.5165292916766265, 8.54679501293477e-5, 21958.0)
10360	(-0.5163998437939333, 8.536527039552506e-5, 21958.0)
10380	(-0.5162705621782225, 8.526289366528043e-5, 21958.0)
10400	(-0.5161414463316746, 8.516081851093342e-5, 21958.0)
10420	(-0.5160124957587017, 8.505904359869638e-5, 21958.0)
10440	(-0.515883709965935, 8.495756760229605e-5, 21958.0)
10460	(-0.5157550884622119, 8.485638920312706e-5, 21958.0)
10480	(-0.5156266307798185, 8.475549306443689e-5, 21958.0)
10500	(-0.5154983366595006, 8.465474175358361e-5, 21958.0)
10520	(-0.5153702053715297, 8.45544458487896e-5, 21958.0)
10540	(-0.5152422364304274, 8.44544443294402e-5, 21958.0)
10560	(-0.5151144293558649, 8.435473393045202e-5, 21958.0)
10580	(-0.514986783669643, 8.425531337820339e-5, 21958.0)
10600	(-0.5148592988956812, 8.415618140561659e-5, 21958.0)
10620	(-0.5147319745600047, 8.405733675319038e-5, 21958.0)
10640	(-0.5146048101907321, 8.395877816908014e-5, 21958.0)
10660	(-0.5144778053180642, 8.386050440749181e-5, 21958.0)
10680	(-0.5143509594742709, 8.376251423074075e-5, 21958.0)
10700	(-0.5142242721936805, 8.366480640735246e-5, 21958.0)
10720	(-0.514097743012667, 8.356737971338836e-5, 21958.0)
10740	(-0.513971371469639, 8.347023293135248e-5, 21958.0)
10760	(-0.5138451571050275, 8.337336485115103e-5, 21958.0)
10780	(-0.513719099461275, 8.327677426899864e-5, 21958.0)
10800	(-0.5135931980828237, 8.31804599880845e-5, 21958.0)
10820	(-0.513467452724359, 8.308428320563212e-5, 21958.0)
10840	(-0.5133418628977432, 8.298840446753637e-5, 21958.0)
10860	(-0.5132164279833328, 8.289291081619007e-5, 21958.0)
10880	(-0.5130911475334439, 8.279768875334077e-5, 21958.0)
10900	(-0.5129660211023372, 8.270273711465079e-5, 21958.0)
10920	(-0.512841048246206, 8.260805474316019e-5, 21958.0)
10940	(-0.5127162285231652, 8.251364048804524e-5, 21958.0)
10960	(-0.5125915614932414, 8.241949320462407e-5, 21958.0)
10980	(-0.5124670467183605, 8.232561175531669e-5, 21958.0)
11000	(-0.5123426837623389, 8.223199500803585e-5, 21958.0)
11020	(-0.5122184721908721, 8.213864183714689e-5, 21958.0)
11040	(-0.5120944115715238, 8.204555112362016e-5, 21958.0)
11060	(-0.5119705014737156, 8.195272175444945e-5, 21958.0)
11080	(-0.5118467414687173, 8.186015262236365e-5, 21958.0)
11100	(-0.5117231311296362, 8.176784262656639e-5, 21958.0)
11120	(-0.5115996700314066, 8.167579067215418e-5, 21958.0)
11140	(-0.51147635775078, 8.158399567034208e-5, 21958.0)
11160	(-0.511353194047209, 8.14923368383534e-5, 21958.0)
11180	(-0.5112301783435468, 8.14010369995924e-5, 21958.0)
11200	(-0.5111073101986511, 8.131000628906521e-5, 21958.0)
11220	(-0.5109845891964381, 8.121922823730754e-5, 21958.0)
11240	(-0.5108620149225918, 8.11287017845908e-5, 21958.0)
11260	(-0.5107395869645532, 8.103842587755693e-5, 21958.0)
11280	(-0.5106173049115126, 8.094839946760668e-5, 21958.0)
11300	(-0.510495168354398, 8.08586215125949e-5, 21958.0)
11320	(-0.5103731768858675, 8.076909097529216e-5, 21958.0)
11340	(-0.5102513301002979, 8.067980682493315e-5, 21958.0)
11360	(-0.5101296275937771, 8.059076803538411e-5, 21958.0)
11380	(-0.5100080689640933, 8.050197358691184e-5, 21958.0)
11400	(-0.5098866538107271, 8.041342246442414e-5, 21958.0)
11420	(-0.5097653820777172, 8.032488653503002e-5, 21958.0)
11440	(-0.5096442531381797, 8.023674404457931e-5, 21958.0)
11460	(-0.509523266482155, 8.014891768228993e-5, 21958.0)
11480	(-0.5094024217157915, 8.006133064637424e-5, 21958.0)
11500	(-0.5092817184468846, 7.997398194891365e-5, 21958.0)
11520	(-0.5091611562848667, 7.988687060746762e-5, 21958.0)
11540	(-0.5090407348407987, 7.979999564471038e-5, 21958.0)
11560	(-0.5089204537273603, 7.971335608931854e-5, 21958.0)
11580	(-0.5088003125588416, 7.962695097465136e-5, 21958.0)
11600	(-0.5086803109511341, 7.954077933971161e-5, 21958.0)
11620	(-0.508560448521721, 7.945484022900322e-5, 21958.0)
11640	(-0.5084407248896691, 7.936913269209415e-5, 21958.0)
11660	(-0.5083211397180084, 7.928362767826792e-5, 21958.0)
11680	(-0.5082016926006147, 7.919837113283681e-5, 21958.0)
11700	(-0.5080823831471087, 7.911335271812741e-5, 21958.0)
11720	(-0.5079632109827995, 7.902856213021562e-5, 21958.0)
11740	(-0.5078441759940433, 7.894382632590818e-5, 21958.0)
11760	(-0.5077252777349746, 7.885936571108187e-5, 21958.0)
11780	(-0.5076065162159041, 7.877487779006966e-5, 21958.0)
11800	(-0.5074878908861946, 7.869073471614122e-5, 21958.0)
11820	(-0.5073694009989002, 7.860706686492304e-5, 21958.0)
11840	(-0.5072510461883886, 7.852362140393998e-5, 21958.0)
11860	(-0.5071328260905135, 7.844039744112057e-5, 21958.0)
11880	(-0.5070147403426059, 7.835739408943606e-5, 21958.0)
11900	(-0.5068967885834661, 7.827461046660982e-5, 21958.0)
11920	(-0.5067789704533558, 7.8192045695195e-5, 21958.0)
11940	(-0.5066612855939906, 7.810969890213645e-5, 21958.0)
11960	(-0.5065437336666447, 7.802755719527701e-5, 21958.0)
11980	(-0.5064263143099828, 7.794563567204351e-5, 21958.0)
12000	(-0.5063090271579861, 7.786393753342192e-5, 21958.0)
12020	(-0.5061918718581112, 7.77824539249134e-5, 21958.0)
12040	(-0.5060748480592321, 7.770118399488802e-5, 21958.0)
12060	(-0.5059579554116345, 7.762012689502386e-5, 21958.0)
12080	(-0.5058411935670085, 7.75392817813426e-5, 21958.0)
12100	(-0.5057245621784427, 7.745864781340194e-5, 21958.0)
12120	(-0.5056080609004164, 7.737822415525767e-5, 21958.0)
12140	(-0.5054916894141671, 7.72979931191824e-5, 21958.0)
12160	(-0.5053754473573806, 7.72179837199858e-5, 21958.0)
12180	(-0.5052593343828307, 7.713818602397149e-5, 21958.0)
12200	(-0.5051433501888999, 7.705856981410933e-5, 21958.0)
12220	(-0.5050274944559234, 7.697914716058918e-5, 21958.0)
12240	(-0.5049117669107782, 7.689988721583157e-5, 21958.0)
12260	(-0.5047961683895001, 7.682005291240838e-5, 21958.0)
12280	(-0.5046806972688851, 7.674127861455314e-5, 21958.0)
12300	(-0.5045653532155973, 7.66627073003638e-5, 21958.0)
12320	(-0.5044501359674293, 7.658429177109089e-5, 21958.0)
12340	(-0.5043350453024529, 7.650600531828478e-5, 21958.0)
12360	(-0.504220080714154, 7.642803720866953e-5, 21958.0)
12380	(-0.5041052418744476, 7.635026892354084e-5, 21958.0)
12400	(-0.5039905284565473, 7.627269968114877e-5, 21958.0)
12420	(-0.5038759401349578, 7.619532870458761e-5, 21958.0)
12440	(-0.5037614765854679, 7.611815522091343e-5, 21958.0)
12460	(-0.5036471374851447, 7.604117846055665e-5, 21958.0)
12480	(-0.5035329225123263, 7.596439765850649e-5, 21958.0)
12500	(-0.5034188313466155, 7.588781205342831e-5, 21958.0)
12520	(-0.5033048637037322, 7.581139769780937e-5, 21958.0)
12540	(-0.5031910192736601, 7.573517178617001e-5, 21958.0)
12560	(-0.5030772976971966, 7.565916712182887e-5, 21958.0)
12580	(-0.502963698658936, 7.558335464917966e-5, 21958.0)
12600	(-0.5028502218447045, 7.550773362642341e-5, 21958.0)
12620	(-0.502736866941555, 7.543230331486485e-5, 21958.0)
12640	(-0.5026236336377587, 7.535706298061476e-5, 21958.0)
12660	(-0.5025105216228011, 7.528201189267202e-5, 21958.0)
12680	(-0.5023975305873742, 7.520714932396097e-5, 21958.0)
12700	(-0.5022846602233709, 7.513247455148228e-5, 21958.0)
12720	(-0.502171910223879, 7.505798685528131e-5, 21958.0)
12740	(-0.502059280344016, 7.498364501109431e-5, 21958.0)
12760	(-0.5019467702529394, 7.490950631869148e-5, 21958.0)
12780	(-0.5018343796128037, 7.483557552109076e-5, 21958.0)
12800	(-0.5017221081214129, 7.476182895866176e-5, 21958.0)
12820	(-0.5016099554777359, 7.468826592945126e-5, 21958.0)
12840	(-0.5014979213819002, 7.461488573530692e-5, 21958.0)
12860	(-0.5013860055351865, 7.45416876812888e-5, 21958.0)
12880	(-0.5012742076400225, 7.446867107626358e-5, 21958.0)
12900	(-0.5011625273999772, 7.439583523224176e-5, 21958.0)
12920	(-0.5010509645197557, 7.432317946460236e-5, 21958.0)
12940	(-0.5009395187051922, 7.425070309276115e-5, 21958.0)
12960	(-0.5008281896632458, 7.41784054384723e-5, 21958.0)
12980	(-0.5007169771019943, 7.410628582768009e-5, 21958.0)
13000	(-0.5006058807306278, 7.403434358948618e-5, 21958.0)
13020	(-0.5004949002594449, 7.396257805593012e-5, 21958.0)
13040	(-0.5003840353998454, 7.389098856273188e-5, 21958.0)
13060	(-0.5002732858643261, 7.38195744487765e-5, 21958.0)
13080	(-0.5001626513664746, 7.374833505596869e-5, 21958.0)
13100	(-0.5000521316209642, 7.367726972997537e-5, 21958.0)
13120	(-0.4999417264621771, 7.360629872433827e-5, 21958.0)
13140	(-0.4998314355585014, 7.353553276780934e-5, 21958.0)
13160	(-0.4997212585582313, 7.34649853373592e-5, 21958.0)
13180	(-0.4996111951803251, 7.339460938937911e-5, 21958.0)
13200	(-0.49950124514480027, 7.33244042849816e-5, 21958.0)
13220	(-0.49939140817272787, 7.325436938861249e-5, 21958.0)
13240	(-0.49928168398622813, 7.318450406731287e-5, 21958.0)
13260	(-0.4991720723722926, 7.311476511303561e-5, 21958.0)
13280	(-0.4990625730118223, 7.304522335604304e-5, 21958.0)
13300	(-0.49895318560866947, 7.297586355799837e-5, 21958.0)
13320	(-0.49884390988909816, 7.290667083498821e-5, 21958.0)
13340	(-0.49873474558039554, 7.28376445695461e-5, 21958.0)
13360	(-0.4986256924108672, 7.276878414711117e-5, 21958.0)
13380	(-0.49851675010983265, 7.270008895566002e-5, 21958.0)
13400	(-0.49840791840761944, 7.263155838689441e-5, 21958.0)
13420	(-0.498299197035559, 7.256319183479884e-5, 21958.0)
13440	(-0.4981905857259813, 7.249498869671712e-5, 21958.0)
13460	(-0.49808208423128997, 7.242693563550747e-5, 21958.0)
13480	(-0.49797369234302896, 7.235900658005984e-5, 21958.0)
13500	(-0.49786540972017146, 7.229129009510411e-5, 21958.0)
13520	(-0.4977572360989924, 7.222373464259614e-5, 21958.0)
13540	(-0.4976491712167422, 7.215633963356082e-5, 21958.0)
13560	(-0.4975412148116408, 7.208910448247005e-5, 21958.0)
13580	(-0.497433366622874, 7.202202860620699e-5, 21958.0)
13600	(-0.4973256263905881, 7.19551114246613e-5, 21958.0)
13620	(-0.4972179938558857, 7.188835236021232e-5, 21958.0)
13640	(-0.49711046876082116, 7.182175083817598e-5, 21958.0)
13660	(-0.4970030509124272, 7.175526351031367e-5, 21958.0)
13680	(-0.49689574056797514, 7.168858962170085e-5, 21958.0)
13700	(-0.4967885368969313, 7.162245594563488e-5, 21958.0)
13720	(-0.4966814396450988, 7.155647754801798e-5, 21958.0)
13740	(-0.4965744485592104, 7.149065386717728e-5, 21958.0)
13760	(-0.4964675633869229, 7.142498434487125e-5, 21958.0)
13780	(-0.49636078387681387, 7.135946842469669e-5, 21958.0)
13800	(-0.4962541097783767, 7.129410555335188e-5, 21958.0)
13820	(-0.4961475408420161, 7.122889518008222e-5, 21958.0)
13840	(-0.49604107681904414, 7.116383675664508e-5, 21958.0)
13860	(-0.4959347174616757, 7.109892973731173e-5, 21958.0)
13880	(-0.49582846252302426, 7.103417357912901e-5, 21958.0)
13900	(-0.4957223117570977, 7.096956774140182e-5, 21958.0)
13920	(-0.495616265392061, 7.090479522760127e-5, 21958.0)
13940	(-0.49551032299032605, 7.084030120441631e-5, 21958.0)
13960	(-0.49540448403000487, 7.077614214179195e-5, 21958.0)
13980	(-0.4952987482686277, 7.071213127116454e-5, 21958.0)
14000	(-0.4951931154645984, 7.064826806434744e-5, 21958.0)
14020	(-0.49508758537719044, 7.05845519955346e-5, 21958.0)
14040	(-0.4949821577665432, 7.052098254119087e-5, 21958.0)
14060	(-0.4948768323936572, 7.045755918053668e-5, 21958.0)
14080	(-0.4947716090203907, 7.039428139491847e-5, 21958.0)
14100	(-0.4946664874094549, 7.033114866847906e-5, 21958.0)
14120	(-0.49456146732441086, 7.02681604872681e-5, 21958.0)
14140	(-0.4944565485296651, 7.020531633991227e-5, 21958.0)
14160	(-0.49435173079046535, 7.014261571758005e-5, 21958.0)
14180	(-0.49424701387289693, 7.00800581136863e-5, 21958.0)
14200	(-0.4941423975438791, 7.001764302370818e-5, 21958.0)
14220	(-0.4940378815711604, 6.995536994604146e-5, 21958.0)
14240	(-0.49393346572331576, 6.989323838066464e-5, 21958.0)
14260	(-0.49382914985690396, 6.983118947825438e-5, 21958.0)
14280	(-0.4937249338589911, 6.976920285024855e-5, 21958.0)
14300	(-0.4936208172975652, 6.97074921694471e-5, 21958.0)
14320	(-0.493516799944459, 6.964592103017216e-5, 21958.0)
14340	(-0.4934128815723126, 6.958448894387255e-5, 21958.0)
14360	(-0.4933090622287254, 6.952301182199452e-5, 21958.0)
14380	(-0.49320534168882785, 6.946167215035282e-5, 21958.0)
14400	(-0.4931017194537888, 6.94006534779001e-5, 21958.0)
14420	(-0.49299819529942823, 6.93397719344085e-5, 21958.0)
14440	(-0.492894769002355, 6.927902704243033e-5, 21958.0)
14460	(-0.492791440339963, 6.921841832671315e-5, 21958.0)
14480	(-0.49268820909042765, 6.915794531416439e-5, 21958.0)
14500	(-0.4925850750327022, 6.909760753381552e-5, 21958.0)
14520	(-0.4924820379465145, 6.903740451674947e-5, 21958.0)
14540	(-0.4923790976123627, 6.897733579658546e-5, 21958.0)
14560	(-0.49227625381151274, 6.891740090836498e-5, 21958.0)
14580	(-0.49217350632599377, 6.885759939000374e-5, 21958.0)
14600	(-0.4920708549385957, 6.879793078076825e-5, 21958.0)
14620	(-0.4919682994328647, 6.873839462272808e-5, 21958.0)
14640	(-0.49186583959310065, 6.867899045934366e-5, 21958.0)
14660	(-0.4917634752043532, 6.861971783658393e-5, 21958.0)
14680	(-0.4916612060524187, 6.856057630214647e-5, 21958.0)
14700	(-0.491559031923836, 6.850156540631495e-5, 21958.0)
14720	(-0.49145695260588423, 6.844268470062074e-5, 21958.0)
14740	(-0.49135496788657873, 6.838393373914697e-5, 21958.0)
14760	(-0.4912530775546678, 6.832531207782293e-5, 21958.0)
14780	(-0.4911512813996295, 6.826681927453706e-5, 21958.0)
14800	(-0.49104957921166825, 6.820845488921292e-5, 21958.0)
14820	(-0.49094797078171165, 6.815021848369887e-5, 21958.0)
14840	(-0.49084645590140724, 6.809210962173229e-5, 21958.0)
14860	(-0.49074503436311895, 6.803412786923882e-5, 21958.0)
14880	(-0.49064370595992457, 6.797627279358907e-5, 21958.0)
14900	(-0.4905424704856116, 6.791854396471712e-5, 21958.0)
14920	(-0.49044132773467486, 6.786094095396753e-5, 21958.0)
14940	(-0.49034027750231285, 6.780346333480417e-5, 21958.0)
14960	(-0.49023931958442474, 6.774611068258827e-5, 21958.0)
14980	(-0.4901384537776075, 6.768888257431895e-5, 21958.0)
15000	(-0.49003767987915237, 6.763177858919327e-5, 21958.0)
15020	(-0.4899369976870418, 6.757479830816065e-5, 21958.0)
15040	(-0.48983640699994674, 6.751794131384965e-5, 21958.0)
15060	(-0.4897359076403438, 6.746119166995168e-5, 21958.0)
15080	(-0.4896354994778152, 6.74045177923026e-5, 21958.0)
15100	(-0.48953518222071435, 6.734802796084098e-5, 21958.0)
15120	(-0.489434955670432, 6.729165976720466e-5, 21958.0)
15140	(-0.4893348196290322, 6.723541280310838e-5, 21958.0)
15160	(-0.489234773899249, 6.71792866622518e-5, 21958.0)
15180	(-0.48913481828448385, 6.71232809399482e-5, 21958.0)
15200	(-0.48903495258880225, 6.706739523338655e-5, 21958.0)
15220	(-0.48893517661693087, 6.70116291416328e-5, 21958.0)
15240	(-0.488835490174255, 6.695598226518382e-5, 21958.0)
15260	(-0.4887358930668154, 6.690045420641585e-5, 21958.0)
15280	(-0.48863638510130525, 6.684504456969776e-5, 21958.0)
15300	(-0.4885369660850676, 6.678975296068375e-5, 21958.0)
15320	(-0.48843763582609223, 6.673457898706036e-5, 21958.0)
15340	(-0.48833839413301305, 6.667952225810016e-5, 21958.0)
15360	(-0.4882392408151052, 6.66245823847002e-5, 21958.0)
15380	(-0.488140175682282, 6.656975897971898e-5, 21958.0)
15400	(-0.48804119854509254, 6.651505165734345e-5, 21958.0)
15420	(-0.4879423092147187, 6.646046003357513e-5, 21958.0)
15440	(-0.48784350750297234, 6.640598372619398e-5, 21958.0)
15460	(-0.4877447932222925, 6.635162235453577e-5, 21958.0)
15480	(-0.48764616618574336, 6.629737553926924e-5, 21958.0)
15500	(-0.4875476262070101, 6.624324290344212e-5, 21958.0)
15520	(-0.48744917310039787, 6.618922407076571e-5, 21958.0)
15540	(-0.4873508066808276, 6.613531866755652e-5, 21958.0)
15560	(-0.4872525270945156, 6.608130396253288e-5, 21958.0)
15580	(-0.48715433432426253, 6.60272898291337e-5, 21958.0)
15600	(-0.4870562276913536, 6.597372115595398e-5, 21958.0)
15620	(-0.4869582070131371, 6.59202644393145e-5, 21958.0)
15640	(-0.48686027210756466, 6.58669193128671e-5, 21958.0)
15660	(-0.4867624227931885, 6.581368541205455e-5, 21958.0)
15680	(-0.486664658889159, 6.576056237358893e-5, 21958.0)
15700	(-0.48656698021522204, 6.57075498359381e-5, 21958.0)
15720	(-0.4864693865917166, 6.5654647438916e-5, 21958.0)
15740	(-0.4863718778395719, 6.560185482413182e-5, 21958.0)
15760	(-0.4862744537803051, 6.55491716345056e-5, 21958.0)
15780	(-0.4861771142360188, 6.549659751445606e-5, 21958.0)
15800	(-0.4860798590293983, 6.544413211008826e-5, 21958.0)
15820	(-0.4859826879837094, 6.539177506889594e-5, 21958.0)
15840	(-0.48588560092279565, 6.53395260398746e-5, 21958.0)
15860	(-0.4857885976710759, 6.528738467355984e-5, 21958.0)
15880	(-0.4856916780535424, 6.523535062165474e-5, 21958.0)
15900	(-0.4855948418957572, 6.518342353803977e-5, 21958.0)
15920	(-0.48549808902385094, 6.513160307720442e-5, 21958.0)
15940	(-0.48540141926451974, 6.507988889566814e-5, 21958.0)
15960	(-0.4853048324450227, 6.502828065134602e-5, 21958.0)
15980	(-0.48520832839318023, 6.497677800317615e-5, 21958.0)
16000	(-0.4851119069373706, 6.49253806122044e-5, 21958.0)
16020	(-0.48501556790652883, 6.487408814009031e-5, 21958.0)
16040	(-0.4849193111301431, 6.482290025071537e-5, 21958.0)
16060	(-0.4848231364382531, 6.477181660887571e-5, 21958.0)
16080	(-0.48472704366144775, 6.472083688080632e-5, 21958.0)
16100	(-0.4846310326308625, 6.466996073436895e-5, 21958.0)
16120	(-0.4845351031781774, 6.461918783849232e-5, 21958.0)
16140	(-0.4844392551356141, 6.456851786403298e-5, 21958.0)
16160	(-0.4843434883359347, 6.45179504824301e-5, 21958.0)
16180	(-0.48424780261243844, 6.446748536723961e-5, 21958.0)
16200	(-0.48415219779896007, 6.441712219282617e-5, 21958.0)
16220	(-0.4840566737298672, 6.436686063529919e-5, 21958.0)
16240	(-0.48396123024005827, 6.431670037195261e-5, 21958.0)
16260	(-0.48386586716496016, 6.426664108145291e-5, 21958.0)
16280	(-0.4837705843405263, 6.42166824436903e-5, 21958.0)
16300	(-0.483675381603234, 6.416682414007893e-5, 21958.0)
16320	(-0.4835802587900826, 6.411706585322115e-5, 21958.0)
16340	(-0.48348521573859127, 6.406740726702048e-5, 21958.0)
16360	(-0.48339025228679666, 6.401784806675747e-5, 21958.0)
16380	(-0.4832953683322354, 6.396834817055862e-5, 21958.0)
16400	(-0.4832005639895685, 6.3918761203738e-5, 21958.0)
16420	(-0.48310583876436813, 6.38694978635478e-5, 21958.0)
16440	(-0.4830111924967157, 6.382033266592583e-5, 21958.0)
16460	(-0.48291662503596877, 6.377125938866366e-5, 21958.0)
16480	(-0.4828221363777639, 6.37221794083139e-5, 21958.0)
16500	(-0.48272772621667115, 6.367329579358208e-5, 21958.0)
16520	(-0.48263339437789143, 6.362452048997368e-5, 21958.0)
16540	(-0.48253914070401654, 6.357584180214661e-5, 21958.0)
16560	(-0.4824449650381349, 6.352725942796444e-5, 21958.0)
16580	(-0.48235086722382914, 6.347877306671468e-5, 21958.0)
16600	(-0.4822568471051747, 6.34303824185852e-5, 21958.0)
16620	(-0.48216290452673694, 6.33820871854515e-5, 21958.0)
16640	(-0.4820690393335697, 6.333388707009111e-5, 21958.0)
16660	(-0.4819752514910331, 6.32857009199356e-5, 21958.0)
16680	(-0.4818815409496539, 6.323753875706863e-5, 21958.0)
16700	(-0.48178790733386184, 6.318962067961408e-5, 21958.0)
16720	(-0.48169435049063736, 6.314179654765178e-5, 21958.0)
16740	(-0.4816008702674399, 6.309406606960603e-5, 21958.0)
16760	(-0.48150746651220455, 6.30464289560816e-5, 21958.0)
16780	(-0.48141413907334074, 6.299888491829101e-5, 21958.0)
16800	(-0.4813208877997299, 6.295143366899203e-5, 21958.0)
16820	(-0.4812277125407243, 6.29040749216265e-5, 21958.0)
16840	(-0.48113461314614386, 6.285680839140794e-5, 21958.0)
16860	(-0.48104158946627523, 6.280963379438541e-5, 21958.0)
16880	(-0.48094864135186954, 6.276255084770661e-5, 21958.0)
16900	(-0.4808557686541404, 6.271555926984345e-5, 21958.0)
16920	(-0.48076297122476197, 6.266865878048047e-5, 21958.0)
16940	(-0.4806702489158675, 6.262184909999069e-5, 21958.0)
16960	(-0.4805776015800466, 6.257512995067349e-5, 21958.0)
16980	(-0.48048502907034435, 6.25285010550683e-5, 21958.0)
17000	(-0.48039253124025844, 6.24819621377175e-5, 21958.0)
17020	(-0.4803001079437384, 6.243551292340486e-5, 21958.0)
17040	(-0.4802077590351827, 6.238915313880608e-5, 21958.0)
17060	(-0.4801154843694377, 6.234288251117718e-5, 21958.0)
17080	(-0.4800232838017952, 6.229670076921764e-5, 21958.0)
17100	(-0.4799311571879911, 6.225060764254607e-5, 21958.0)
17120	(-0.47983910446922895, 6.220454540237764e-5, 21958.0)
17140	(-0.4797471254740256, 6.215859022121227e-5, 21958.0)
17160	(-0.4796552200028119, 6.211276111573328e-5, 21958.0)
17180	(-0.47956338814301996, 6.20668641356444e-5, 21958.0)
17200	(-0.479471629712327, 6.202108161467106e-5, 21958.0)
17220	(-0.4793799443814039, 6.197551296493515e-5, 21958.0)
17240	(-0.479288332009033, 6.193003107549093e-5, 21958.0)
17260	(-0.4791967924544267, 6.188463568419984e-5, 21958.0)
17280	(-0.4791053256446815, 6.183928092161604e-5, 21958.0)
17300	(-0.4790139313761287, 6.17940552241972e-5, 21958.0)
17320	(-0.4789226095057543, 6.174891761569617e-5, 21958.0)
17340	(-0.4788313598944718, 6.170386546918478e-5, 21958.0)
17360	(-0.47874018240361566, 6.16588985280207e-5, 21958.0)
17380	(-0.4786490768949401, 6.161401653656531e-5, 21958.0)
17400	(-0.4785580432306172, 6.156921924010913e-5, 21958.0)
17420	(-0.47846708127323545, 6.152450638494757e-5, 21958.0)
17440	(-0.4783761908857978, 6.147987771853179e-5, 21958.0)
17460	(-0.4782853719317203, 6.143533298905632e-5, 21958.0)
17480	(-0.4781946242748302, 6.139087194598532e-5, 21958.0)
17500	(-0.4781039477793649, 6.134649433930229e-5, 21958.0)
17520	(-0.4780133423099694, 6.130219992052446e-5, 21958.0)
17540	(-0.4779228077316957, 6.125798844165205e-5, 21958.0)
17560	(-0.4778323439100004, 6.121385965607016e-5, 21958.0)
17580	(-0.4777419507107437, 6.116981331768554e-5, 21958.0)
17600	(-0.4776516280001875, 6.11258491816784e-5, 21958.0)
17620	(-0.4775613756449938, 6.108196700412743e-5, 21958.0)
17640	(-0.47747119351222356, 6.103816654174744e-5, 21958.0)
17660	(-0.47738108146933445, 6.099444755275395e-5, 21958.0)
17680	(-0.47729103938418005, 6.09508097956992e-5, 21958.0)
17700	(-0.47720106712500787, 6.0907253030411976e-5, 21958.0)
17720	(-0.47711116456045766, 6.0863777017735266e-5, 21958.0)
17740	(-0.4770213315595604, 6.0820381519075837e-5, 21958.0)
17760	(-0.4769315679917365, 6.077706629693096e-5, 21958.0)
17780	(-0.47684187372679426, 6.0733831114851416e-5, 21958.0)
17800	(-0.4767522486349284, 6.0690675737066234e-5, 21958.0)
17820	(-0.4766626925867185, 6.064759992885911e-5, 21958.0)
17840	(-0.4765732054531277, 6.060460345638106e-5, 21958.0)
17860	(-0.4764837871055009, 6.056168608672619e-5, 21958.0)
17880	(-0.47639443743660276, 6.051883333647187e-5, 21958.0)
17900	(-0.47630515650011895, 6.0475936218676416e-5, 21958.0)
17920	(-0.47621594401866396, 6.0433219012749155e-5, 21958.0)
17940	(-0.4761267998096339, 6.039061755504528e-5, 21958.0)
17960	(-0.4760377237462533, 6.0348094054480234e-5, 21958.0)
17980	(-0.4759487157021201, 6.03056482832175e-5, 21958.0)
18000	(-0.4758597755512048, 6.026328001391608e-5, 21958.0)
18020	(-0.47577090316784904, 6.022098902003194e-5, 21958.0)
18040	(-0.4756820984267639, 6.017877507615699e-5, 21958.0)
18060	(-0.4755933612030292, 6.013663795719215e-5, 21958.0)
18080	(-0.4755046913720914, 6.009457743936345e-5, 21958.0)
18100	(-0.4754160888097631, 6.005259329913166e-5, 21958.0)
18120	(-0.475327553392222, 6.001068531360642e-5, 21958.0)
18140	(-0.4752390857535024, 5.996833975858729e-5, 21958.0)
18160	(-0.47515068505528807, 5.992655469701725e-5, 21958.0)
18180	(-0.47506235113502004, 5.9884872120865886e-5, 21958.0)
18200	(-0.4749740838703103, 5.9843264824095985e-5, 21958.0)
18220	(-0.47488588313913727, 5.980173258240388e-5, 21958.0)
18240	(-0.4747977488198503, 5.976027516822139e-5, 21958.0)
18260	(-0.47470968079117837, 5.9718892348155004e-5, 21958.0)
18280	(-0.4746216789322471, 5.967758387696062e-5, 21958.0)
18300	(-0.4745337431226146, 5.9636349485153046e-5, 21958.0)
18320	(-0.474445873242347, 5.959518885177585e-5, 21958.0)
18340	(-0.47435806917220075, 5.95541015321642e-5, 21958.0)
18360	(-0.474270330794098, 5.951308675896669e-5, 21958.0)
18380	(-0.4741826579924569, 5.9472142862213795e-5, 21958.0)
18400	(-0.4740950506570091, 5.943126625978349e-5, 21958.0)
18420	(-0.4740075090705983, 5.939019026163233e-5, 21958.0)
18440	(-0.47392003281697626, 5.9349389162488825e-5, 21958.0)
18460	(-0.4738326216686826, 5.93087349326475e-5, 21958.0)
18480	(-0.4737452755451217, 5.926812795285744e-5, 21958.0)
18500	(-0.47365799436421785, 5.922756924444868e-5, 21958.0)
18520	(-0.4735707779645326, 5.918711268535324e-5, 21958.0)
18540	(-0.47348362622932005, 5.9146727972531606e-5, 21958.0)
18560	(-0.4733965390068114, 5.9106438900262176e-5, 21958.0)
18580	(-0.47330951618101474, 5.90662212121038e-5, 21958.0)
18600	(-0.47322255763631005, 5.902607467823154e-5, 21958.0)
18620	(-0.47313566325742834, 5.898599908277636e-5, 21958.0)
18640	(-0.47304883292944166, 5.8945994216632117e-5, 21958.0)
18660	(-0.47296206653775624, 5.89060598752345e-5, 21958.0)
18680	(-0.47287536396810925, 5.886619585611291e-5, 21958.0)
18700	(-0.47278872510656594, 5.88264019586652e-5, 21958.0)
18720	(-0.4727021498395169, 5.878667798404548e-5, 21958.0)
18740	(-0.4726156384514563, 5.874675360066589e-5, 21958.0)
18760	(-0.4725291909196178, 5.8706837441042046e-5, 21958.0)
18780	(-0.47244280664585664, 5.866732030017105e-5, 21958.0)
18800	(-0.47235648551783727, 5.862787230431732e-5, 21958.0)
18820	(-0.47227022742354224, 5.8588493259129975e-5, 21958.0)
18840	(-0.47218403225127126, 5.854918297081126e-5, 21958.0)
18860	(-0.4720978998896395, 5.850994124656946e-5, 21958.0)
18880	(-0.4720118302275771, 5.847076789397829e-5, 21958.0)
18900	(-0.4719258231543271, 5.843166272176926e-5, 21958.0)
18920	(-0.47183987855944515, 5.839262553888929e-5, 21958.0)
18940	(-0.4717539963327982, 5.835365615514222e-5, 21958.0)
18960	(-0.4716681763645626, 5.831475438137789e-5, 21958.0)
18980	(-0.471582418545224, 5.8275920028587325e-5, 21958.0)
19000	(-0.47149672276557575, 5.8237152908619704e-5, 21958.0)
19020	(-0.4714110889167176, 5.819845283425835e-5, 21958.0)
19040	(-0.47132551709940873, 5.81596773211622e-5, 21958.0)
19060	(-0.4712400070085515, 5.812110223340635e-5, 21958.0)
19080	(-0.4711545585239538, 5.808260192825415e-5, 21958.0)
19100	(-0.4710691715379294, 5.804416792663907e-5, 21958.0)
19120	(-0.47098384594309267, 5.800580004466333e-5, 21958.0)
19140	(-0.4708985816323582, 5.7967498098912955e-5, 21958.0)
19160	(-0.4708133784989395, 5.792926190653365e-5, 21958.0)
19180	(-0.4707282364363473, 5.7891091285835e-5, 21958.0)
19200	(-0.4706431553383895, 5.785298605508319e-5, 21958.0)
19220	(-0.47055813509916894, 5.781494603397339e-5, 21958.0)
19240	(-0.4704731756130833, 5.7776971042120285e-5, 21958.0)
19260	(-0.47038827677482337, 5.773906090041743e-5, 21958.0)
19280	(-0.4703034384793724, 5.770121542986736e-5, 21958.0)
19300	(-0.47021866062200457, 5.766343445263904e-5, 21958.0)
19320	(-0.4701339430982843, 5.762571779119997e-5, 21958.0)
19340	(-0.47004928592096495, 5.758798574316702e-5, 21958.0)
19360	(-0.46996468892664894, 5.755035815029169e-5, 21958.0)
19380	(-0.4698801519547399, 5.751283313581656e-5, 21958.0)
19400	(-0.46979567490195007, 5.747537173525208e-5, 21958.0)
19420	(-0.46971125769550526, 5.743795320529453e-5, 21958.0)
19440	(-0.46962690027312826, 5.740057041778692e-5, 21958.0)
19460	(-0.46954260246192187, 5.736329866529003e-5, 21958.0)
19480	(-0.46945836415973, 5.7326089834474996e-5, 21958.0)
19500	(-0.46937418526467717, 5.728894375376031e-5, 21958.0)
19520	(-0.4692900656751677, 5.725186025186646e-5, 21958.0)
19540	(-0.4692060052898842, 5.7214839158571927e-5, 21958.0)
19560	(-0.4691220040077871, 5.717788030399578e-5, 21958.0)
19580	(-0.4690380617281133, 5.714098351886237e-5, 21958.0)
19600	(-0.4689541783503752, 5.710414863472855e-5, 21958.0)
19620	(-0.46887035377435965, 5.706737548356829e-5, 21958.0)
19640	(-0.46878658790012717, 5.70306638980376e-5, 21958.0)
19660	(-0.46870288062801074, 5.699401371136146e-5, 21958.0)
19680	(-0.4686192318586148, 5.695742475744762e-5, 21958.0)
19700	(-0.4685356414928147, 5.6920896870546726e-5, 21958.0)
19720	(-0.46845210943175464, 5.688442988608426e-5, 21958.0)
19740	(-0.46836863557684805, 5.684802363937573e-5, 21958.0)
19760	(-0.46828521982977567, 5.681167796679876e-5, 21958.0)
19780	(-0.468201862092485, 5.6775392705113055e-5, 21958.0)
19800	(-0.4681185622671889, 5.6739167691914445e-5, 21958.0)
19820	(-0.4680353202563654, 5.670300276491676e-5, 21958.0)
19840	(-0.4679521359627559, 5.66668977629353e-5, 21958.0)
19860	(-0.4678690092893647, 5.663085252509315e-5, 21958.0)
19880	(-0.467785940139458, 5.659486689101051e-5, 21958.0)
19900	(-0.46770292841656286, 5.65589407011076e-5, 21958.0)
19920	(-0.4676199740244662, 5.652307379626464e-5, 21958.0)
19940	(-0.46753707686721413, 5.648726601785996e-5, 21958.0)
19960	(-0.46745423684911064, 5.645151720803513e-5, 21958.0)
19980	(-0.4673714538747171, 5.6415827209203514e-5, 21958.0)
20000	(-0.46728872784885106, 5.6380195864618055e-5, 21958.0)
20020	(-0.4672060586765852, 5.6344623017993276e-5, 21958.0)
20040	(-0.46712344626261715, 5.630910894274961e-5, 21950.0)
20060	(-0.46704089050857833, 5.627365574670245e-5, 21950.0)
20080	(-0.4669583913256358, 5.623825694739486e-5, 21950.0)
20100	(-0.46687594861989734, 5.620291601075698e-5, 21950.0)
20120	(-0.4667935622977208, 5.616763278364511e-5, 21950.0)
20140	(-0.46671123226571404, 5.613240711300066e-5, 21950.0)
20160	(-0.46662895843073354, 5.6097238846645134e-5, 21950.0)
20180	(-0.46654674069988367, 5.606212783278846e-5, 21950.0)
20200	(-0.4664645789805157, 5.6027073920256456e-5, 21950.0)
20220	(-0.46638247318022735, 5.599207695811247e-5, 21950.0)
20240	(-0.46630042320686116, 5.5957136796528464e-5, 21950.0)
20260	(-0.4662184289685044, 5.5922253285573875e-5, 21950.0)
20280	(-0.46613649037348776, 5.5887426276238045e-5, 21950.0)
20300	(-0.46605460733038445, 5.5852655619976284e-5, 21950.0)
20320	(-0.4659727797480096, 5.581794116867226e-5, 21950.0)
20340	(-0.4658910075354194, 5.578328277467611e-5, 21950.0)
20360	(-0.4658092906019101, 5.574868029095629e-5, 21950.0)
20380	(-0.4657276289642998, 5.5714060372875416e-5, 21950.0)
20400	(-0.4656460231630921, 5.5679065693896456e-5, 21950.0)
20420	(-0.4655644723703984, 5.564462992326079e-5, 21950.0)
20440	(-0.4654829764964606, 5.56102494841876e-5, 21950.0)
20460	(-0.4654015354517568, 5.557592423206029e-5, 21950.0)
20480	(-0.4653201491470003, 5.554165402273076e-5, 21950.0)
20500	(-0.465238817493139, 5.550743871259545e-5, 21950.0)
20520	(-0.465157540401354, 5.547327815870935e-5, 21950.0)
20540	(-0.4650763177830596, 5.54391722182179e-5, 21950.0)
20560	(-0.4649951495499017, 5.540512074926663e-5, 21950.0)
20580	(-0.4649140356137576, 5.537112361005419e-5, 21950.0)
20600	(-0.46483297588673467, 5.533718065970415e-5, 21950.0)
20620	(-0.46475197028117016, 5.530329175728002e-5, 21950.0)
20640	(-0.4646710187096296, 5.52694567629603e-5, 21950.0)
20660	(-0.46459012108490694, 5.523567553682605e-5, 21950.0)
20680	(-0.46450927732002284, 5.520194793988439e-5, 21950.0)
20700	(-0.46442848732822456, 5.516827383334874e-5, 21950.0)
20720	(-0.4643477510229848, 5.5134653079055954e-5, 21950.0)
20740	(-0.4642670683180013, 5.5101085539125425e-5, 21950.0)
20760	(-0.4641864391271952, 5.506757107664179e-5, 21950.0)
20780	(-0.46410586336471144, 5.503410955447994e-5, 21950.0)
20800	(-0.4640253409449172, 5.5000700836404646e-5, 21950.0)
20820	(-0.4639448717824013, 5.496734478665389e-5, 21950.0)
20840	(-0.46386445579197355, 5.4934041269711586e-5, 21950.0)
20860	(-0.46378409288866385, 5.490079015076286e-5, 21950.0)
20880	(-0.4637037829877214, 5.486759129535302e-5, 21950.0)
20900	(-0.46362352600461415, 5.4834444569463705e-5, 21950.0)
20920	(-0.46354332185502806, 5.4801349839399257e-5, 21950.0)
20940	(-0.46346317045486574, 5.476830697243187e-5, 21950.0)
20960	(-0.46338307172024673, 5.473531583555011e-5, 21950.0)
20980	(-0.46330302556750586, 5.4702376296824686e-5, 21950.0)
21000	(-0.4632230319131928, 5.4669488224536314e-5, 21950.0)
21020	(-0.46314309067407167, 5.463665148725172e-5, 21950.0)
21040	(-0.4630632017671198, 5.460386595424129e-5, 21950.0)
21060	(-0.46298336510952703, 5.4571131495251695e-5, 21950.0)
21080	(-0.4629035806186955, 5.453844798012664e-5, 21950.0)
21100	(-0.4628238482122384, 5.450581527952812e-5, 21950.0)
21120	(-0.4627441678079794, 5.447323326429152e-5, 21950.0)
21140	(-0.4626645393239518, 5.4440701806033095e-5, 21950.0)
21160	(-0.46258496267839816, 5.440822077639121e-5, 21950.0)
21180	(-0.4625054377897695, 5.437579004755782e-5, 21950.0)
21200	(-0.4624259645767239, 5.4343409492582426e-5, 21950.0)
21220	(-0.46234654295812694, 5.431107898427162e-5, 21950.0)
21240	(-0.46226717285305, 5.4278798396365924e-5, 21950.0)
21260	(-0.4621878541807703, 5.424656760274293e-5, 21950.0)
21280	(-0.4621085868607692, 5.421438647813883e-5, 21950.0)
21300	(-0.4620293708127329, 5.418225489704769e-5, 21950.0)
21320	(-0.46195020595655034, 5.415017273501244e-5, 21950.0)
21340	(-0.4618710922123135, 5.411813986767606e-5, 21950.0)
21360	(-0.4617920295217136, 5.408614153255602e-5, 21950.0)
21380	(-0.4617130178808933, 5.4054140487063546e-5, 21950.0)
21400	(-0.4616340571862101, 5.4022205007472104e-5, 21950.0)
21420	(-0.4615551472867026, 5.39903674890245e-5, 21950.0)
21440	(-0.4614762881034634, 5.3958578651674666e-5, 21950.0)
21460	(-0.4613974795577835, 5.392683837375906e-5, 21950.0)
21480	(-0.46131872157115195, 5.389514653371554e-5, 21950.0)
21500	(-0.46124001406525467, 5.386350301091937e-5, 21950.0)
21520	(-0.461161356961974, 5.383190768484771e-5, 21950.0)
21540	(-0.46108275018338823, 5.3800360435383735e-5, 21950.0)
21560	(-0.46100419365177037, 5.376886114304484e-5, 21950.0)
21580	(-0.4609256872895877, 5.373740968871694e-5, 21950.0)
21600	(-0.46084723101950176, 5.3706005953274634e-5, 21950.0)
21620	(-0.4607688247643663, 5.367464981879743e-5, 21950.0)
21640	(-0.46069046844722783, 5.364334116712604e-5, 21950.0)
21660	(-0.4606121619913245, 5.361207988066046e-5, 21950.0)
21680	(-0.46053390532008504, 5.35808658425504e-5, 21950.0)
21700	(-0.4604556983571289, 5.354969893582126e-5, 21950.0)
21720	(-0.4603775410262646, 5.3518579044552634e-5, 21950.0)
21740	(-0.46029943325149, 5.34875060525862e-5, 21950.0)
21760	(-0.460221374956991, 5.3456479844552226e-5, 21950.0)
21780	(-0.4601433660910106, 5.342548395727499e-5, 21950.0)
21800	(-0.4600654065804077, 5.3394533047322276e-5, 21950.0)
21820	(-0.4599874963238005, 5.3363646471883984e-5, 21950.0)
21840	(-0.4599096352461199, 5.333280622363337e-5, 21950.0)
21860	(-0.4598318232724816, 5.330201218920852e-5, 21950.0)
21880	(-0.4597540603281858, 5.327126425554322e-5, 21950.0)
21900	(-0.4596763463387156, 5.32405623103235e-5, 21950.0)
21920	(-0.4595986813888366, 5.3209797233539484e-5, 21950.0)
21940	(-0.4595210653136665, 5.317914007182516e-5, 21950.0)
21960	(-0.45944349797108025, 5.314857525767319e-5, 21950.0)
21980	(-0.4593659792872868, 5.311805598710947e-5, 21950.0)
22000	(-0.45928850918866554, 5.308758215626462e-5, 21958.0)
22020	(-0.4592110876015269, 5.3057153825423296e-5, 21958.0)
22040	(-0.45913371445249374, 5.302677079338057e-5, 21958.0)
22060	(-0.45905638966847984, 5.29964328736249e-5, 21958.0)
22080	(-0.45897911317657697, 5.2966139957011286e-5, 21958.0)
22100	(-0.45890188490405465, 5.2935891934502324e-5, 21958.0)
22120	(-0.45882470477835924, 5.290568869762499e-5, 21958.0)
22140	(-0.45874757272711386, 5.287553013793812e-5, 21958.0)
22160	(-0.45867048867811777, 5.2845416147375016e-5, 21958.0)
22180	(-0.4585934525593463, 5.2815346617863035e-5, 21958.0)
22200	(-0.4585164642989501, 5.2785321441818486e-5, 21958.0)
22220	(-0.4584395238252563, 5.2755340510776557e-5, 21958.0)
22240	(-0.45836263106676817, 5.272540371657114e-5, 21958.0)
22260	(-0.4582857859521669, 5.2695510949583895e-5, 21958.0)
22280	(-0.45820898841031465, 5.266566209824897e-5, 21958.0)
22300	(-0.4581322383702614, 5.263585704615893e-5, 21958.0)
22320	(-0.4580555357612598, 5.2606095666694934e-5, 21958.0)
22340	(-0.4579788805302205, 5.25763658602536e-5, 21955.0)
22360	(-0.4579022725905445, 5.2546690622743484e-5, 21955.0)
22380	(-0.4578257118723693, 5.251705848764182e-5, 21955.0)
22400	(-0.4577491983105104, 5.248746625796128e-5, 21955.0)
22420	(-0.45767273184681356, 5.245790912201258e-5, 21955.0)
22440	(-0.4575963124014855, 5.242840193670661e-5, 21955.0)
22460	(-0.4575199398974922, 5.239894282249722e-5, 21955.0)
22480	(-0.4574436142645198, 5.236952718126367e-5, 21955.0)
22500	(-0.45736733543312835, 5.234015442563138e-5, 21955.0)
22520	(-0.45729110333414436, 5.2310824384767894e-5, 21955.0)
22540	(-0.4572149178985827, 5.228153694138269e-5, 21955.0)
22560	(-0.4571387790576298, 5.225229198976009e-5, 21955.0)
22580	(-0.45706268674263933, 5.222308942696189e-5, 21955.0)
22600	(-0.45698664088512947, 5.2193929152066274e-5, 21955.0)
22620	(-0.45691064141678256, 5.216481106418708e-5, 21955.0)
22640	(-0.4568346882694441, 5.213573506315979e-5, 21955.0)
22660	(-0.4567587813751218, 5.210670104946565e-5, 21955.0)
22680	(-0.45668292066598565, 5.207770892343158e-5, 21955.0)
22700	(-0.456607106074367, 5.2048758585954354e-5, 21955.0)
22720	(-0.4565313375327584, 5.201984993811972e-5, 21955.0)
22740	(-0.4564556149738123, 5.199098288169799e-5, 21955.0)
22760	(-0.45637993833034185, 5.196215731811517e-5, 21955.0)
22780	(-0.4563043075353197, 5.193337314929157e-5, 21955.0)
22800	(-0.456228722521877, 5.1904630277985066e-5, 21955.0)
22820	(-0.4561531832233042, 5.187592860634282e-5, 21955.0)
22840	(-0.4560776895730496, 5.184726803742606e-5, 21955.0)
22860	(-0.45600224158379676, 5.1818594160117805e-5, 21955.0)
22880	(-0.45592683922920574, 5.178993377918961e-5, 21955.0)
22900	(-0.45585148232473277, 5.1761395573562196e-5, 21955.0)
22920	(-0.45577617081840716, 5.17328884998003e-5, 21955.0)
22940	(-0.45570090467253493, 5.170440275926933e-5, 21955.0)
22960	(-0.45562568377973983, 5.167598623279358e-5, 21955.0)
22980	(-0.4555505080745634, 5.164761013748665e-5, 21955.0)
23000	(-0.4554753774916999, 5.161927437957429e-5, 21958.0)
23020	(-0.4554002919659506, 5.159097889686582e-5, 21958.0)
23040	(-0.4553252514322924, 5.156272357972659e-5, 21958.0)
23060	(-0.4552502558258802, 5.153450831703103e-5, 21958.0)
23080	(-0.45517530508202103, 5.150633301527502e-5, 21958.0)
23100	(-0.4551003991361741, 5.147819758099371e-5, 21958.0)
23120	(-0.4550255379239501, 5.145010192110494e-5, 21958.0)
23140	(-0.45495072138111076, 5.142204594279494e-5, 21958.0)
23160	(-0.45487594944356863, 5.139402955332774e-5, 21958.0)
23180	(-0.4548012220473861, 5.136605266069391e-5, 21958.0)
23200	(-0.4547265391287754, 5.1338115172771326e-5, 21958.0)
23220	(-0.4546519006240981, 5.1310216997821325e-5, 21958.0)
23240	(-0.45457730646986416, 5.1282358044603366e-5, 21958.0)
23260	(-0.4545027566027322, 5.125453822176457e-5, 21958.0)
23280	(-0.4544282509595085, 5.122675743856495e-5, 21958.0)
23300	(-0.45435378947714683, 5.1199015604343313e-5, 21958.0)
23320	(-0.4542793720927478, 5.117131262882266e-5, 21958.0)
23340	(-0.4542049987435585, 5.1143648422034065e-5, 21958.0)
23360	(-0.45413066936697205, 5.111602289416411e-5, 21958.0)
23380	(-0.45405638398203446, 5.108837989772679e-5, 21958.0)
23400	(-0.4539821425118187, 5.106078544233714e-5, 21958.0)
23420	(-0.4539079448877122, 5.103323382156578e-5, 21958.0)
23440	(-0.4538337909875262, 5.1005761900494156e-5, 21958.0)
23460	(-0.4537596807493748, 5.0978328215294656e-5, 21958.0)
23480	(-0.45368561411151537, 5.095093267789185e-5, 21958.0)
23500	(-0.4536115910123483, 5.0923575200366755e-5, 21958.0)
23520	(-0.453537611390416, 5.089625569549163e-5, 21958.0)
23540	(-0.4534636751844035, 5.086897407539346e-5, 21958.0)
23560	(-0.45338978233315785, 5.084173023910185e-5, 21957.0)
23580	(-0.45331593277605925, 5.0814523830025084e-5, 21957.0)
23600	(-0.45324212645177014, 5.078735535234612e-5, 21957.0)
23620	(-0.4531683632995394, 5.0760224412845825e-5, 21957.0)
23640	(-0.45309464325875515, 5.073313092596456e-5, 21957.0)
23660	(-0.4530209662689452, 5.070607480572724e-5, 21957.0)
23680	(-0.45294733226977635, 5.06790559667748e-5, 21957.0)
23700	(-0.4528737418129928, 5.0651653110432435e-5, 21957.0)
23720	(-0.4528001945889005, 5.062445914189811e-5, 21957.0)
23740	(-0.452726690259836, 5.059749336012601e-5, 21957.0)
23760	(-0.4526532286802007, 5.057062359061713e-5, 21957.0)
23780	(-0.452579809790338, 5.0543790687323694e-5, 21957.0)
23800	(-0.45250643357362913, 5.051696502875932e-5, 21957.0)
23820	(-0.4524330999803247, 5.0490169430459665e-5, 21957.0)
23840	(-0.45235980889877864, 5.046344652132035e-5, 21957.0)
23860	(-0.45228656026987624, 5.043676014518008e-5, 21957.0)
23880	(-0.45221335403463814, 5.0410110218799846e-5, 21957.0)
23900	(-0.4521401901342191, 5.0383496659711223e-5, 21957.0)
23920	(-0.45206706850990797, 5.035691938537562e-5, 21957.0)
23940	(-0.4519939891031277, 5.033037831333721e-5, 21957.0)
23960	(-0.4519209518554341, 5.030387336187301e-5, 21957.0)
23980	(-0.45184795670851585, 5.027740444926667e-5, 21957.0)
24000	(-0.4517750036041943, 5.025097149380851e-5, 21957.0)
24020	(-0.45170209248442267, 5.0224574414483906e-5, 21957.0)
24040	(-0.45162922329128563, 5.019821313036167e-5, 21957.0)
24060	(-0.4515563959669993, 5.017188756059414e-5, 21957.0)
24080	(-0.4514836104539106, 5.014559762472321e-5, 21957.0)
24100	(-0.45141086686488385, 5.011922584256767e-5, 21957.0)
24120	(-0.4513381653264453, 5.009276278642291e-5, 21957.0)
24140	(-0.4512655054609132, 5.0066555884265334e-5, 21957.0)
24160	(-0.45119288717815903, 5.004040703051113e-5, 21957.0)
24180	(-0.45112031042116973, 5.0014293417360374e-5, 21957.0)
24200	(-0.45104777513306077, 4.998821496577832e-5, 21957.0)
24220	(-0.450975281257076, 4.996217159673821e-5, 21957.0)
24240	(-0.450902828736587, 4.9936163231603775e-5, 21957.0)
24260	(-0.4508304175150924, 4.991018979228262e-5, 21957.0)
24280	(-0.45075804753621834, 4.988425120023139e-5, 21957.0)
24300	(-0.45068571874371716, 4.9858347377833404e-5, 21957.0)
24320	(-0.45061343108146756, 4.983247824728915e-5, 21957.0)
24340	(-0.4505411844934739, 4.980664373130513e-5, 21957.0)
24360	(-0.45046897892386645, 4.97808437523669e-5, 21957.0)
24380	(-0.4503968143169001, 4.9755078233772475e-5, 21957.0)
24400	(-0.4503246906169546, 4.9729347098675686e-5, 21957.0)
24420	(-0.45025260776853426, 4.970365027046897e-5, 21957.0)
24440	(-0.4501805657162671, 4.967798767293661e-5, 21957.0)
24460	(-0.4501085644049049, 4.9652359229910404e-5, 21957.0)
24480	(-0.4500366037793224, 4.962676486572905e-5, 21957.0)
24500	(-0.4499646837845178, 4.96012045044344e-5, 21957.0)
24520	(-0.44989280436561147, 4.95756780707669e-5, 21957.0)
24540	(-0.449820965467846, 4.95501854894766e-5, 21957.0)
24560	(-0.449749167036586, 4.952472668547638e-5, 21957.0)
24580	(-0.44967740901731734, 4.949930158414844e-5, 21957.0)
24600	(-0.44960569135564743, 4.9473910110578445e-5, 21957.0)
24620	(-0.44953401399730425, 4.944855219058969e-5, 21957.0)
24640	(-0.44946237688813656, 4.942322774978576e-5, 21957.0)
24660	(-0.44939077997411325, 4.9397936714201635e-5, 21957.0)
24680	(-0.44931922320132306, 4.9372679010035794e-5, 21957.0)
24700	(-0.4492477065159745, 4.934745456349706e-5, 21957.0)
24720	(-0.44917622986439554, 4.932226330103449e-5, 21957.0)
24740	(-0.44910479319303287, 4.929710514949073e-5, 21957.0)
24760	(-0.4490333964484525, 4.9271980035335935e-5, 21957.0)
24780	(-0.44896203957733877, 4.9246887885740505e-5, 21957.0)
24800	(-0.4488907225264942, 4.92218286277707e-5, 21957.0)
24820	(-0.44881944524284006, 4.9196802188273695e-5, 21957.0)
24840	(-0.4487482076734153, 4.917180849472059e-5, 21957.0)
24860	(-0.4486770097653766, 4.914684747444022e-5, 21957.0)
24880	(-0.44860585146599863, 4.912191905477241e-5, 21957.0)
24900	(-0.44853473272267375, 4.909702316299147e-5, 21957.0)
24920	(-0.4484636534829121, 4.9072159726421075e-5, 21957.0)
24940	(-0.4483926136943413, 4.9047328672587715e-5, 21957.0)
24960	(-0.4483216133709023, 4.902248422139855e-5, 21957.0)
24980	(-0.44825065276950476, 4.899745859727595e-5, 21957.0)
25000	(-0.44817973146312834, 4.897272405875506e-5, 21957.0)
25020	(-0.44810884939987855, 4.894802160705211e-5, 21957.0)
25040	(-0.44803800652798004, 4.8923351168368905e-5, 21957.0)
25060	(-0.44796720279577745, 4.889871266826665e-5, 21957.0)
25080	(-0.4478964381517352, 4.887410603247094e-5, 21957.0)
25100	(-0.44782571254444037, 4.88495311846096e-5, 21957.0)
25120	(-0.4477550259226026, 4.882498804847449e-5, 21957.0)
25140	(-0.4476843782350561, 4.8800476546296e-5, 21957.0)
25160	(-0.4476137694307618, 4.8775996598896e-5, 21957.0)
25180	(-0.4475431994588091, 4.875154812587922e-5, 21957.0)
25200	(-0.44747266826841825, 4.8727131045057695e-5, 21957.0)
25220	(-0.4474021758089425, 4.87027452728338e-5, 21957.0)
25240	(-0.4473317220298704, 4.867839072389303e-5, 21957.0)
25260	(-0.44726130688082716, 4.865406731216252e-5, 21957.0)
25280	(-0.44719093031157436, 4.86297749514246e-5, 21957.0)
25300	(-0.4471205922720082, 4.860551355692801e-5, 21957.0)
25320	(-0.4470502927121539, 4.858128304753667e-5, 21957.0)
25340	(-0.44698003158215577, 4.855708334918375e-5, 21957.0)
25360	(-0.4469098088322618, 4.8532914398211624e-5, 21957.0)
25380	(-0.4468396244128032, 4.8508776145135185e-5, 21957.0)
25400	(-0.44676947827416985, 4.8484668557600494e-5, 21957.0)
25420	(-0.4466993703667852, 4.8460591620274716e-5, 21957.0)
25440	(-0.4466293006410864, 4.8436545331781104e-5, 21957.0)
25460	(-0.4465592692185594, 4.8412411449183646e-5, 21957.0)
25480	(-0.44648927613564066, 4.838824875750717e-5, 21957.0)
25500	(-0.4464193210864229, 4.836429394845704e-5, 21957.0)
25520	(-0.4463494040214064, 4.834036977657428e-5, 21957.0)
25540	(-0.4462795248911583, 4.8316476203549835e-5, 21957.0)
25560	(-0.44620968364633623, 4.829261317485811e-5, 21957.0)
25580	(-0.44613988023770806, 4.826878062217078e-5, 21957.0)
25600	(-0.4460701146161653, 4.824497846792112e-5, 21957.0)
25620	(-0.44600038673273085, 4.8221206629140526e-5, 21957.0)
25640	(-0.4459306965385617, 4.81974650209508e-5, 21957.0)
25660	(-0.44586104398494925, 4.8173753558291356e-5, 21957.0)
25680	(-0.4457914290233174, 4.8150072157263154e-5, 21957.0)
25700	(-0.4457218516052189, 4.8126420736665e-5, 21957.0)
25720	(-0.4456523116823323, 4.810279921707275e-5, 21957.0)
25740	(-0.4455828092064585, 4.807920752183837e-5, 21957.0)
25760	(-0.44551334477781945, 4.80551970619885e-5, 21957.0)
25780	(-0.44544391781659187, 4.8031584187959104e-5, 21957.0)
25800	(-0.4453745281606782, 4.800807995557374e-5, 21957.0)
25820	(-0.44530517576233253, 4.798460526447401e-5, 21957.0)
25840	(-0.4452358605739182, 4.7961160046795495e-5, 21957.0)
25860	(-0.4451665825524612, 4.7937741083518586e-5, 21957.0)
25880	(-0.44509734170342485, 4.7914314861827057e-5, 21957.0)
25900	(-0.4450281379222899, 4.7890957496824744e-5, 21957.0)
25920	(-0.4449589711618403, 4.786762934451145e-5, 21957.0)
25940	(-0.44488984137496274, 4.7844330341322105e-5, 21957.0)
25960	(-0.4448207485146457, 4.782106042432175e-5, 21957.0)
25980	(-0.4447516925339787, 4.7797819531090454e-5, 21957.0)
26000	(-0.44468267338615186, 4.777460759953137e-5, 21957.0)
26020	(-0.4446136910244549, 4.7751424568063036e-5, 21957.0)
26040	(-0.44454474540227695, 4.772827037542736e-5, 21957.0)
26060	(-0.4444758375875911, 4.7704373373879485e-5, 21957.0)
26080	(-0.4444069665432012, 4.768119095598855e-5, 21957.0)
26100	(-0.4443381320989454, 4.765812293260209e-5, 21957.0)
26120	(-0.44426933420859765, 4.763508351123983e-5, 21957.0)
26140	(-0.444200572826029, 4.7612072632071186e-5, 21957.0)
26160	(-0.444131847905207, 4.758909023555122e-5, 21957.0)
26180	(-0.44406315940019564, 4.7566136262267e-5, 21957.0)
26200	(-0.44399450726515455, 4.754321065328367e-5, 21957.0)
26220	(-0.4439258914543392, 4.752031334949105e-5, 21957.0)
26240	(-0.44385731192210004, 4.749744429237253e-5, 21957.0)
26260	(-0.44378876862288275, 4.747460342323633e-5, 21957.0)
26280	(-0.44372026219607075, 4.7451316301256254e-5, 21957.0)
26300	(-0.4436517921388472, 4.742837406941762e-5, 21957.0)
26320	(-0.4435833581775264, 4.740561806363236e-5, 21957.0)
26340	(-0.44351496026692416, 4.738289001841065e-5, 21957.0)
26360	(-0.44344659836194983, 4.7360189876032026e-5, 21957.0)
26380	(-0.4433782724176062, 4.733751757894731e-5, 21957.0)
26400	(-0.443309982388989, 4.731487306985563e-5, 21957.0)
26420	(-0.44324172823128655, 4.729225629174294e-5, 21957.0)
26440	(-0.44317350997654653, 4.726961399196156e-5, 21957.0)
26460	(-0.4431053275364999, 4.724702954498204e-5, 21957.0)
26480	(-0.4430371808337499, 4.7224495428899884e-5, 21957.0)
26500	(-0.442969069823852, 4.720198881755115e-5, 21957.0)
26520	(-0.4429009944624528, 4.7179509654818934e-5, 21957.0)
26540	(-0.44283295470529066, 4.715705788410422e-5, 21957.0)
26560	(-0.4427649505081939, 4.713463345001879e-5, 21957.0)
26580	(-0.4426969818270822, 4.7112236296230737e-5, 21957.0)
26600	(-0.44262904861796526, 4.7089866367272874e-5, 21957.0)
26620	(-0.4425611508369429, 4.70675236075424e-5, 21957.0)
26640	(-0.44249328844020475, 4.704520796180123e-5, 21957.0)
26660	(-0.4424254613840301, 4.702291937467581e-5, 21957.0)
26680	(-0.4423576696247876, 4.700065779115742e-5, 21957.0)
26700	(-0.44228991311893484, 4.6978423156448375e-5, 21957.0)
26720	(-0.4422221918230183, 4.695621541569267e-5, 21957.0)
26740	(-0.44215450569367326, 4.6934034514206944e-5, 21957.0)
26760	(-0.44208685468762293, 4.691188039778853e-5, 21957.0)
26780	(-0.44201923876167903, 4.688975301186865e-5, 21957.0)
26800	(-0.4419516578727407, 4.686765230259038e-5, 21957.0)
26820	(-0.441884111977795, 4.684557821576928e-5, 21957.0)
26840	(-0.44181660103391607, 4.682353069766343e-5, 21957.0)
26860	(-0.4417491249982655, 4.6801509694434534e-5, 21957.0)
26880	(-0.44168168382809153, 4.677951515268694e-5, 21957.0)
26900	(-0.441614277480729, 4.6757547018967266e-5, 21957.0)
26920	(-0.44154690591359924, 4.6735605240033945e-5, 21957.0)
26940	(-0.44147956908420954, 4.6713689762857296e-5, 21957.0)
26960	(-0.44141226695015345, 4.6691800534273024e-5, 21957.0)
26980	(-0.4413449994691099, 4.6669937501675476e-5, 21957.0)
27000	(-0.4412777665988432, 4.664810061236301e-5, 21957.0)
27020	(-0.44121056829720307, 4.6626289813807674e-5, 21964.0)
27040	(-0.44114340452207623, 4.6604505086782955e-5, 21964.0)
27060	(-0.44107627523144133, 4.658274637414523e-5, 21964.0)
27080	(-0.441009180383401, 4.656101359638694e-5, 21964.0)
27100	(-0.440942119936142, 4.653930670159858e-5, 21964.0)
27120	(-0.4408750938479358, 4.6517625637659425e-5, 21964.0)
27140	(-0.44080810207713683, 4.649597035327774e-5, 21964.0)
27160	(-0.4407411445821835, 4.647434079683512e-5, 21964.0)
27180	(-0.44067422132159767, 4.645273691677177e-5, 21964.0)
27200	(-0.44060733225398424, 4.6431158661933347e-5, 21964.0)
27220	(-0.44054047733803087, 4.6409605981301355e-5, 21964.0)
27240	(-0.44047365653250803, 4.6388078823800484e-5, 21964.0)
27260	(-0.44040686979626836, 4.63665771387997e-5, 21964.0)
27280	(-0.44034011708824716, 4.6345100875302954e-5, 21964.0)
27300	(-0.4402733983674614, 4.632364998298983e-5, 21964.0)
27320	(-0.44020671359300984, 4.630222441136774e-5, 21964.0)
27340	(-0.4401400627240728, 4.6280824110234485e-5, 21964.0)
27360	(-0.44007344571991214, 4.625944902925428e-5, 21964.0)
27380	(-0.4400068625398705, 4.623809911865171e-5, 21964.0)
27400	(-0.4399403131492716, 4.621677023078042e-5, 21963.0)
27420	(-0.4398737975020445, 4.619547028534321e-5, 21963.0)
27440	(-0.4398073155574221, 4.617419560522855e-5, 21963.0)
27460	(-0.43974086727506967, 4.615294589656229e-5, 21963.0)
27480	(-0.4396744526147327, 4.61317211098275e-5, 21963.0)
27500	(-0.4396080715362358, 4.611052119626092e-5, 21963.0)
27520	(-0.4395417239994836, 4.608934610654201e-5, 21963.0)
27540	(-0.43947540996446005, 4.606819579167986e-5, 21963.0)
27560	(-0.439409129391228, 4.6047070203090365e-5, 21963.0)
27580	(-0.43934288274867234, 4.6025615820712594e-5, 21963.0)
27600	(-0.43927666954549954, 4.600449974201459e-5, 21963.0)
27620	(-0.43921048968551407, 4.598344749414133e-5, 21963.0)
27640	(-0.4391443431290884, 4.596241978191846e-5, 21963.0)
27660	(-0.4390782298366735, 4.594141655690798e-5, 21963.0)
27680	(-0.4390121497687979, 4.5920437771310576e-5, 21963.0)
27700	(-0.4389461028860681, 4.589948337696277e-5, 21963.0)
27720	(-0.43888008914916815, 4.587855332614708e-5, 21963.0)
27740	(-0.438814108518859, 4.585764757136061e-5, 21963.0)
27760	(-0.43874816095597924, 4.583676606469784e-5, 21963.0)
27780	(-0.438682246421444, 4.5815908759008075e-5, 21963.0)
27800	(-0.43861636487624495, 4.5795075607046785e-5, 21963.0)
27820	(-0.43855051628145053, 4.577426656147556e-5, 21963.0)
27840	(-0.43848470059820543, 4.575348157524807e-5, 21963.0)
27860	(-0.4384189177877301, 4.5732720601648734e-5, 21963.0)
27880	(-0.43835316781132105, 4.571198359379109e-5, 21963.0)
27900	(-0.4382874506303505, 4.569127050488796e-5, 21963.0)
27920	(-0.4382217662062658, 4.5670581288714694e-5, 21963.0)
27940	(-0.43815611450058983, 4.5649915898567136e-5, 21963.0)
27960	(-0.43809049547492046, 4.562927428826515e-5, 21963.0)
27980	(-0.4380249090909302, 4.560865641172816e-5, 21963.0)
28000	(-0.4379593553103665, 4.558806222278219e-5, 21963.0)
28020	(-0.43789383409505095, 4.556749167562309e-5, 21963.0)
28040	(-0.4378283454068796, 4.554694472435341e-5, 21963.0)
28060	(-0.43776288920782225, 4.5526421323484345e-5, 21963.0)
28080	(-0.43769746545992283, 4.550592142727938e-5, 21963.0)
28100	(-0.43763207412529875, 4.5485444990410774e-5, 21963.0)
28120	(-0.437566715166141, 4.546499196749625e-5, 21963.0)
28140	(-0.43750138854471365, 4.5444562313407955e-5, 21963.0)
28160	(-0.43743609422335394, 4.5424155983079464e-5, 21963.0)
28180	(-0.43737083216447187, 4.5403772931583055e-5, 21963.0)
28200	(-0.43730560233055016, 4.538341311405252e-5, 21963.0)
28220	(-0.43724040499515804, 4.5362860079305557e-5, 21963.0)
28240	(-0.4371752398881963, 4.5342492100559975e-5, 21963.0)
28260	(-0.43711010689466867, 4.532220128098414e-5, 21963.0)
28280	(-0.4370450059773455, 4.530193351799086e-5, 21963.0)
28300	(-0.43697993709906846, 4.52816887676405e-5, 21963.0)
28320	(-0.436914900222751, 4.526146698555308e-5, 21963.0)
28340	(-0.4368498953113776, 4.5241268127951316e-5, 21963.0)
28360	(-0.43678492232800403, 4.5221092150849444e-5, 21963.0)
28380	(-0.4367199812357569, 4.5200939010594135e-5, 21963.0)
28400	(-0.4366550719978337, 4.518080866336225e-5, 21963.0)
28420	(-0.4365901945775025, 4.5160701065701824e-5, 21963.0)
28440	(-0.4365253489381016, 4.51406161741844e-5, 21963.0)
28460	(-0.4364605350430396, 4.512055394548234e-5, 21963.0)
28480	(-0.436395752855795, 4.5100514336523443e-5, 21963.0)
28500	(-0.43633100233991634, 4.508049730402729e-5, 21963.0)
28520	(-0.4362662834590216, 4.506050280516224e-5, 21963.0)
28540	(-0.43620159617679827, 4.504053079700443e-5, 21963.0)
28560	(-0.4361369404570032, 4.502058123684702e-5, 21963.0)
28580	(-0.4360723162634624, 4.50006540819297e-5, 21963.0)
28600	(-0.43600772356007045, 4.498074928997986e-5, 21963.0)
28620	(-0.435943162310791, 4.4960866818400935e-5, 21963.0)
28640	(-0.43587863247965636, 4.494100662477489e-5, 21963.0)
28660	(-0.4358141340307668, 4.4921168667210304e-5, 21963.0)
28680	(-0.43574966692829126, 4.4901352903298546e-5, 21963.0)
28700	(-0.4356852311364663, 4.4881559291351004e-5, 21963.0)
28720	(-0.43562082661959667, 4.486178778923924e-5, 21963.0)
28740	(-0.4355564533420545, 4.484203835543899e-5, 21963.0)
28760	(-0.4354921112682797, 4.482231094810223e-5, 21963.0)
28780	(-0.43542780036277917, 4.480260552586923e-5, 21963.0)
28800	(-0.43536352059012745, 4.4782922047017865e-5, 21963.0)
28820	(-0.43529927191496554, 4.47632604705465e-5, 21963.0)
28840	(-0.4352350543020015, 4.474362075505249e-5, 21963.0)
28860	(-0.4351708677160101, 4.472400285935105e-5, 21963.0)
28880	(-0.43510671212183233, 4.470440674262994e-5, 21963.0)
28900	(-0.43504258748437574, 4.46848323637534e-5, 21963.0)
28920	(-0.43497849376861375, 4.46652796821131e-5, 21963.0)
28940	(-0.4349144309395858, 4.464574865693193e-5, 21963.0)
28960	(-0.43485039896239724, 4.4626239247573503e-5, 21963.0)
28980	(-0.43478639781257583, 4.4606744194806365e-5, 21963.0)
29000	(-0.43472242748637263, 4.458724905783734e-5, 21963.0)
29020	(-0.4346584879076234, 4.456780431591123e-5, 21963.0)
29040	(-0.4345945790416941, 4.454838102902956e-5, 21963.0)
29060	(-0.43453070085401585, 4.452897915687343e-5, 21963.0)
29080	(-0.4344668533100842, 4.450959865980675e-5, 21963.0)
29100	(-0.43440303637545974, 4.449023949763792e-5, 21963.0)
29120	(-0.4343392500157672, 4.447090163074213e-5, 21963.0)
29140	(-0.43427549419669564, 4.445158501940358e-5, 21963.0)
29160	(-0.43421176888399843, 4.4432289624008896e-5, 21963.0)
29180	(-0.43414807404349265, 4.441301540516344e-5, 21963.0)
29200	(-0.43408440964105943, 4.4393762323342886e-5, 21963.0)
29220	(-0.4340207756426433, 4.437453033943524e-5, 21963.0)
29240	(-0.43395717201425243, 4.435531941412149e-5, 21963.0)
29260	(-0.43389359872195826, 4.433612950837895e-5, 21963.0)
29280	(-0.4338300557318952, 4.431696058332639e-5, 21963.0)
29300	(-0.433766543010261, 4.4297812599836974e-5, 21963.0)
29320	(-0.43370306052331586, 4.427868551942877e-5, 21963.0)
29340	(-0.43363960823738296, 4.425957930314199e-5, 21963.0)
29360	(-0.43357618611884774, 4.42404939125844e-5, 21963.0)
29380	(-0.43351279413415833, 4.4221429309040854e-5, 21963.0)
29400	(-0.4334494322498245, 4.4202385454480096e-5, 21963.0)
29420	(-0.4333861004324187, 4.418336231019946e-5, 21963.0)
29440	(-0.43332279864857504, 4.416435983810281e-5, 21963.0)
29460	(-0.43325952686498886, 4.4145378000429594e-5, 21963.0)
29480	(-0.4331962850484178, 4.412641675870914e-5, 21963.0)
29500	(-0.4331330731656806, 4.410747607515499e-5, 21963.0)
29520	(-0.4330698911836571, 4.408855591220019e-5, 21963.0)
29540	(-0.4330067390692885, 4.406965623176138e-5, 21963.0)
29560	(-0.4329436167895769, 4.405077699640088e-5, 21963.0)
29580	(-0.432880524311585, 4.403191816859076e-5, 21963.0)
29600	(-0.4328174616024365, 4.401307971079033e-5, 21963.0)
29620	(-0.4327544286293154, 4.399426158563989e-5, 21963.0)
29640	(-0.43269142535946603, 4.397546375596078e-5, 21963.0)
29660	(-0.4326284517601928, 4.395668618463922e-5, 21963.0)
29680	(-0.43256550779886055, 4.393792883439379e-5, 21963.0)
29700	(-0.43250259344289366, 4.3919191668395515e-5, 21963.0)
29720	(-0.43243970865977627, 4.390047464980289e-5, 21963.0)
29740	(-0.4323768534170524, 4.388177774160689e-5, 21963.0)
29760	(-0.4323140276823253, 4.38631009072511e-5, 21963.0)
29780	(-0.43225123142325744, 4.384444411016664e-5, 21963.0)
29800	(-0.43218846460757077, 4.3825807313617265e-5, 21963.0)
29820	(-0.4321257272030458, 4.3807190481435715e-5, 21963.0)
29840	(-0.43206301917752254, 4.37885935768998e-5, 21963.0)
29860	(-0.432000340498899, 4.3770016564166545e-5, 21963.0)
29880	(-0.4319376911351323, 4.375145940676054e-5, 21963.0)
29900	(-0.43187507105423767, 4.3732922068775636e-5, 21963.0)
29920	(-0.43181248022428875, 4.371440451413844e-5, 21963.0)
29940	(-0.43174991861341744, 4.369590670687971e-5, 21963.0)
29960	(-0.4316873861898135, 4.367742861125073e-5, 21963.0)
29980	(-0.4316248829217246, 4.365897019152949e-5, 21963.0)
30000	(-0.43156240877745583, 4.364053141217582e-5, 21963.0)
 15.981438 seconds (26.16 M allocations: 36.025 GiB, 6.22% gc time)
β_orig = vcat(grpmat * collect(V.β[1:end-2]), collect(V.β)[end-1:end]);
for (v, β) in zip(variable_names_replicated[V.β .!= 0], V.β[V.β .!= 0])
    println("$v\t$β")
end
KEGG:00280: Valine, leucine and isoleucine degradation	ABAT	4-aminobutyrate aminotransferase	0.000832354413401785
KEGG:00280: Valine, leucine and isoleucine degradation	AUH	AU RNA binding protein/enoyl-CoA hydratase	-0.0014593426888791473
KEGG:00280: Valine, leucine and isoleucine degradation	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010615725170478396
KEGG:00280: Valine, leucine and isoleucine degradation	IVD	isovaleryl-CoA dehydrogenase	-0.0009348559171503038
KEGG:00280: Valine, leucine and isoleucine degradation	MCCC1	methylcrotonoyl-CoA carboxylase 1 (alpha)	8.306605556755163e-5
KEGG:00280: Valine, leucine and isoleucine degradation	MCCC2	methylcrotonoyl-CoA carboxylase 2 (beta)	-0.0007834944198441148
KEGG:00280: Valine, leucine and isoleucine degradation	MUT	methylmalonyl CoA mutase	0.002754888016414543
KEGG:04727: GABAergic synapse	ABAT	4-aminobutyrate aminotransferase	0.0008232735329612726
KEGG:04727: GABAergic synapse	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.001465846338853148
KEGG:04727: GABAergic synapse	PRKCA	protein kinase C, alpha	-5.90173621762013e-6
KEGG:04727: GABAergic synapse	PRKX	protein kinase, X-linked	0.00038625398878852044
KEGG:01100: Metabolic pathways	ABAT	4-aminobutyrate aminotransferase	0.0008361539792630326
KEGG:01100: Metabolic pathways	ACADL	acyl-CoA dehydrogenase, long chain	0.0009853161793717312
KEGG:01100: Metabolic pathways	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030292702181800245
KEGG:01100: Metabolic pathways	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023384057178505286
KEGG:01100: Metabolic pathways	ALLC	allantoicase	-0.000925934437890245
KEGG:01100: Metabolic pathways	ALOX12	arachidonate 12-lipoxygenase	-0.0019606743810480515
KEGG:01100: Metabolic pathways	AMD1	adenosylmethionine decarboxylase 1	-0.002535890300186689
KEGG:01100: Metabolic pathways	ASS1	argininosuccinate synthase 1	0.0001442647137212182
KEGG:01100: Metabolic pathways	AUH	AU RNA binding protein/enoyl-CoA hydratase	-0.0014668253656568752
KEGG:01100: Metabolic pathways	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020747510439733977
KEGG:01100: Metabolic pathways	CBS	cystathionine-beta-synthase	0.001522422413483285
KEGG:01100: Metabolic pathways	CPOX	coproporphyrinogen oxidase	0.0012789641964398662
KEGG:01100: Metabolic pathways	CTH	cystathionine gamma-lyase	0.0017546337885964072
KEGG:01100: Metabolic pathways	CTPS1	CTP synthase 1	-0.0004215525129638922
KEGG:01100: Metabolic pathways	CTPS2	CTP synthase 2	0.0017650016553290636
KEGG:01100: Metabolic pathways	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047356623759338797
KEGG:01100: Metabolic pathways	DCT	dopachrome tautomerase	-0.002360766795992877
KEGG:01100: Metabolic pathways	DHCR24	24-dehydrocholesterol reductase	-0.001713739776933617
KEGG:01100: Metabolic pathways	DHFR	dihydrofolate reductase	-0.0003076937765407045
KEGG:01100: Metabolic pathways	DTYMK	deoxythymidylate kinase (thymidylate kinase)	0.0034935954624852597
KEGG:01100: Metabolic pathways	GAL3ST1	galactose-3-O-sulfotransferase 1	0.0018631853227812844
KEGG:01100: Metabolic pathways	GALK2	galactokinase 2	3.174981063618624e-5
KEGG:01100: Metabolic pathways	GALNT6	polypeptide N-acetylgalactosaminyltransferase 6	-0.0017830737236985239
KEGG:01100: Metabolic pathways	GCDH	glutaryl-CoA dehydrogenase	-5.142324143013573e-6
KEGG:01100: Metabolic pathways	GCLM	glutamate-cysteine ligase, modifier subunit	-0.0037732217757471525
KEGG:01100: Metabolic pathways	GCNT1	glucosaminyl (N-acetyl) transferase 1, core 2	0.0006985769533269947
KEGG:01100: Metabolic pathways	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.002441112713335806
KEGG:01100: Metabolic pathways	GCNT3	glucosaminyl (N-acetyl) transferase 3, mucin type	-0.0023204484305728522
KEGG:01100: Metabolic pathways	GCNT4	glucosaminyl (N-acetyl) transferase 4, core 2	0.0004535246682822451
KEGG:01100: Metabolic pathways	GLUD2	glutamate dehydrogenase 2	-0.0006607507670226813
KEGG:01100: Metabolic pathways	GMPS	guanine monphosphate synthase	0.0017809600837371212
KEGG:01100: Metabolic pathways	GUK1	guanylate kinase 1	0.003284003228292134
KEGG:01100: Metabolic pathways	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010678229674893761
KEGG:01100: Metabolic pathways	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.0011894467283326516
KEGG:01100: Metabolic pathways	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011670301666150762
KEGG:01100: Metabolic pathways	HSD17B6	hydroxysteroid (17-beta) dehydrogenase 6	-0.0008712071093238521
KEGG:01100: Metabolic pathways	IDO1	indoleamine 2,3-dioxygenase 1	0.0012307680167228249
KEGG:01100: Metabolic pathways	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018789353029630802
KEGG:01100: Metabolic pathways	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.00034950096342178943
KEGG:01100: Metabolic pathways	INPP4B	inositol polyphosphate-4-phosphatase, type II, 105kDa	0.0002893933596837727
KEGG:01100: Metabolic pathways	IVD	isovaleryl-CoA dehydrogenase	-0.0009384574293990823
KEGG:01100: Metabolic pathways	LDHC	lactate dehydrogenase C	0.0014884182403979078
KEGG:01100: Metabolic pathways	LIAS	lipoic acid synthetase	-0.0005559477430808899
KEGG:01100: Metabolic pathways	MCCC1	methylcrotonoyl-CoA carboxylase 1 (alpha)	8.574978939150557e-5
KEGG:01100: Metabolic pathways	MCCC2	methylcrotonoyl-CoA carboxylase 2 (beta)	-0.0007881466527775403
KEGG:01100: Metabolic pathways	MGAM	maltase-glucoamylase (alpha-glucosidase)	-0.0013146570407050657
KEGG:01100: Metabolic pathways	MTAP	methylthioadenosine phosphorylase	0.002668361053392182
KEGG:01100: Metabolic pathways	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006655943430386315
KEGG:01100: Metabolic pathways	MUT	methylmalonyl CoA mutase	0.002767429885242205
KEGG:01100: Metabolic pathways	ODC1	ornithine decarboxylase 1	0.0008286228438253796
KEGG:01100: Metabolic pathways	OGDH	oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide)	-0.0002956255707684113
KEGG:01100: Metabolic pathways	PGLS	6-phosphogluconolactonase	0.0017539382257704052
KEGG:01100: Metabolic pathways	PHGDH	phosphoglycerate dehydrogenase	0.0002951364524401766
KEGG:01100: Metabolic pathways	PLA2G5	phospholipase A2, group V	0.002085461055352198
KEGG:01100: Metabolic pathways	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001551250705580811
KEGG:01100: Metabolic pathways	PNPO	pyridoxamine 5'-phosphate oxidase	-0.0010955847891319296
KEGG:01100: Metabolic pathways	POLA1	polymerase (DNA directed), alpha 1, catalytic subunit	0.0012769114916353396
KEGG:01100: Metabolic pathways	POLA2	polymerase (DNA directed), alpha 2, accessory subunit	-0.0014984362498909225
KEGG:01100: Metabolic pathways	POLD1	polymerase (DNA directed), delta 1, catalytic subunit	-0.00044560935432407103
KEGG:01100: Metabolic pathways	POLD2	polymerase (DNA directed), delta 2, accessory subunit	0.000742147794945639
KEGG:01100: Metabolic pathways	POLD3	polymerase (DNA-directed), delta 3, accessory subunit	0.0017466587412103053
KEGG:01100: Metabolic pathways	POLD4	polymerase (DNA-directed), delta 4, accessory subunit	-0.0006409905849416637
KEGG:01100: Metabolic pathways	POLE	polymerase (DNA directed), epsilon, catalytic subunit	0.0029581383098528664
KEGG:01100: Metabolic pathways	POLE2	polymerase (DNA directed), epsilon 2, accessory subunit	0.0013307107678158523
KEGG:01100: Metabolic pathways	POLE3	polymerase (DNA directed), epsilon 3, accessory subunit	0.0008084517388967189
KEGG:01100: Metabolic pathways	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018615916236063405
KEGG:01100: Metabolic pathways	PRIM1	primase, DNA, polypeptide 1 (49kDa)	0.0006376004836594555
KEGG:01100: Metabolic pathways	PRIM2	primase, DNA, polypeptide 2 (58kDa)	-0.0008903320119452114
KEGG:01100: Metabolic pathways	PSAT1	phosphoserine aminotransferase 1	-0.0007241305025313407
KEGG:01100: Metabolic pathways	PSPH	phosphoserine phosphatase	-0.001940838337812198
KEGG:01100: Metabolic pathways	QDPR	quinoid dihydropteridine reductase	-0.0028658299617820436
KEGG:01100: Metabolic pathways	RRM1	ribonucleotide reductase M1	0.0019181942335011154
KEGG:01100: Metabolic pathways	RRM2	ribonucleotide reductase M2	-0.0005663338491549914
KEGG:01100: Metabolic pathways	SHMT2	serine hydroxymethyltransferase 2 (mitochondrial)	-0.0011001374615877283
KEGG:01100: Metabolic pathways	SORD	sorbitol dehydrogenase	-0.0020272390844878235
KEGG:01100: Metabolic pathways	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0019057089696524504
KEGG:01100: Metabolic pathways	SPHK1	sphingosine kinase 1	0.0018174636412165578
KEGG:01100: Metabolic pathways	SPR	sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase)	-0.0012378419013538608
KEGG:01100: Metabolic pathways	TAT	tyrosine aminotransferase	0.0010569571988997724
KEGG:01100: Metabolic pathways	TH	tyrosine hydroxylase	-0.0003428729676016945
KEGG:01100: Metabolic pathways	TYMS	thymidylate synthetase	0.0015685929022796513
KEGG:01100: Metabolic pathways	UGCG	UDP-glucose ceramide glucosyltransferase	0.0003693509631973448
KEGG:01100: Metabolic pathways	UGDH	UDP-glucose 6-dehydrogenase	0.0005025506410051844
KEGG:01100: Metabolic pathways	UGP2	UDP-glucose pyrophosphorylase 2	0.0007901636826903186
KEGG:01100: Metabolic pathways	UGT8	UDP glycosyltransferase 8	0.0024046174229095845
KEGG:00250: Alanine, aspartate and glutamate metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008330016098156052
KEGG:00250: Alanine, aspartate and glutamate metabolism	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023280289143487445
KEGG:00250: Alanine, aspartate and glutamate metabolism	ASS1	argininosuccinate synthase 1	0.00014221332941440792
KEGG:00250: Alanine, aspartate and glutamate metabolism	GLUD2	glutamate dehydrogenase 2	-0.000658842357029824
KEGG:00640: Propanoate metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008383848057490671
KEGG:00640: Propanoate metabolism	LDHC	lactate dehydrogenase C	0.001492969939971959
KEGG:00640: Propanoate metabolism	MUT	methylmalonyl CoA mutase	0.002774188975254404
KEGG:00410: beta-Alanine metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008217362443510851
KEGG:00650: Butanoate metabolism	ABAT	4-aminobutyrate aminotransferase	0.0008342785686320108
KEGG:00650: Butanoate metabolism	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023314907318213746
KEGG:00650: Butanoate metabolism	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020734363851731568
KEGG:00650: Butanoate metabolism	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010643922027909467
GO:0001666: response to hypoxia	ABAT	4-aminobutyrate aminotransferase	0.0008334434534379149
GO:0001666: response to hypoxia	ADM	adrenomedullin	0.0022388125598973465
GO:0001666: response to hypoxia	AGER	advanced glycosylation end product-specific receptor	-0.00017426454237396923
GO:0001666: response to hypoxia	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029141508436547
GO:0001666: response to hypoxia	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005354719528487099
GO:0001666: response to hypoxia	CCL2	chemokine (C-C motif) ligand 2	0.0008172213365582937
GO:0001666: response to hypoxia	CD24	CD24 molecule	0.0010725532147139423
GO:0001666: response to hypoxia	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007788010520266243
GO:0001666: response to hypoxia	CRYAB	crystallin, alpha B	0.0009855156589479081
GO:0001666: response to hypoxia	CST3	cystatin C	-7.084825260829521e-5
GO:0001666: response to hypoxia	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021184929840992956
GO:0001666: response to hypoxia	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012092035888901776
GO:0001666: response to hypoxia	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007954308332594613
GO:0001666: response to hypoxia	DRD2	dopamine receptor D2	-0.0002341132496289484
GO:0001666: response to hypoxia	ENG	endoglin	0.0008271176427567822
GO:0001666: response to hypoxia	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006464543407707824
GO:0001666: response to hypoxia	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007812013655777393
GO:0001666: response to hypoxia	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.00065956035474646
GO:0001666: response to hypoxia	LEP	leptin	0.0031927134861560623
GO:0001666: response to hypoxia	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011323873096091162
GO:0001666: response to hypoxia	PML	promyelocytic leukemia	-0.0006798120904419596
GO:0001666: response to hypoxia	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014994412590703225
GO:0001666: response to hypoxia	SLC11A2	solute carrier family 11 (proton-coupled divalent metal ion transporter), member 2	-0.0006653504084603696
GO:0001666: response to hypoxia	TFRC	transferrin receptor	0.001084933046722414
GO:0001666: response to hypoxia	TGFB1	transforming growth factor, beta 1	-7.324269878783429e-5
GO:0001666: response to hypoxia	TGFB2	transforming growth factor, beta 2	-0.001059988161415871
GO:0001666: response to hypoxia	TGFB3	transforming growth factor, beta 3	-0.0018251677902155683
GO:0001666: response to hypoxia	TH	tyrosine hydroxylase	-0.0003421234148997643
GO:0001666: response to hypoxia	THBS1	thrombospondin 1	-0.0010365502924975871
GO:0001666: response to hypoxia	TXN2	thioredoxin 2	0.001383563643594249
GO:0001666: response to hypoxia	VEGFA	vascular endothelial growth factor A	0.0005957623131915805
GO:0007268: synaptic transmission	ABAT	4-aminobutyrate aminotransferase	0.0008344128582778236
GO:0007268: synaptic transmission	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023257367857581444
GO:0007268: synaptic transmission	ASIC2	acid-sensing (proton-gated) ion channel 2	0.00227700562483292
GO:0007268: synaptic transmission	BCHE	butyrylcholinesterase	-5.891714260374862e-6
GO:0007268: synaptic transmission	CACNB3	calcium channel, voltage-dependent, beta 3 subunit	0.00021248498616726843
GO:0007268: synaptic transmission	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007771671025138415
GO:0007268: synaptic transmission	CREB1	cAMP responsive element binding protein 1	0.0006560337387386202
GO:0007268: synaptic transmission	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011771406287013875
GO:0007268: synaptic transmission	DRD4	dopamine receptor D4	-0.0019426101743123018
GO:0007268: synaptic transmission	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.001481994643234623
GO:0007268: synaptic transmission	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.00023303218514897286
GO:0007268: synaptic transmission	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005243373591696027
GO:0007268: synaptic transmission	HTR6	5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled	-0.0010808645611208793
GO:0007268: synaptic transmission	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007757206538099181
GO:0007268: synaptic transmission	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006552123640800505
GO:0007268: synaptic transmission	KCNV2	potassium channel, subfamily V, member 2	0.0009250237892459798
GO:0007268: synaptic transmission	LRP6	low density lipoprotein receptor-related protein 6	0.00014822359348205626
GO:0007268: synaptic transmission	PICK1	protein interacting with PRKCA 1	-0.0009541127470417694
GO:0007268: synaptic transmission	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015258877278244253
GO:0007268: synaptic transmission	PRKCA	protein kinase C, alpha	-6.1412231009825244e-6
GO:0007268: synaptic transmission	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001496415240446442
GO:0007268: synaptic transmission	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.002510873754983414
GO:0007268: synaptic transmission	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.000899192778094992
GO:0007268: synaptic transmission	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031174552126335174
GO:0007268: synaptic transmission	SLC5A7	solute carrier family 5 (sodium/choline cotransporter), member 7	0.002009606065392056
GO:0007268: synaptic transmission	SYT1	synaptotagmin I	-0.0014400204030124305
GO:0007269: neurotransmitter secretion	ABAT	4-aminobutyrate aminotransferase	0.0008382109591487196
GO:0007269: neurotransmitter secretion	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023423281457344222
GO:0007269: neurotransmitter secretion	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0009061343508545291
GO:0007269: neurotransmitter secretion	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031362699928707705
GO:0007269: neurotransmitter secretion	SLC5A7	solute carrier family 5 (sodium/choline cotransporter), member 7	0.0020197735643882743
GO:0007269: neurotransmitter secretion	SYT1	synaptotagmin I	-0.0014518725800134707
GO:0007269: neurotransmitter secretion	WNT7A	wingless-type MMTV integration site family, member 7A	1.9218868493483478e-5
GO:0007620: copulation	ABAT	4-aminobutyrate aminotransferase	0.0008306490238316076
GO:0007620: copulation	PI3	peptidase inhibitor 3, skin-derived	-0.001031299010931096
GO:0007626: locomotory behavior	ABAT	4-aminobutyrate aminotransferase	0.000818802044231677
GO:0007626: locomotory behavior	AVP	arginine vasopressin	-0.0009119172021728826
GO:0007626: locomotory behavior	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007604539753433606
GO:0007626: locomotory behavior	DRD2	dopamine receptor D2	-0.0002304138867137122
GO:0007626: locomotory behavior	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.0011642187897423887
GO:0007626: locomotory behavior	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005148148706419105
GO:0007626: locomotory behavior	HTT	huntingtin	-0.0009518194507996055
GO:0007626: locomotory behavior	PTEN	phosphatase and tensin homolog	2.4547602115369246e-5
GO:0007626: locomotory behavior	TH	tyrosine hydroxylase	-0.00033776756931749006
GO:0009449: gamma-aminobutyric acid biosynthetic process	ABAT	4-aminobutyrate aminotransferase	0.0008414548467394139
GO:0009449: gamma-aminobutyric acid biosynthetic process	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031463396344390097
GO:0009450: gamma-aminobutyric acid catabolic process	ABAT	4-aminobutyrate aminotransferase	0.0008384285830425876
GO:0009450: gamma-aminobutyric acid catabolic process	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023452776173856042
GO:0010039: response to iron ion	ABAT	4-aminobutyrate aminotransferase	0.0008341486169944328
GO:0010039: response to iron ion	BCL2	B-cell CLL/lymphoma 2	-5.3147746697043645e-6
GO:0010039: response to iron ion	CCND1	cyclin D1	-0.002640764841484498
GO:0010039: response to iron ion	CPOX	coproporphyrinogen oxidase	0.0012771007140909795
GO:0010039: response to iron ion	DRD2	dopamine receptor D2	-0.00023434337596458938
GO:0010039: response to iron ion	SLC11A2	solute carrier family 11 (proton-coupled divalent metal ion transporter), member 2	-0.0006660535507818989
GO:0010039: response to iron ion	TFRC	transferrin receptor	0.0010863007139147046
GO:0031652: positive regulation of heat generation	ABAT	4-aminobutyrate aminotransferase	0.0008217362443510851
GO:0032024: positive regulation of insulin secretion	ABAT	4-aminobutyrate aminotransferase	0.0008012149650160559
GO:0032024: positive regulation of insulin secretion	GJA1	gap junction protein, alpha 1, 43kDa	-0.0001415710709742181
GO:0032024: positive regulation of insulin secretion	ISL1	ISL LIM homeobox 1	8.229230395477163e-5
GO:0032024: positive regulation of insulin secretion	JAK2	Janus kinase 2	-3.7318581305271765e-5
GO:0032024: positive regulation of insulin secretion	SOX4	SRY (sex determining region Y)-box 4	-4.347638979257245e-5
GO:0032024: positive regulation of insulin secretion	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005478985119265806
GO:0035094: response to nicotine	ABAT	4-aminobutyrate aminotransferase	0.0008162557589217792
GO:0035094: response to nicotine	AVP	arginine vasopressin	-0.0009092874589890045
GO:0035094: response to nicotine	BCL2	B-cell CLL/lymphoma 2	-5.086636827417194e-6
GO:0035094: response to nicotine	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007583278132899442
GO:0035094: response to nicotine	DRD2	dopamine receptor D2	-0.0002300111499356166
GO:0035094: response to nicotine	GPX1	glutathione peroxidase 1	0.00038673054565649677
GO:0035094: response to nicotine	HDAC2	histone deacetylase 2	-0.0011885414992245907
GO:0035094: response to nicotine	HMOX1	heme oxygenase (decycling) 1	-0.0002107114039207383
GO:0035094: response to nicotine	PDX1	pancreatic and duodenal homeobox 1	0.0002469304872419898
GO:0035094: response to nicotine	STAR	steroidogenic acute regulatory protein	0.0008692233019067948
GO:0042135: neurotransmitter catabolic process	ABAT	4-aminobutyrate aminotransferase	0.0008384285830425876
GO:0042135: neurotransmitter catabolic process	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.0023452776173856042
GO:0042493: response to drug	ABAT	4-aminobutyrate aminotransferase	0.0008321786943666627
GO:0042493: response to drug	AOC1	amine oxidase, copper containing 1	-0.001420914896464389
GO:0042493: response to drug	APOD	apolipoprotein D	0.0026237076376514653
GO:0042493: response to drug	ASS1	argininosuccinate synthase 1	0.00014194170651174348
GO:0042493: response to drug	BAK1	BCL2-antagonist/killer 1	-0.0018729836222525888
GO:0042493: response to drug	BAX	BCL2-associated X protein	-0.0004245802503364798
GO:0042493: response to drug	BCHE	butyrylcholinesterase	-6.491329207779039e-6
GO:0042493: response to drug	BCL2	B-cell CLL/lymphoma 2	-5.133173754918831e-6
GO:0042493: response to drug	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005348390110634778
GO:0042493: response to drug	CCNB1	cyclin B1	-0.0008812927404760955
GO:0042493: response to drug	CCND1	cyclin D1	-0.0026276380682070844
GO:0042493: response to drug	CCNE1	cyclin E1	0.0003702280230757504
GO:0042493: response to drug	CDH3	cadherin 3, type 1, P-cadherin (placental)	-0.001228966077452537
GO:0042493: response to drug	COL1A1	collagen, type I, alpha 1	-0.0005247261735010596
GO:0042493: response to drug	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.001271069912092208
GO:0042493: response to drug	CREB1	cAMP responsive element binding protein 1	0.0006567835291725943
GO:0042493: response to drug	CST3	cystatin C	-6.962448601715977e-5
GO:0042493: response to drug	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011684991017535417
GO:0042493: response to drug	CTPS1	CTP synthase 1	-0.00042068978063569066
GO:0042493: response to drug	DRD2	dopamine receptor D2	-0.00023377312726287957
GO:0042493: response to drug	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009820486763327393
GO:0042493: response to drug	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014818892879008394
GO:0042493: response to drug	GATA3	GATA binding protein 3	-3.884231995012499e-5
GO:0042493: response to drug	GATA4	GATA binding protein 4	-0.0010929060562918144
GO:0042493: response to drug	GATA6	GATA binding protein 6	-2.8269350521338514e-5
GO:0042493: response to drug	GCLM	glutamate-cysteine ligase, modifier subunit	-0.003755942230585456
GO:0042493: response to drug	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.0003144384741648852
GO:0042493: response to drug	HDAC2	histone deacetylase 2	-0.0012056782378296587
GO:0042493: response to drug	HMGB2	high mobility group box 2	0.0003057390485903441
GO:0042493: response to drug	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005239845147079952
GO:0042493: response to drug	ICAM1	intercellular adhesion molecule 1	0.0007285199041821114
GO:0042493: response to drug	IFNG	interferon, gamma	-4.888145172704557e-5
GO:0042493: response to drug	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014438128930480143
GO:0042493: response to drug	IL4	interleukin 4	0.0002594464935783003
GO:0042493: response to drug	INHBA	inhibin, beta A	-0.0013498319703095446
GO:0042493: response to drug	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0013976669336090662
GO:0042493: response to drug	LOX	lysyl oxidase	-0.00057525295769416
GO:0042493: response to drug	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009304291800217337
GO:0042493: response to drug	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014181651652112254
GO:0042493: response to drug	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.0002918392008695353
GO:0042493: response to drug	MCM7	minichromosome maintenance complex component 7	-0.0016415981644914992
GO:0042493: response to drug	MDK	midkine (neurite growth-promoting factor 2)	0.001661412319806355
GO:0042493: response to drug	MGMT	O-6-methylguanine-DNA methyltransferase	0.0004062990333310251
GO:0042493: response to drug	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042493725485866213
GO:0042493: response to drug	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011347891996923503
GO:0042493: response to drug	PDX1	pancreatic and duodenal homeobox 1	0.0002566008581639894
GO:0042493: response to drug	POR	P450 (cytochrome) oxidoreductase	0.0004564298553459018
GO:0042493: response to drug	PTCH1	patched 1	-6.604529345629728e-5
GO:0042493: response to drug	PTEN	phosphatase and tensin homolog	1.7533873403730863e-5
GO:0042493: response to drug	PTN	pleiotrophin	0.00030048029812464964
GO:0042493: response to drug	RAD51	RAD51 recombinase	-0.0018583682484856416
GO:0042493: response to drug	RET	ret proto-oncogene	-0.0004905437144619258
GO:0042493: response to drug	SEMA3C	sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C	-0.00022098422485490046
GO:0042493: response to drug	SFRP1	secreted frizzled-related protein 1	0.0012784513667955747
GO:0042493: response to drug	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031160119825241386
GO:0042493: response to drug	SORD	sorbitol dehydrogenase	-0.0020159685579222656
GO:0042493: response to drug	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006417811924567621
GO:0042493: response to drug	STAR	steroidogenic acute regulatory protein	0.0008928183981245768
GO:0042493: response to drug	TGFB1	transforming growth factor, beta 1	-7.280948934419738e-5
GO:0042493: response to drug	TGFB2	transforming growth factor, beta 2	-0.0010573617249044027
GO:0042493: response to drug	THBS1	thrombospondin 1	-0.0010341382726313892
GO:0042493: response to drug	THRA	thyroid hormone receptor, alpha	0.0007620199142163864
GO:0042493: response to drug	TP73	tumor protein p73	0.0010261516026832194
GO:0042493: response to drug	TXN2	thioredoxin 2	0.001381183423935037
GO:0042493: response to drug	TYMS	thymidylate synthetase	0.0015582612076874417
GO:0042493: response to drug	VEGFC	vascular endothelial growth factor C	-0.0033586098501147362
GO:0042493: response to drug	VLDLR	very low density lipoprotein receptor	0.0009510405671015777
GO:0042493: response to drug	XBP1	X-box binding protein 1	0.00026695250118882264
GO:0045471: response to ethanol	ABAT	4-aminobutyrate aminotransferase	0.0008299947113849656
GO:0045471: response to ethanol	AVP	arginine vasopressin	-0.0009337376715532952
GO:0045471: response to ethanol	BAK1	BCL2-antagonist/killer 1	-0.0018691442589787513
GO:0045471: response to ethanol	CCL2	chemokine (C-C motif) ligand 2	0.0008139543961952794
GO:0045471: response to ethanol	CCND1	cyclin D1	-0.0026223255119882023
GO:0045471: response to ethanol	CCNE1	cyclin E1	0.000369873320706469
GO:0045471: response to ethanol	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007754511338242427
GO:0045471: response to ethanol	EGR1	early growth response 1	0.0010891728556308685
GO:0045471: response to ethanol	GATA3	GATA binding protein 3	-3.9294739434567016e-5
GO:0045471: response to ethanol	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.00031353561000826123
GO:0045471: response to ethanol	ICAM1	intercellular adhesion molecule 1	0.0007273693293157989
GO:0045471: response to ethanol	IL4	interleukin 4	0.0002590132979181276
GO:0045471: response to ethanol	MGMT	O-6-methylguanine-DNA methyltransferase	0.00040568090534823313
GO:0045471: response to ethanol	PTEN	phosphatase and tensin homolog	1.758651591112624e-5
GO:0045471: response to ethanol	RXRA	retinoid X receptor, alpha	0.001110996827210531
GO:0045471: response to ethanol	STAR	steroidogenic acute regulatory protein	0.0008910161245458172
GO:0045471: response to ethanol	TH	tyrosine hydroxylase	-0.00034120371585519207
GO:0045471: response to ethanol	TYMS	thymidylate synthetase	0.0015551981636797306
GO:0045776: negative regulation of blood pressure	ABAT	4-aminobutyrate aminotransferase	0.0008395157508078791
GO:0045776: negative regulation of blood pressure	DRD2	dopamine receptor D2	-0.00023535337223040115
GO:0045776: negative regulation of blood pressure	VEGFC	vascular endothelial growth factor C	-0.0033898641162820277
GO:0048148: behavioral response to cocaine	ABAT	4-aminobutyrate aminotransferase	0.0008314822091479578
GO:0048148: behavioral response to cocaine	DRD2	dopamine receptor D2	-0.000232865389467014
GO:0048148: behavioral response to cocaine	DRD4	dopamine receptor D4	-0.0019342023186998318
KEGG:02010: ABC transporters	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0006355: regulation of transcription, DNA-templated	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002341665434571339
GO:0006355: regulation of transcription, DNA-templated	ACVRL1	activin A receptor type II-like 1	0.0019461451263920165
GO:0006355: regulation of transcription, DNA-templated	APEX1	APEX nuclease (multifunctional DNA repair enzyme) 1	0.00020012066304845745
GO:0006355: regulation of transcription, DNA-templated	ATF5	activating transcription factor 5	-0.002738417394466573
GO:0006355: regulation of transcription, DNA-templated	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004858616370202325
GO:0006355: regulation of transcription, DNA-templated	CASP8AP2	caspase 8 associated protein 2	0.0012735027160679787
GO:0006355: regulation of transcription, DNA-templated	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.00027454497597901374
GO:0006355: regulation of transcription, DNA-templated	CELSR2	cadherin, EGF LAG seven-pass G-type receptor 2	-0.0011360981432418868
GO:0006355: regulation of transcription, DNA-templated	CHAF1B	chromatin assembly factor 1, subunit B (p60)	0.006292511066352086
GO:0006355: regulation of transcription, DNA-templated	CHD3	chromodomain helicase DNA binding protein 3	0.00011917125375918129
GO:0006355: regulation of transcription, DNA-templated	CLOCK	clock circadian regulator	0.00020035738705752543
GO:0006355: regulation of transcription, DNA-templated	DAXX	death-domain associated protein	0.0008926960114535765
GO:0006355: regulation of transcription, DNA-templated	DLX6	distal-less homeobox 6	-0.00018007477071055284
GO:0006355: regulation of transcription, DNA-templated	E2F1	E2F transcription factor 1	0.002100173092073431
GO:0006355: regulation of transcription, DNA-templated	ENG	endoglin	0.0008277045008275167
GO:0006355: regulation of transcription, DNA-templated	ESR1	estrogen receptor 1	-0.0009490519211270114
GO:0006355: regulation of transcription, DNA-templated	EYA3	EYA transcriptional coactivator and phosphatase 3	0.0008375143974783712
GO:0006355: regulation of transcription, DNA-templated	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.0001369075183342161
GO:0006355: regulation of transcription, DNA-templated	FOXC1	forkhead box C1	-2.255163685967166e-5
GO:0006355: regulation of transcription, DNA-templated	FOXM1	forkhead box M1	0.00019711988572973025
GO:0006355: regulation of transcription, DNA-templated	FZD7	frizzled class receptor 7	0.0010715426643732198
GO:0006355: regulation of transcription, DNA-templated	GATA4	GATA binding protein 4	-0.0010960469903292568
GO:0006355: regulation of transcription, DNA-templated	GLRX2	glutaredoxin 2	0.0011173084831466256
GO:0006355: regulation of transcription, DNA-templated	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.000647380220042029
GO:0006355: regulation of transcription, DNA-templated	HINFP	histone H4 transcription factor	0.00099352934333665
GO:0006355: regulation of transcription, DNA-templated	HMGA1	high mobility group AT-hook 1	-0.0003192983440858224
GO:0006355: regulation of transcription, DNA-templated	HMGA2	high mobility group AT-hook 2	0.001510893573747536
GO:0006355: regulation of transcription, DNA-templated	HMGB3	high mobility group box 3	0.0004642060883688281
GO:0006355: regulation of transcription, DNA-templated	HOXA3	homeobox A3	0.0009898676244079938
GO:0006355: regulation of transcription, DNA-templated	HOXB1	homeobox B1	0.003690960254605468
GO:0006355: regulation of transcription, DNA-templated	HOXB13	homeobox B13	0.0018279178412547706
GO:0006355: regulation of transcription, DNA-templated	HOXB2	homeobox B2	0.002777830801883462
GO:0006355: regulation of transcription, DNA-templated	HOXD13	homeobox D13	-0.0005931751328169798
GO:0006355: regulation of transcription, DNA-templated	INSR	insulin receptor	-0.0013648946786685412
GO:0006355: regulation of transcription, DNA-templated	JMJD6	jumonji domain containing 6	0.003595176943406386
GO:0006355: regulation of transcription, DNA-templated	KANK1	KN motif and ankyrin repeat domains 1	0.0025362658910803837
GO:0006355: regulation of transcription, DNA-templated	KMT2D	lysine (K)-specific methyltransferase 2D	-0.0001995535186087159
GO:0006355: regulation of transcription, DNA-templated	LHX6	LIM homeobox 6	0.0013455375779938112
GO:0006355: regulation of transcription, DNA-templated	MEF2C	myocyte enhancer factor 2C	0.0009745956786313339
GO:0006355: regulation of transcription, DNA-templated	MTERF1	mitochondrial transcription termination factor 1	0.0002865548486519687
GO:0006355: regulation of transcription, DNA-templated	NEUROD4	neuronal differentiation 4	0.0015087356138340667
GO:0006355: regulation of transcription, DNA-templated	NOTCH1	notch 1	0.0005192910047033061
GO:0006355: regulation of transcription, DNA-templated	NRBF2	nuclear receptor binding factor 2	-0.0009522439220127647
GO:0006355: regulation of transcription, DNA-templated	PADI4	peptidyl arginine deiminase, type IV	-0.0008276419108376788
GO:0006355: regulation of transcription, DNA-templated	PITX2	paired-like homeodomain 2	0.0021788242773677167
GO:0006355: regulation of transcription, DNA-templated	PML	promyelocytic leukemia	-0.0006808680696586667
GO:0006355: regulation of transcription, DNA-templated	POU1F1	POU class 1 homeobox 1	0.00013762929217908898
GO:0006355: regulation of transcription, DNA-templated	PRDM4	PR domain containing 4	0.0008414084890226068
GO:0006355: regulation of transcription, DNA-templated	PTTG1	pituitary tumor-transforming 1	-0.0003623223439162558
GO:0006355: regulation of transcription, DNA-templated	PTTG2	pituitary tumor-transforming 2	-0.0017268107379317717
GO:0006355: regulation of transcription, DNA-templated	PTTG3P	pituitary tumor-transforming 3, pseudogene	-4.039121476881644e-5
GO:0006355: regulation of transcription, DNA-templated	RBBP4	retinoblastoma binding protein 4	-0.0018629889162687448
GO:0006355: regulation of transcription, DNA-templated	RFC1	replication factor C (activator 1) 1, 145kDa	0.0010605418258528654
GO:0006355: regulation of transcription, DNA-templated	RREB1	ras responsive element binding protein 1	-0.0019840710875836205
GO:0006355: regulation of transcription, DNA-templated	SIX1	SIX homeobox 1	-0.0018722733006293452
GO:0006355: regulation of transcription, DNA-templated	SOX4	SRY (sex determining region Y)-box 4	-3.847491638180242e-5
GO:0006355: regulation of transcription, DNA-templated	TBPL1	TBP-like 1	-0.0007898968812773785
GO:0006355: regulation of transcription, DNA-templated	TBX21	T-box 21	0.00039901776835908056
GO:0006355: regulation of transcription, DNA-templated	TGFBR1	transforming growth factor, beta receptor 1	0.00034029091337871547
GO:0006355: regulation of transcription, DNA-templated	TP53	tumor protein p53	0.0011771153016190807
GO:0006355: regulation of transcription, DNA-templated	TULP3	tubby like protein 3	0.0009574557678974642
GO:0006355: regulation of transcription, DNA-templated	TXLNG	taxilin gamma	-0.000838522066702499
GO:0006355: regulation of transcription, DNA-templated	WT1	Wilms tumor 1	-0.000507551555832778
GO:0006355: regulation of transcription, DNA-templated	WWTR1	WW domain containing transcription regulator 1	0.0009013744323481762
GO:0006355: regulation of transcription, DNA-templated	YBX1	Y box binding protein 1	-0.0009151955467048587
GO:0006355: regulation of transcription, DNA-templated	ZFP36L2	ZFP36 ring finger protein-like 2	-0.00036338286685005683
GO:0006355: regulation of transcription, DNA-templated	ZNF205	zinc finger protein 205	0.0005968252310036018
GO:0006355: regulation of transcription, DNA-templated	ZNF207	zinc finger protein 207	-0.0003898340106473997
GO:0006355: regulation of transcription, DNA-templated	ZNF266	zinc finger protein 266	0.0004130464185346678
GO:0006355: regulation of transcription, DNA-templated	ZNF335	zinc finger protein 335	-0.0003652254104425741
GO:0006355: regulation of transcription, DNA-templated	ZNF442	zinc finger protein 442	0.0010595863897576068
GO:0008203: cholesterol metabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023454878101763924
GO:0008203: cholesterol metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.0001636150446681053
GO:0008203: cholesterol metabolic process	IL4	interleukin 4	0.00025965180694784954
GO:0008203: cholesterol metabolic process	LEP	leptin	0.0032021505124831787
GO:0008203: cholesterol metabolic process	LRP5	low density lipoprotein receptor-related protein 5	2.9813043403398928e-5
GO:0008203: cholesterol metabolic process	RXRA	retinoid X receptor, alpha	0.0011184340590287421
GO:0008203: cholesterol metabolic process	SOAT1	sterol O-acyltransferase 1	-0.00040835457833197046
GO:0008203: cholesterol metabolic process	STAR	steroidogenic acute regulatory protein	0.0008976499727709578
GO:0008203: cholesterol metabolic process	VLDLR	very low density lipoprotein receptor	0.000956462030179808
GO:0009720: detection of hormone stimulus	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0010033: response to organic substance	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023330672278115442
GO:0010033: response to organic substance	CREB1	cAMP responsive element binding protein 1	0.0006548028848150213
GO:0010033: response to organic substance	CRIP1	cysteine-rich protein 1 (intestinal)	0.001720436410130986
GO:0010033: response to organic substance	GLRX2	glutaredoxin 2	0.001113492904762377
GO:0010033: response to organic substance	MAPT	microtubule-associated protein tau	0.0015495420225335116
GO:0010033: response to organic substance	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006573269261983932
GO:0010033: response to organic substance	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006650579785260219
GO:0010745: negative regulation of macrophage derived foam cell differentiation	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002346638657309913
GO:0010745: negative regulation of macrophage derived foam cell differentiation	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008032537504780686
GO:0010872: regulation of cholesterol esterification	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0010875: positive regulation of cholesterol efflux	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023262710398407453
GO:0010875: positive regulation of cholesterol efflux	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007981704538679061
GO:0010875: positive regulation of cholesterol efflux	PTCH1	patched 1	-6.733786411850906e-5
GO:0010875: positive regulation of cholesterol efflux	SIRT1	sirtuin 1	-3.108596316558806e-6
GO:0010887: negative regulation of cholesterol storage	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002346638657309913
GO:0010887: negative regulation of cholesterol storage	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008032537504780686
GO:0032367: intracellular cholesterol transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023414183670599836
GO:0032367: intracellular cholesterol transport	STAR	steroidogenic acute regulatory protein	0.0008955133587820496
GO:0032367: intracellular cholesterol transport	VPS4A	vacuolar protein sorting 4 homolog A (S. cerevisiae)	-0.0006857834708294199
GO:0033344: cholesterol efflux	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023351541238514502
GO:0033344: cholesterol efflux	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005351373609785365
GO:0033344: cholesterol efflux	SOAT1	sterol O-acyltransferase 1	-0.00040815997631377283
GO:0033700: phospholipid efflux	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0033993: response to lipid	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023480539884438473
GO:0033993: response to lipid	GATA2	GATA binding protein 2	-0.0004546861240076836
GO:0033993: response to lipid	PCNA	proliferating cell nuclear antigen	0.0012333088339832432
GO:0034374: low-density lipoprotein particle remodeling	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023477349653539255
GO:0034374: low-density lipoprotein particle remodeling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011404141840943827
GO:0034374: low-density lipoprotein particle remodeling	AGTR1	angiotensin II receptor, type 1	0.00034656898233583226
GO:0034375: high-density lipoprotein particle remodeling	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0034436: glycoprotein transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002360455519220915
GO:0034436: glycoprotein transport	GUK1	guanylate kinase 1	0.0033018436125547713
GO:0034436: glycoprotein transport	VLDLR	very low density lipoprotein receptor	0.000964621653388869
GO:0042157: lipoprotein metabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0042632: cholesterol homeostasis	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002333236756042257
GO:0042632: cholesterol homeostasis	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014868902932814727
GO:0042632: cholesterol homeostasis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005350171271438002
GO:0042632: cholesterol homeostasis	CD24	CD24 molecule	0.0010673039896267873
GO:0042632: cholesterol homeostasis	HPN	hepsin	0.0031532344758925983
GO:0042632: cholesterol homeostasis	LRP5	low density lipoprotein receptor-related protein 5	3.0402724128309542e-5
GO:0042632: cholesterol homeostasis	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008000871231898232
GO:0042632: cholesterol homeostasis	SIRT1	sirtuin 1	-2.706547998239805e-6
GO:0042632: cholesterol homeostasis	SOAT1	sterol O-acyltransferase 1	-0.0004086500224572344
GO:0042632: cholesterol homeostasis	XBP1	X-box binding protein 1	0.00026859745969275584
GO:0042987: amyloid precursor protein catabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023569260999379543
GO:0042987: amyloid precursor protein catabolic process	DHCR24	24-dehydrocholesterol reductase	-0.0017218261808735025
GO:0043691: reverse cholesterol transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0044281: small molecule metabolic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002337300618454
GO:0044281: small molecule metabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009806184984740077
GO:0044281: small molecule metabolic process	ACOT8	acyl-CoA thioesterase 8	0.001135467622989283
GO:0044281: small molecule metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011316057979557492
GO:0044281: small molecule metabolic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007299030112991716
GO:0044281: small molecule metabolic process	ALOX12	arachidonate 12-lipoxygenase	-0.001951924343238544
GO:0044281: small molecule metabolic process	AMD1	adenosylmethionine decarboxylase 1	-0.0025271199410123514
GO:0044281: small molecule metabolic process	ASS1	argininosuccinate synthase 1	0.0001421003747832492
GO:0044281: small molecule metabolic process	AUH	AU RNA binding protein/enoyl-CoA hydratase	-0.0014606095431669817
GO:0044281: small molecule metabolic process	AZIN1	antizyme inhibitor 1	-0.00012711882989741336
GO:0044281: small molecule metabolic process	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020721964152094308
GO:0044281: small molecule metabolic process	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005352462335167766
GO:0044281: small molecule metabolic process	CBS	cystathionine-beta-synthase	0.0015155290105719084
GO:0044281: small molecule metabolic process	CHST15	carbohydrate (N-acetylgalactosamine 4-sulfate 6-O) sulfotransferase 15	-0.0008251421276839755
GO:0044281: small molecule metabolic process	CPOX	coproporphyrinogen oxidase	0.0012717567178886773
GO:0044281: small molecule metabolic process	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012720760621700977
GO:0044281: small molecule metabolic process	CROT	carnitine O-octanoyltransferase	-0.000438000944382506
GO:0044281: small molecule metabolic process	CTH	cystathionine gamma-lyase	0.001746934332131044
GO:0044281: small molecule metabolic process	CTPS1	CTP synthase 1	-0.0004210446504633482
GO:0044281: small molecule metabolic process	CTPS2	CTP synthase 2	0.001759035235166584
GO:0044281: small molecule metabolic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.000397554712791559
GO:0044281: small molecule metabolic process	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.0004704327577764955
GO:0044281: small molecule metabolic process	CYP4B1	cytochrome P450, family 4, subfamily B, polypeptide 1	-0.0013549255428817466
GO:0044281: small molecule metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016319722932244004
GO:0044281: small molecule metabolic process	DCT	dopachrome tautomerase	-0.002351662469383147
GO:0044281: small molecule metabolic process	DHCR24	24-dehydrocholesterol reductase	-0.001706145747730389
GO:0044281: small molecule metabolic process	DHFR	dihydrofolate reductase	-0.0003078775376554444
GO:0044281: small molecule metabolic process	DTYMK	deoxythymidylate kinase (thymidylate kinase)	0.003479384793586335
GO:0044281: small molecule metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005244086502352604
GO:0044281: small molecule metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020678983391271202
GO:0044281: small molecule metabolic process	GCDH	glutaryl-CoA dehydrogenase	-4.876941985395036e-6
GO:0044281: small molecule metabolic process	GCHFR	GTP cyclohydrolase I feedback regulator	-0.0008418507162816582
GO:0044281: small molecule metabolic process	GCLM	glutamate-cysteine ligase, modifier subunit	-0.003759066733413574
GO:0044281: small molecule metabolic process	GMPS	guanine monphosphate synthase	0.001772553998425755
GO:0044281: small molecule metabolic process	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005669395518063694
GO:0044281: small molecule metabolic process	GPX1	glutathione peroxidase 1	0.00038770796335673157
GO:0044281: small molecule metabolic process	GSTM1	glutathione S-transferase mu 1	-0.0014730010201691572
GO:0044281: small molecule metabolic process	GSTM2	glutathione S-transferase mu 2 (muscle)	-0.0019128202855439647
GO:0044281: small molecule metabolic process	GSTM3	glutathione S-transferase mu 3 (brain)	-0.0012880251258405968
GO:0044281: small molecule metabolic process	GSTP1	glutathione S-transferase pi 1	0.00023126604079261786
GO:0044281: small molecule metabolic process	GUK1	guanylate kinase 1	0.0032717822596017567
GO:0044281: small molecule metabolic process	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010627053518895474
GO:0044281: small molecule metabolic process	HMOX1	heme oxygenase (decycling) 1	-0.00021731471238639431
GO:0044281: small molecule metabolic process	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.0011850174365291718
GO:0044281: small molecule metabolic process	HS2ST1	heparan sulfate 2-O-sulfotransferase 1	-0.0008098221661686961
GO:0044281: small molecule metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011616703408892078
GO:0044281: small molecule metabolic process	IDO1	indoleamine 2,3-dioxygenase 1	0.0012247051510665395
GO:0044281: small molecule metabolic process	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018705519376337988
GO:0044281: small molecule metabolic process	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.0003471367382160138
GO:0044281: small molecule metabolic process	INPP4B	inositol polyphosphate-4-phosphatase, type II, 105kDa	0.00029002999121887187
GO:0044281: small molecule metabolic process	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.000779569355912296
GO:0044281: small molecule metabolic process	IVD	isovaleryl-CoA dehydrogenase	-0.0009353098630946369
GO:0044281: small molecule metabolic process	KPNB1	karyopherin (importin) beta 1	0.0007714731747169504
GO:0044281: small molecule metabolic process	MCCC1	methylcrotonoyl-CoA carboxylase 1 (alpha)	8.37635285703383e-5
GO:0044281: small molecule metabolic process	MCCC2	methylcrotonoyl-CoA carboxylase 2 (beta)	-0.0007843290744811764
GO:0044281: small molecule metabolic process	MED1	mediator complex subunit 1	0.0011280056167164046
GO:0044281: small molecule metabolic process	MGAM	maltase-glucoamylase (alpha-glucosidase)	-0.0013076289398003887
GO:0044281: small molecule metabolic process	MTAP	methylthioadenosine phosphorylase	0.0026559830175411385
GO:0044281: small molecule metabolic process	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006638600248168461
GO:0044281: small molecule metabolic process	MTMR2	myotubularin related protein 2	-0.0004608399973891543
GO:0044281: small molecule metabolic process	MUT	methylmalonyl CoA mutase	0.002756903032887335
GO:0044281: small molecule metabolic process	NUDT1	nudix (nucleoside diphosphate linked moiety X)-type motif 1	0.0018356933277766565
GO:0044281: small molecule metabolic process	NUP153	nucleoporin 153kDa	0.00082429902708384
GO:0044281: small molecule metabolic process	ODC1	ornithine decarboxylase 1	0.0008245338645328433
GO:0044281: small molecule metabolic process	OGDH	oxoglutarate (alpha-ketoglutarate) dehydrogenase (lipoamide)	-0.00029449443265991063
GO:0044281: small molecule metabolic process	PDK1	pyruvate dehydrogenase kinase, isozyme 1	0.0014229685868522115
GO:0044281: small molecule metabolic process	PDK2	pyruvate dehydrogenase kinase, isozyme 2	0.0014785758412337602
GO:0044281: small molecule metabolic process	PDK3	pyruvate dehydrogenase kinase, isozyme 3	0.0007714443325769015
GO:0044281: small molecule metabolic process	PEX11A	peroxisomal biogenesis factor 11 alpha	0.0007169087210258608
GO:0044281: small molecule metabolic process	PGLS	6-phosphogluconolactonase	0.0017488904597298017
GO:0044281: small molecule metabolic process	PHGDH	phosphoglycerate dehydrogenase	0.000291905240016868
GO:0044281: small molecule metabolic process	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007801866571449221
GO:0044281: small molecule metabolic process	PLA2G5	phospholipase A2, group V	0.0020774748926489033
GO:0044281: small molecule metabolic process	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001533874422983741
GO:0044281: small molecule metabolic process	PNPO	pyridoxamine 5'-phosphate oxidase	-0.0010903692355139565
GO:0044281: small molecule metabolic process	POLD1	polymerase (DNA directed), delta 1, catalytic subunit	-0.0004447284406650492
GO:0044281: small molecule metabolic process	PRKCA	protein kinase C, alpha	-5.866899738274008e-6
GO:0044281: small molecule metabolic process	PSAT1	phosphoserine aminotransferase 1	-0.0007224615812606299
GO:0044281: small molecule metabolic process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.00033161217036458345
GO:0044281: small molecule metabolic process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010944734748804521
GO:0044281: small molecule metabolic process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-5.988737176031269e-5
GO:0044281: small molecule metabolic process	PSPH	phosphoserine phosphatase	-0.0019339171391770404
GO:0044281: small molecule metabolic process	PTEN	phosphatase and tensin homolog	1.7495509986462543e-5
GO:0044281: small molecule metabolic process	QDPR	quinoid dihydropteridine reductase	-0.0028537157178306167
GO:0044281: small molecule metabolic process	RRM1	ribonucleotide reductase M1	0.0019079777013236185
GO:0044281: small molecule metabolic process	RRM2	ribonucleotide reductase M2	-0.0005665510292744961
GO:0044281: small molecule metabolic process	RXRA	retinoid X receptor, alpha	0.0011142677289570056
GO:0044281: small molecule metabolic process	SEH1L	SEH1-like (S. cerevisiae)	-0.0007321582541877548
GO:0044281: small molecule metabolic process	SLC25A37	solute carrier family 25 (mitochondrial iron transporter), member 37	-0.000278794786461284
GO:0044281: small molecule metabolic process	SLC2A5	solute carrier family 2 (facilitated glucose/fructose transporter), member 5	0.00023113879380596712
GO:0044281: small molecule metabolic process	SLC35D1	solute carrier family 35 (UDP-GlcA/UDP-GalNAc transporter), member D1	-6.698629543688235e-5
GO:0044281: small molecule metabolic process	SLC44A4	solute carrier family 44, member 4	0.0028523177523958588
GO:0044281: small molecule metabolic process	SLC6A8	solute carrier family 6 (neurotransmitter transporter), member 8	-0.0010431893460143562
GO:0044281: small molecule metabolic process	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003451699562886459
GO:0044281: small molecule metabolic process	SORD	sorbitol dehydrogenase	-0.0020177145208289137
GO:0044281: small molecule metabolic process	SPHK1	sphingosine kinase 1	0.0018094047069558865
GO:0044281: small molecule metabolic process	SPR	sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase)	-0.0012311909799859445
GO:0044281: small molecule metabolic process	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006423794498907139
GO:0044281: small molecule metabolic process	STAR	steroidogenic acute regulatory protein	0.000893604251512959
GO:0044281: small molecule metabolic process	SULT4A1	sulfotransferase family 4A, member 1	-0.0011680790625527703
GO:0044281: small molecule metabolic process	TAT	tyrosine aminotransferase	0.001052009483898624
GO:0044281: small molecule metabolic process	TH	tyrosine hydroxylase	-0.0003419874362343105
GO:0044281: small molecule metabolic process	TNFRSF21	tumor necrosis factor receptor superfamily, member 21	0.00034818714596347787
GO:0044281: small molecule metabolic process	TPR	translocated promoter region, nuclear basket protein	-0.0006965563073315007
GO:0044281: small molecule metabolic process	TYMS	thymidylate synthetase	0.0015596642566728517
GO:0044281: small molecule metabolic process	UGCG	UDP-glucose ceramide glucosyltransferase	0.0003689884025194449
GO:0044281: small molecule metabolic process	UGDH	UDP-glucose 6-dehydrogenase	0.0005017948944982196
GO:0044281: small molecule metabolic process	UGP2	UDP-glucose pyrophosphorylase 2	0.0007844667407606128
GO:0045542: positive regulation of cholesterol biosynthetic process	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023467586157089023
GO:0045542: positive regulation of cholesterol biosynthetic process	POR	P450 (cytochrome) oxidoreductase	0.00045894675342146314
GO:0055085: transmembrane transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023373963132747736
GO:0055085: transmembrane transport	ASIC2	acid-sensing (proton-gated) ion channel 2	0.0022784198591722492
GO:0055085: transmembrane transport	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.001497232630867033
GO:0055085: transmembrane transport	AVP	arginine vasopressin	-0.0009360706646363327
GO:0055085: transmembrane transport	BCL2	B-cell CLL/lymphoma 2	-4.8237896521702625e-6
GO:0055085: transmembrane transport	CLCN2	chloride channel, voltage-sensitive 2	0.001059156128788751
GO:0055085: transmembrane transport	CP	ceruloplasmin (ferroxidase)	0.0013070700736619448
GO:0055085: transmembrane transport	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014832472302783268
GO:0055085: transmembrane transport	HMOX1	heme oxygenase (decycling) 1	-0.0002172097343219471
GO:0055085: transmembrane transport	MRS2	MRS2 magnesium transporter	0.0006567646168481229
GO:0055085: transmembrane transport	NUP153	nucleoporin 153kDa	0.0008235870970853001
GO:0055085: transmembrane transport	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014977626876629016
GO:0055085: transmembrane transport	SEH1L	SEH1-like (S. cerevisiae)	-0.0007328517484202869
GO:0055085: transmembrane transport	SLC11A2	solute carrier family 11 (proton-coupled divalent metal ion transporter), member 2	-0.0006650349956668879
GO:0055085: transmembrane transport	SLC15A1	solute carrier family 15 (oligopeptide transporter), member 1	-0.002758565564227251
GO:0055085: transmembrane transport	SLC15A2	solute carrier family 15 (oligopeptide transporter), member 2	-0.00012308663479612323
GO:0055085: transmembrane transport	SLC17A3	solute carrier family 17 (organic anion transporter), member 3	-0.000866166673975572
GO:0055085: transmembrane transport	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0009006843346179446
GO:0055085: transmembrane transport	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.003119384980314284
GO:0055085: transmembrane transport	SLC1A5	solute carrier family 1 (neutral amino acid transporter), member 5	0.0015350964550970095
GO:0055085: transmembrane transport	SLC22A18	solute carrier family 22, member 18	0.0007342816565890954
GO:0055085: transmembrane transport	SLC22A4	solute carrier family 22 (organic cation/zwitterion transporter), member 4	-0.0004797831934512717
GO:0055085: transmembrane transport	SLC22A5	solute carrier family 22 (organic cation/carnitine transporter), member 5	-0.001852304629286962
GO:0055085: transmembrane transport	SLC25A44	solute carrier family 25, member 44	0.0003453198541108316
GO:0055085: transmembrane transport	SLC2A5	solute carrier family 2 (facilitated glucose/fructose transporter), member 5	0.00023101582432796127
GO:0055085: transmembrane transport	SLC31A1	solute carrier family 31 (copper transporter), member 1	-2.652141123881125e-5
GO:0055085: transmembrane transport	SLC35D1	solute carrier family 35 (UDP-GlcA/UDP-GalNAc transporter), member D1	-6.695539968320709e-5
GO:0055085: transmembrane transport	SLC39A14	solute carrier family 39 (zinc transporter), member 14	0.00019671081815350632
GO:0055085: transmembrane transport	SLC39A6	solute carrier family 39 (zinc transporter), member 6	0.00030552089901295505
GO:0055085: transmembrane transport	SLC44A4	solute carrier family 44, member 4	0.0028539441553379406
GO:0055085: transmembrane transport	SLC4A7	solute carrier family 4, sodium bicarbonate cotransporter, member 7	0.0008821552977918824
GO:0055085: transmembrane transport	SLC5A7	solute carrier family 5 (sodium/choline cotransporter), member 7	0.002010652153209131
GO:0055085: transmembrane transport	SLC7A5	solute carrier family 7 (amino acid transporter light chain, L system), member 5	-0.0025734284231520616
GO:0055085: transmembrane transport	SLC7A7	solute carrier family 7 (amino acid transporter light chain, y+L system), member 7	-0.0005985999534865753
GO:0055085: transmembrane transport	SLC7A8	solute carrier family 7 (amino acid transporter light chain, L system), member 8	-0.0004690251307187527
GO:0055085: transmembrane transport	STEAP3	STEAP family member 3, metalloreductase	0.0026075978539625254
GO:0055085: transmembrane transport	TFRC	transferrin receptor	0.001083926645180101
GO:0055085: transmembrane transport	TPR	translocated promoter region, nuclear basket protein	-0.0006968639987634032
GO:0055085: transmembrane transport	TTYH1	tweety family member 1	0.0008688345226562566
GO:0055091: phospholipid homeostasis	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:0055099: response to high density lipoprotein particle	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.0023606226924747856
GO:1901998: toxin transport	ABCG1	ATP-binding cassette, sub-family G (WHITE), member 1	-0.002346795806007113
GO:1901998: toxin transport	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029232958957215597
GO:1901998: toxin transport	DNM1	dynamin 1	-0.0013148182842815039
GO:1901998: toxin transport	LRP6	low density lipoprotein receptor-related protein 6	0.00015035712009481208
GO:1901998: toxin transport	NRP1	neuropilin 1	-0.0006458480958389626
GO:1901998: toxin transport	SLC17A3	solute carrier family 17 (organic anion transporter), member 3	-0.0008704568727983809
GO:1901998: toxin transport	SLC7A8	solute carrier family 7 (amino acid transporter light chain, L system), member 8	-0.0004731488263616594
GO:0000447: endonucleolytic cleavage in ITS1 to separate SSU-rRNA from 5.8S rRNA and LSU-rRNA from tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)	ABT1	activator of basal transcription 1	0.002580882811878861
GO:0000472: endonucleolytic cleavage to generate mature 5'-end of SSU-rRNA from (SSU-rRNA, 5.8S rRNA, LSU-rRNA)	ABT1	activator of basal transcription 1	0.002580882811878861
GO:0000480: endonucleolytic cleavage in 5'-ETS of tricistronic rRNA transcript (SSU-rRNA, 5.8S rRNA, LSU-rRNA)	ABT1	activator of basal transcription 1	0.002580882811878861
GO:0006357: regulation of transcription from RNA polymerase II promoter	ABT1	activator of basal transcription 1	0.002548599425667888
GO:0006357: regulation of transcription from RNA polymerase II promoter	ATF5	activating transcription factor 5	-0.0027426922287843605
GO:0006357: regulation of transcription from RNA polymerase II promoter	BATF	basic leucine zipper transcription factor, ATF-like	0.002042345561713186
GO:0006357: regulation of transcription from RNA polymerase II promoter	BBS7	Bardet-Biedl syndrome 7	-0.0009800454774115737
GO:0006357: regulation of transcription from RNA polymerase II promoter	CHD3	chromodomain helicase DNA binding protein 3	0.00011870809770782348
GO:0006357: regulation of transcription from RNA polymerase II promoter	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002826665662063507
GO:0006357: regulation of transcription from RNA polymerase II promoter	CLOCK	clock circadian regulator	0.00019956451248389606
GO:0006357: regulation of transcription from RNA polymerase II promoter	DEK	DEK proto-oncogene	0.002496676092612851
GO:0006357: regulation of transcription from RNA polymerase II promoter	ECM1	extracellular matrix protein 1	-0.0015634305285417939
GO:0006357: regulation of transcription from RNA polymerase II promoter	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011776085549585968
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXA2	forkhead box A2	-1.6311711549185648e-5
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017528806946937776
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXE3	forkhead box E3	0.0010535980170645683
GO:0006357: regulation of transcription from RNA polymerase II promoter	FOXO3	forkhead box O3	0.0012039046713783101
GO:0006357: regulation of transcription from RNA polymerase II promoter	GRHL2	grainyhead-like 2 (Drosophila)	0.0010091329198541837
GO:0006357: regulation of transcription from RNA polymerase II promoter	HMGB1	high mobility group box 1	-0.0007775343098847413
GO:0006357: regulation of transcription from RNA polymerase II promoter	HMGB2	high mobility group box 2	0.0003105627639700034
GO:0006357: regulation of transcription from RNA polymerase II promoter	INHBA	inhibin, beta A	-0.0013592777854372047
GO:0006357: regulation of transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.0021825337567691187
GO:0006357: regulation of transcription from RNA polymerase II promoter	PKN1	protein kinase N1	-0.001908390609875553
GO:0006357: regulation of transcription from RNA polymerase II promoter	PURA	purine-rich element binding protein A	-0.000171482235360691
GO:0006357: regulation of transcription from RNA polymerase II promoter	RAD21	RAD21 homolog (S. pombe)	-0.00010205743301588328
GO:0006357: regulation of transcription from RNA polymerase II promoter	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003465312712153091
GO:0006357: regulation of transcription from RNA polymerase II promoter	SOX10	SRY (sex determining region Y)-box 10	0.00019354372544261618
GO:0006357: regulation of transcription from RNA polymerase II promoter	STAT5A	signal transducer and activator of transcription 5A	0.0016005449419091407
GO:0006357: regulation of transcription from RNA polymerase II promoter	TBX3	T-box 3	0.0012283722603860594
GO:0006357: regulation of transcription from RNA polymerase II promoter	TCF15	transcription factor 15 (basic helix-loop-helix)	-0.0026613922801142303
GO:0006357: regulation of transcription from RNA polymerase II promoter	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005761274762007426
GO:0006357: regulation of transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010656573993014767
GO:0006357: regulation of transcription from RNA polymerase II promoter	TFCP2L1	transcription factor CP2-like 1	0.00045058761855385295
GO:0006357: regulation of transcription from RNA polymerase II promoter	TFDP1	transcription factor Dp-1	0.0014508550242735454
GO:0006357: regulation of transcription from RNA polymerase II promoter	THRA	thyroid hormone receptor, alpha	0.0007651182613818638
GO:0006357: regulation of transcription from RNA polymerase II promoter	VEGFA	vascular endothelial growth factor A	0.0005979345192633115
GO:0006357: regulation of transcription from RNA polymerase II promoter	WDR77	WD repeat domain 77	0.00013432231809843416
GO:0006357: regulation of transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.000508851223007556
GO:0006357: regulation of transcription from RNA polymerase II promoter	YY1	YY1 transcription factor	0.0013448430086207984
GO:0006366: transcription from RNA polymerase II promoter	ABT1	activator of basal transcription 1	0.0025472722006984585
GO:0006366: transcription from RNA polymerase II promoter	ALX1	ALX homeobox 1	0.002297254352941165
GO:0006366: transcription from RNA polymerase II promoter	ATF5	activating transcription factor 5	-0.0027416416805262334
GO:0006366: transcription from RNA polymerase II promoter	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004868934145365418
GO:0006366: transcription from RNA polymerase II promoter	BATF	basic leucine zipper transcription factor, ATF-like	0.002042081310521299
GO:0006366: transcription from RNA polymerase II promoter	CDC40	cell division cycle 40	0.0041752576736597425
GO:0006366: transcription from RNA polymerase II promoter	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.00027425600777316884
GO:0006366: transcription from RNA polymerase II promoter	CHD5	chromodomain helicase DNA binding protein 5	-0.0005202110736977486
GO:0006366: transcription from RNA polymerase II promoter	CLOCK	clock circadian regulator	0.00019972569283432378
GO:0006366: transcription from RNA polymerase II promoter	CREB1	cAMP responsive element binding protein 1	0.0006608582004217471
GO:0006366: transcription from RNA polymerase II promoter	DEK	DEK proto-oncogene	0.0024953548997541427
GO:0006366: transcription from RNA polymerase II promoter	DLX5	distal-less homeobox 5	-0.0032907753226698363
GO:0006366: transcription from RNA polymerase II promoter	DMRT1	doublesex and mab-3 related transcription factor 1	0.0015087448243979954
GO:0006366: transcription from RNA polymerase II promoter	EGR1	early growth response 1	0.0010957056680258271
GO:0006366: transcription from RNA polymerase II promoter	EGR2	early growth response 2	0.001443871186574729
GO:0006366: transcription from RNA polymerase II promoter	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011765086377914671
GO:0006366: transcription from RNA polymerase II promoter	ESR1	estrogen receptor 1	-0.0009513485164322883
GO:0006366: transcription from RNA polymerase II promoter	ETV4	ets variant 4	0.0001959480334893562
GO:0006366: transcription from RNA polymerase II promoter	FOXA1	forkhead box A1	2.645648113322079e-5
GO:0006366: transcription from RNA polymerase II promoter	FOXA2	forkhead box A2	-1.6394897312831168e-5
GO:0006366: transcription from RNA polymerase II promoter	FOXC1	forkhead box C1	-2.1213414545363983e-5
GO:0006366: transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.001752253623986773
GO:0006366: transcription from RNA polymerase II promoter	FOXE3	forkhead box E3	0.0010532326424197403
GO:0006366: transcription from RNA polymerase II promoter	FOXH1	forkhead box H1	-0.0013755641386214127
GO:0006366: transcription from RNA polymerase II promoter	FOXM1	forkhead box M1	0.00019856383697957974
GO:0006366: transcription from RNA polymerase II promoter	GATA2	GATA binding protein 2	-0.000453364360883813
GO:0006366: transcription from RNA polymerase II promoter	GATA3	GATA binding protein 3	-4.008793872914435e-5
GO:0006366: transcription from RNA polymerase II promoter	GATA4	GATA binding protein 4	-0.0010977494600769588
GO:0006366: transcription from RNA polymerase II promoter	GATA6	GATA binding protein 6	-2.7654404874889806e-5
GO:0006366: transcription from RNA polymerase II promoter	GLI2	GLI family zinc finger 2	0.0018581536683981124
GO:0006366: transcription from RNA polymerase II promoter	GLI3	GLI family zinc finger 3	-0.0021581246674813688
GO:0006366: transcription from RNA polymerase II promoter	GRHL2	grainyhead-like 2 (Drosophila)	0.0010088493737712763
GO:0006366: transcription from RNA polymerase II promoter	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006793749302363292
GO:0006366: transcription from RNA polymerase II promoter	HMGA1	high mobility group AT-hook 1	-0.0003188397277203902
GO:0006366: transcription from RNA polymerase II promoter	HMGA2	high mobility group AT-hook 2	0.0015122341438013316
GO:0006366: transcription from RNA polymerase II promoter	HOXA10	homeobox A10	-0.0029890960408370773
GO:0006366: transcription from RNA polymerase II promoter	HOXA5	homeobox A5	0.0010693644314674717
GO:0006366: transcription from RNA polymerase II promoter	HOXD13	homeobox D13	-0.0005931588345513611
GO:0006366: transcription from RNA polymerase II promoter	IRF7	interferon regulatory factor 7	-0.0013096129999209801
GO:0006366: transcription from RNA polymerase II promoter	ISL1	ISL LIM homeobox 1	7.844580151951693e-5
GO:0006366: transcription from RNA polymerase II promoter	KLF11	Kruppel-like factor 11	0.0006196512224498409
GO:0006366: transcription from RNA polymerase II promoter	KLF15	Kruppel-like factor 15	0.00046647625451639696
GO:0006366: transcription from RNA polymerase II promoter	KMT2A	lysine (K)-specific methyltransferase 2A	0.000662335295352567
GO:0006366: transcription from RNA polymerase II promoter	LEF1	lymphoid enhancer-binding factor 1	-0.00010032359727424022
GO:0006366: transcription from RNA polymerase II promoter	LHX1	LIM homeobox 1	-0.0007608294814884723
GO:0006366: transcription from RNA polymerase II promoter	LMO4	LIM domain only 4	0.0021171830417897842
GO:0006366: transcription from RNA polymerase II promoter	MEF2C	myocyte enhancer factor 2C	0.0009762179405557788
GO:0006366: transcription from RNA polymerase II promoter	MSX1	msh homeobox 1	-0.002776967604298557
GO:0006366: transcription from RNA polymerase II promoter	NFIB	nuclear factor I/B	0.00292867480402316
GO:0006366: transcription from RNA polymerase II promoter	NFX1	nuclear transcription factor, X-box binding 1	-6.898439822970392e-5
GO:0006366: transcription from RNA polymerase II promoter	PAX2	paired box 2	-0.0016186836670777447
GO:0006366: transcription from RNA polymerase II promoter	PAX3	paired box 3	-0.0029521020923864417
GO:0006366: transcription from RNA polymerase II promoter	PAX6	paired box 6	0.0019408539579817154
GO:0006366: transcription from RNA polymerase II promoter	PAX8	paired box 8	0.0009497071214020348
GO:0006366: transcription from RNA polymerase II promoter	PDX1	pancreatic and duodenal homeobox 1	0.0002583528469544678
GO:0006366: transcription from RNA polymerase II promoter	PHOX2B	paired-like homeobox 2b	0.0003908077470034441
GO:0006366: transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.0021816286096449774
GO:0006366: transcription from RNA polymerase II promoter	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018597504149469601
GO:0006366: transcription from RNA polymerase II promoter	POU1F1	POU class 1 homeobox 1	0.00013787380430972397
GO:0006366: transcription from RNA polymerase II promoter	PRDM4	PR domain containing 4	0.0008418544216438415
GO:0006366: transcription from RNA polymerase II promoter	PTTG1	pituitary tumor-transforming 1	-0.00036145872540921045
GO:0006366: transcription from RNA polymerase II promoter	RAD21	RAD21 homolog (S. pombe)	-0.00010210734744061769
GO:0006366: transcription from RNA polymerase II promoter	RREB1	ras responsive element binding protein 1	-0.001985997174195349
GO:0006366: transcription from RNA polymerase II promoter	SIX1	SIX homeobox 1	-0.0018746941995814426
GO:0006366: transcription from RNA polymerase II promoter	SIX3	SIX homeobox 3	0.002043417511799642
GO:0006366: transcription from RNA polymerase II promoter	SNRPB	small nuclear ribonucleoprotein polypeptides B and B1	0.0006676086128169166
GO:0006366: transcription from RNA polymerase II promoter	SOX10	SRY (sex determining region Y)-box 10	0.0001929542991030852
GO:0006366: transcription from RNA polymerase II promoter	SOX11	SRY (sex determining region Y)-box 11	-0.0002086037460190708
GO:0006366: transcription from RNA polymerase II promoter	SOX4	SRY (sex determining region Y)-box 4	-3.7470355001665765e-5
GO:0006366: transcription from RNA polymerase II promoter	SOX9	SRY (sex determining region Y)-box 9	-0.0005197028005894812
GO:0006366: transcription from RNA polymerase II promoter	TBPL1	TBP-like 1	-0.0007895771694666628
GO:0006366: transcription from RNA polymerase II promoter	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004807165369913072
GO:0006366: transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.001064701664121605
GO:0006366: transcription from RNA polymerase II promoter	THRA	thyroid hormone receptor, alpha	0.0007648602333120479
GO:0006366: transcription from RNA polymerase II promoter	TP73	tumor protein p73	0.0010304016491717311
GO:0006366: transcription from RNA polymerase II promoter	TRPS1	trichorhinophalangeal syndrome I	-0.00017915056168623755
GO:0006366: transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.0005085229322826397
GO:0006366: transcription from RNA polymerase II promoter	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009593203466696441
GO:0006366: transcription from RNA polymerase II promoter	XBP1	X-box binding protein 1	0.0002669579929930912
GO:0006366: transcription from RNA polymerase II promoter	YBX1	Y box binding protein 1	-0.0009148360015116452
GO:0006366: transcription from RNA polymerase II promoter	ZNF148	zinc finger protein 148	0.0021093563376307187
GO:0021522: spinal cord motor neuron differentiation	ABT1	activator of basal transcription 1	0.002542266267672149
GO:0021522: spinal cord motor neuron differentiation	DICER1	dicer 1, ribonuclease type III	-1.628233755668487e-5
GO:0021522: spinal cord motor neuron differentiation	ISL1	ISL LIM homeobox 1	7.842794313222358e-5
GO:0021522: spinal cord motor neuron differentiation	LMO4	LIM domain only 4	0.0021133847233919356
GO:0021522: spinal cord motor neuron differentiation	PTCH1	patched 1	-6.544972550372581e-5
GO:0021522: spinal cord motor neuron differentiation	SHH	sonic hedgehog	0.000600634764553926
GO:0021522: spinal cord motor neuron differentiation	SOX4	SRY (sex determining region Y)-box 4	-3.74794393751226e-5
GO:0034462: small-subunit processome assembly	ABT1	activator of basal transcription 1	0.002580882811878861
KEGG:03320: PPAR signaling pathway	ACADL	acyl-CoA dehydrogenase, long chain	0.0009646794784327432
KEGG:03320: PPAR signaling pathway	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012641780921739993
KEGG:03320: PPAR signaling pathway	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007937988522384976
KEGG:03320: PPAR signaling pathway	RXRA	retinoid X receptor, alpha	0.0011022238142090104
KEGG:00071: Fatty acid degradation	ACADL	acyl-CoA dehydrogenase, long chain	0.0009596892229527941
KEGG:00071: Fatty acid degradation	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012597313822292203
KEGG:00071: Fatty acid degradation	GCDH	glutaryl-CoA dehydrogenase	-3.881428098773361e-6
GO:0001659: temperature homeostasis	ACADL	acyl-CoA dehydrogenase, long chain	0.0009707249903913639
GO:0001659: temperature homeostasis	DRD2	dopamine receptor D2	-0.00023210985418317724
GO:0001659: temperature homeostasis	FOXO1	forkhead box O1	0.0017839815989336976
GO:0001659: temperature homeostasis	GPX1	glutathione peroxidase 1	0.0003892603849823641
GO:0006635: fatty acid beta-oxidation	ACADL	acyl-CoA dehydrogenase, long chain	0.000989991100688467
GO:0006635: fatty acid beta-oxidation	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012798922242036426
GO:0006635: fatty acid beta-oxidation	CROT	carnitine O-octanoyltransferase	-0.0004431177503181288
GO:0006635: fatty acid beta-oxidation	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011719591505483734
GO:0006635: fatty acid beta-oxidation	LEP	leptin	0.003219382871832427
GO:0006635: fatty acid beta-oxidation	MUT	methylmalonyl CoA mutase	0.002777952976479922
GO:0019254: carnitine metabolic process, CoA-linked	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096736
GO:0033539: fatty acid beta-oxidation using acyl-CoA dehydrogenase	ACADL	acyl-CoA dehydrogenase, long chain	0.0009573338085733194
GO:0033539: fatty acid beta-oxidation using acyl-CoA dehydrogenase	GCDH	glutaryl-CoA dehydrogenase	-3.6161329727610377e-6
GO:0033539: fatty acid beta-oxidation using acyl-CoA dehydrogenase	IVD	isovaleryl-CoA dehydrogenase	-0.0009192251735621508
GO:0042413: carnitine catabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096736
GO:0042758: long-chain fatty acid catabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096736
GO:0044242: cellular lipid catabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009700934142145936
GO:0044242: cellular lipid catabolic process	SIRT2	sirtuin 2	-0.0008421256606398701
GO:0044255: cellular lipid metabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009737906064588635
GO:0044255: cellular lipid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.001131112167355671
GO:0044255: cellular lipid metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001121058767068387
GO:0044255: cellular lipid metabolic process	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020683157912009204
GO:0044255: cellular lipid metabolic process	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.001266437485622106
GO:0044255: cellular lipid metabolic process	CROT	carnitine O-octanoyltransferase	-0.00043391504498231214
GO:0044255: cellular lipid metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005201646931292288
GO:0044255: cellular lipid metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020743620684240315
GO:0044255: cellular lipid metabolic process	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005636324959056467
GO:0044255: cellular lipid metabolic process	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010552294126392032
GO:0044255: cellular lipid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011538294707715087
GO:0044255: cellular lipid metabolic process	MED1	mediator complex subunit 1	0.0011190885481381853
GO:0044255: cellular lipid metabolic process	MUT	methylmalonyl CoA mutase	0.0027415226852462293
GO:0044255: cellular lipid metabolic process	PEX11A	peroxisomal biogenesis factor 11 alpha	0.0007132308480431774
GO:0044255: cellular lipid metabolic process	RXRA	retinoid X receptor, alpha	0.0011076667250260507
GO:0044255: cellular lipid metabolic process	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003428031927468973
GO:0044255: cellular lipid metabolic process	TNFRSF21	tumor necrosis factor receptor superfamily, member 21	0.00034500180558703046
GO:0045717: negative regulation of fatty acid biosynthetic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096736
GO:0046322: negative regulation of fatty acid oxidation	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096736
GO:0051289: protein homotetramerization	ACADL	acyl-CoA dehydrogenase, long chain	0.0009790380904007195
GO:0051289: protein homotetramerization	ALDH5A1	aldehyde dehydrogenase 5 family, member A1	0.002324089294292155
GO:0051289: protein homotetramerization	CTH	cystathionine gamma-lyase	0.0017440659159030833
GO:0051289: protein homotetramerization	EVL	Enah/Vasp-like	0.001936933421172402
GO:0051289: protein homotetramerization	GOLGA2	golgin A2	0.00016771156185921475
GO:0051289: protein homotetramerization	HPRT1	hypoxanthine phosphoribosyltransferase 1	-0.00118488733145369
GO:0051289: protein homotetramerization	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.00034555137705332794
GO:0051289: protein homotetramerization	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007752722053270484
GO:0051289: protein homotetramerization	RXRA	retinoid X receptor, alpha	0.001113463817927162
GO:0051289: protein homotetramerization	SHMT2	serine hydroxymethyltransferase 2 (mitochondrial)	-0.0010981723116027264
GO:0055088: lipid homeostasis	ACADL	acyl-CoA dehydrogenase, long chain	0.0009540101374639426
GO:0055088: lipid homeostasis	GCDH	glutaryl-CoA dehydrogenase	-3.422879204465209e-6
GO:0055088: lipid homeostasis	IVD	isovaleryl-CoA dehydrogenase	-0.0009170692873098384
GO:0055088: lipid homeostasis	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007877153867270804
GO:0055114: oxidation-reduction process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009832253573415458
GO:0055114: oxidation-reduction process	AKR1C1	aldo-keto reductase family 1, member C1	-0.001491160665243531
GO:0055114: oxidation-reduction process	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030238006667679973
GO:0055114: oxidation-reduction process	AOC1	amine oxidase, copper containing 1	-0.0014253945956716428
GO:0055114: oxidation-reduction process	APEX1	APEX nuclease (multifunctional DNA repair enzyme) 1	0.0002005883040891177
GO:0055114: oxidation-reduction process	BDH1	3-hydroxybutyrate dehydrogenase, type 1	-0.00020740454285367684
GO:0055114: oxidation-reduction process	CBS	cystathionine-beta-synthase	0.0015192448254002203
GO:0055114: oxidation-reduction process	CP	ceruloplasmin (ferroxidase)	0.0013095237798756393
GO:0055114: oxidation-reduction process	CPOX	coproporphyrinogen oxidase	0.001275685117244933
GO:0055114: oxidation-reduction process	CYB5R4	cytochrome b5 reductase 4	-2.843469780966521e-5
GO:0055114: oxidation-reduction process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.000398223604546795
GO:0055114: oxidation-reduction process	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047215586872921685
GO:0055114: oxidation-reduction process	CYP4B1	cytochrome P450, family 4, subfamily B, polypeptide 1	-0.001358994812309843
GO:0055114: oxidation-reduction process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016352255250777308
GO:0055114: oxidation-reduction process	DCT	dopachrome tautomerase	-0.0023567373536330953
GO:0055114: oxidation-reduction process	DHCR24	24-dehydrocholesterol reductase	-0.0017102597662740223
GO:0055114: oxidation-reduction process	DHFR	dihydrofolate reductase	-0.00030786505875509166
GO:0055114: oxidation-reduction process	GLRX2	glutaredoxin 2	0.0011177438867716776
GO:0055114: oxidation-reduction process	GLUD2	glutamate dehydrogenase 2	-0.0006598971773004488
GO:0055114: oxidation-reduction process	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005683640146230377
GO:0055114: oxidation-reduction process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011645341890049055
GO:0055114: oxidation-reduction process	HSD17B6	hydroxysteroid (17-beta) dehydrogenase 6	-0.0008687761628787211
GO:0055114: oxidation-reduction process	HSDL2	hydroxysteroid dehydrogenase like 2	0.001370433690322614
GO:0055114: oxidation-reduction process	IDO1	indoleamine 2,3-dioxygenase 1	0.0012279669183532969
GO:0055114: oxidation-reduction process	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018751854036111269
GO:0055114: oxidation-reduction process	IMPDH2	IMP (inosine 5'-monophosphate) dehydrogenase 2	-0.0003483834535493433
GO:0055114: oxidation-reduction process	JMJD6	jumonji domain containing 6	0.003596320288057919
GO:0055114: oxidation-reduction process	LOX	lysyl oxidase	-0.0005774280777408369
GO:0055114: oxidation-reduction process	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006649171409238845
GO:0055114: oxidation-reduction process	PAX2	paired box 2	-0.0016168312553755796
GO:0055114: oxidation-reduction process	PHGDH	phosphoglycerate dehydrogenase	0.0002934951681328274
GO:0055114: oxidation-reduction process	PNPO	pyridoxamine 5'-phosphate oxidase	-0.0010931856105589372
GO:0055114: oxidation-reduction process	POR	P450 (cytochrome) oxidoreductase	0.0004580076238634594
GO:0055114: oxidation-reduction process	PRDX4	peroxiredoxin 4	0.001526965842019623
GO:0055114: oxidation-reduction process	QDPR	quinoid dihydropteridine reductase	-0.0028603630968169476
GO:0055114: oxidation-reduction process	RRM1	ribonucleotide reductase M1	0.0019135618967990819
GO:0055114: oxidation-reduction process	RRM2	ribonucleotide reductase M2	-0.0005666355485736763
GO:0055114: oxidation-reduction process	SORD	sorbitol dehydrogenase	-0.0020229309345302124
GO:0055114: oxidation-reduction process	SPR	sepiapterin reductase (7,8-dihydrobiopterin:NADP+ oxidoreductase)	-0.0012347649997144637
GO:0055114: oxidation-reduction process	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006443451086806787
GO:0055114: oxidation-reduction process	STEAP3	STEAP family member 3, metalloreductase	0.0026130796359889754
GO:0055114: oxidation-reduction process	STEAP4	STEAP family member 4	-0.002772027848558085
GO:0055114: oxidation-reduction process	TH	tyrosine hydroxylase	-0.00034249651780864814
GO:0055114: oxidation-reduction process	TXN2	thioredoxin 2	0.0013852052524674083
GO:0055114: oxidation-reduction process	UGDH	UDP-glucose 6-dehydrogenase	0.0005023683750838108
GO:0090181: regulation of cholesterol metabolic process	ACADL	acyl-CoA dehydrogenase, long chain	0.0009725879762096736
KEGG:00120: Primary bile acid biosynthesis	ACOT8	acyl-CoA thioesterase 8	0.0011250415158007092
KEGG:00120: Primary bile acid biosynthesis	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.0001607880790245825
KEGG:00120: Primary bile acid biosynthesis	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011418915082748653
KEGG:04146: Peroxisome	ACOT8	acyl-CoA thioesterase 8	0.0011267202985504377
KEGG:04146: Peroxisome	CROT	carnitine O-octanoyltransferase	-0.00043112880764478647
KEGG:04146: Peroxisome	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.001049136670314674
KEGG:04146: Peroxisome	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011475170668303052
KEGG:04146: Peroxisome	PEX11A	peroxisomal biogenesis factor 11 alpha	0.0007093964743551374
GO:0006637: acyl-CoA metabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011296365421344244
GO:0006637: acyl-CoA metabolic process	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010515053781074918
GO:0006699: bile acid biosynthetic process	ACOT8	acyl-CoA thioesterase 8	0.0011264948182661992
GO:0006699: bile acid biosynthetic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016106635738449658
GO:0006699: bile acid biosynthetic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011450626516497024
GO:0006699: bile acid biosynthetic process	STAR	steroidogenic acute regulatory protein	0.0008797005036514012
GO:0008206: bile acid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011400378260621646
GO:0008206: bile acid metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.001495560877114569
GO:0008206: bile acid metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.0001637824823000836
GO:0008206: bile acid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011683509725662008
GO:0008206: bile acid metabolic process	LEP	leptin	0.0032098375684616494
GO:0008206: bile acid metabolic process	RXRA	retinoid X receptor, alpha	0.001120879310317521
GO:0016032: viral process	ACOT8	acyl-CoA thioesterase 8	0.0011332087985093955
GO:0016032: viral process	BAX	BCL2-associated X protein	-0.00042398891945445466
GO:0016032: viral process	BICD1	bicaudal D homolog 1 (Drosophila)	0.002431097895626387
GO:0016032: viral process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002899381933048571
GO:0016032: viral process	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.763728910336962e-5
GO:0016032: viral process	BRD4	bromodomain containing 4	0.0005528164370892126
GO:0016032: viral process	BUB1	BUB1 mitotic checkpoint serine/threonine kinase	0.0013179357273544676
GO:0016032: viral process	CALCOCO2	calcium binding and coiled-coil domain 2	0.0024467567733152218
GO:0016032: viral process	CCDC86	coiled-coil domain containing 86	0.0007146750595481015
GO:0016032: viral process	CREB1	cAMP responsive element binding protein 1	0.0006538948245720486
GO:0016032: viral process	CUL7	cullin 7	-0.00011804496107927595
GO:0016032: viral process	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.000853631577973926
GO:0016032: viral process	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007903798646155338
GO:0016032: viral process	DAXX	death-domain associated protein	0.0008866141034356594
GO:0016032: viral process	E4F1	E4F transcription factor 1	0.0014775115079607134
GO:0016032: viral process	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.0007391653691435424
GO:0016032: viral process	GFI1	growth factor independent 1 transcription repressor	0.0016586385649570577
GO:0016032: viral process	GRB2	growth factor receptor-bound protein 2	0.00042792859477506763
GO:0016032: viral process	HMGA1	high mobility group AT-hook 1	-0.0003182512018519805
GO:0016032: viral process	IL6ST	interleukin 6 signal transducer	0.0018687901797503593
GO:0016032: viral process	IPO5	importin 5	0.00167576941341883
GO:0016032: viral process	KPNB1	karyopherin (importin) beta 1	0.0007693123028523805
GO:0016032: viral process	KRT18	keratin 18	-0.0010121472598493162
GO:0016032: viral process	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001414738636521309
GO:0016032: viral process	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.00034071323975268605
GO:0016032: viral process	MFGE8	milk fat globule-EGF factor 8 protein	0.00179560250318637
GO:0016032: viral process	MSH6	mutS homolog 6	0.001071519475507141
GO:0016032: viral process	NFX1	nuclear transcription factor, X-box binding 1	-7.167051402400425e-5
GO:0016032: viral process	NUP153	nucleoporin 153kDa	0.0008197281779380468
GO:0016032: viral process	PML	promyelocytic leukemia	-0.0006785609772968494
GO:0016032: viral process	POLA1	polymerase (DNA directed), alpha 1, catalytic subunit	0.001263754007428563
GO:0016032: viral process	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018466217380317513
GO:0016032: viral process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.0003300625245152297
GO:0016032: viral process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010919739958158618
GO:0016032: viral process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.048485203822181e-5
GO:0016032: viral process	RB1	retinoblastoma 1	-0.0014873904032028235
GO:0016032: viral process	RHOA	ras homolog family member A	0.0006670271923979144
GO:0016032: viral process	SEH1L	SEH1-like (S. cerevisiae)	-0.0007307140972634651
GO:0016032: viral process	SF3B2	splicing factor 3b, subunit 2, 145kDa	0.0006803728928588615
GO:0016032: viral process	SIRT1	sirtuin 1	-2.5573716027936965e-6
GO:0016032: viral process	TFRC	transferrin receptor	0.001080488028984342
GO:0016032: viral process	TP53	tumor protein p53	0.0011687103860240397
GO:0016032: viral process	TP73	tumor protein p73	0.001023504705947392
GO:0016032: viral process	TPR	translocated promoter region, nuclear basket protein	-0.0006945451334456993
GO:0016032: viral process	UNG	uracil-DNA glycosylase	0.0005621207451607174
GO:0016032: viral process	VPS4A	vacuolar protein sorting 4 homolog A (S. cerevisiae)	-0.0006818751482759125
GO:0016559: peroxisome fission	ACOT8	acyl-CoA thioesterase 8	0.001124290631692677
GO:0016559: peroxisome fission	PEX11A	peroxisomal biogenesis factor 11 alpha	0.0007019294818520599
GO:0033540: fatty acid beta-oxidation using acyl-CoA oxidase	ACOT8	acyl-CoA thioesterase 8	0.0011263428857322378
GO:0033540: fatty acid beta-oxidation using acyl-CoA oxidase	CROT	carnitine O-octanoyltransferase	-0.0004311244172930993
GO:0033540: fatty acid beta-oxidation using acyl-CoA oxidase	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011472315828132775
GO:0033559: unsaturated fatty acid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011241338960080746
GO:0033559: unsaturated fatty acid metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005126286214051827
GO:0033559: unsaturated fatty acid metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020808309900323667
GO:0033559: unsaturated fatty acid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011418480529381601
GO:0036109: alpha-linolenic acid metabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011241338960080746
GO:0036109: alpha-linolenic acid metabolic process	ELOVL2	ELOVL fatty acid elongase 2	0.0005126286214051827
GO:0036109: alpha-linolenic acid metabolic process	ELOVL5	ELOVL fatty acid elongase 5	0.00020808309900323667
GO:0036109: alpha-linolenic acid metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011418480529381601
GO:0043649: dicarboxylic acid catabolic process	ACOT8	acyl-CoA thioesterase 8	0.0011250785466930266
GO:0007275: multicellular organismal development	ACRV1	acrosomal vesicle protein 1	-0.0006026324800037688
GO:0007275: multicellular organismal development	AES	amino-terminal enhancer of split	0.0013608250886879662
GO:0007275: multicellular organismal development	ALX1	ALX homeobox 1	0.0023048546834939392
GO:0007275: multicellular organismal development	CENPE	centromere protein E, 312kDa	0.0021641843690307526
GO:0007275: multicellular organismal development	DSPP	dentin sialophosphoprotein	0.0008332002663454992
GO:0007275: multicellular organismal development	EGFL6	EGF-like-domain, multiple 6	0.00013791280033759835
GO:0007275: multicellular organismal development	EYA3	EYA transcriptional coactivator and phosphatase 3	0.0008414052963303421
GO:0007275: multicellular organismal development	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.0024467691116296093
GO:0007275: multicellular organismal development	GNRHR	gonadotropin-releasing hormone receptor	0.0007448181806739661
GO:0007275: multicellular organismal development	HELLS	helicase, lymphoid-specific	0.0034841415762245967
GO:0007275: multicellular organismal development	HMGA2	high mobility group AT-hook 2	0.0015176454559921602
GO:0007275: multicellular organismal development	HMGB3	high mobility group box 3	0.0004659141762664664
GO:0007275: multicellular organismal development	HOXA10	homeobox A10	-0.002999580579960398
GO:0007275: multicellular organismal development	HOXB1	homeobox B1	0.0037064002506680916
GO:0007275: multicellular organismal development	HOXB2	homeobox B2	0.0027884294923930467
GO:0007275: multicellular organismal development	HOXD13	homeobox D13	-0.0005948384976534229
GO:0007275: multicellular organismal development	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	5.9994821856433184e-5
GO:0007275: multicellular organismal development	PAEP	progestagen-associated endometrial protein	0.0010706068741512258
GO:0007275: multicellular organismal development	RREB1	ras responsive element binding protein 1	-0.0019922654238996524
GO:0007275: multicellular organismal development	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031544458464539704
GO:0007275: multicellular organismal development	SUCO	SUN domain containing ossification factor	0.0022617861242923377
GO:0007275: multicellular organismal development	TBX21	T-box 21	0.0004003452354227902
GO:0007275: multicellular organismal development	TP53	tumor protein p53	0.0011841475165336947
GO:0001525: angiogenesis	ACVRL1	activin A receptor type II-like 1	0.0019380999107114758
GO:0001525: angiogenesis	APOD	apolipoprotein D	0.0026198779648346983
GO:0001525: angiogenesis	ARHGAP24	Rho GTPase activating protein 24	-0.0009316971671739716
GO:0001525: angiogenesis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005342965015624453
GO:0001525: angiogenesis	CCL2	chemokine (C-C motif) ligand 2	0.0008139262642777212
GO:0001525: angiogenesis	CCL8	chemokine (C-C motif) ligand 8	-0.0005893403229684579
GO:0001525: angiogenesis	CIB1	calcium and integrin binding 1 (calmyrin)	5.560540625389167e-5
GO:0001525: angiogenesis	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003967426204059147
GO:0001525: angiogenesis	DICER1	dicer 1, ribonuclease type III	-1.6371415982969316e-5
GO:0001525: angiogenesis	ECM1	extracellular matrix protein 1	-0.0015511685488916948
GO:0001525: angiogenesis	EFNA1	ephrin-A1	-0.0005195861981931489
GO:0001525: angiogenesis	EPHB1	EPH receptor B1	0.0019584066018005605
GO:0001525: angiogenesis	EPHB2	EPH receptor B2	-0.0007209679109037153
GO:0001525: angiogenesis	EPHB3	EPH receptor B3	0.0008808647439006741
GO:0001525: angiogenesis	FAP	fibroblast activation protein, alpha	-0.0004847030689575304
GO:0001525: angiogenesis	FGFR2	fibroblast growth factor receptor 2	0.0007605775669832328
GO:0001525: angiogenesis	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006448825921510368
GO:0001525: angiogenesis	HMOX1	heme oxygenase (decycling) 1	-0.0002167468167063793
GO:0001525: angiogenesis	HOXA3	homeobox A3	0.0009858971129960935
GO:0001525: angiogenesis	HOXB13	homeobox B13	0.0018204492376021162
GO:0001525: angiogenesis	JAG1	jagged 1	0.001752363655987169
GO:0001525: angiogenesis	MED1	mediator complex subunit 1	0.0011248810657117857
GO:0001525: angiogenesis	MFGE8	milk fat globule-EGF factor 8 protein	0.0017984068326029317
GO:0001525: angiogenesis	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011267150998895683
GO:0001525: angiogenesis	NRP1	neuropilin 1	-0.000640789648716969
GO:0001525: angiogenesis	PRKCA	protein kinase C, alpha	-5.91854794812541e-6
GO:0001525: angiogenesis	PRKX	protein kinase, X-linked	0.00039253274308216564
GO:0001525: angiogenesis	PTEN	phosphatase and tensin homolog	1.7995857133031702e-5
GO:0001525: angiogenesis	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009790331924208254
GO:0001525: angiogenesis	S100A7	S100 calcium binding protein A7	0.001584666204889495
GO:0001525: angiogenesis	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011263528208728849
GO:0001525: angiogenesis	SIRT1	sirtuin 1	-2.1779228749138847e-6
GO:0001525: angiogenesis	SOX18	SRY (sex determining region Y)-box 18	0.0012851290560282952
GO:0001525: angiogenesis	TGFB2	transforming growth factor, beta 2	-0.0010555947352951394
GO:0001525: angiogenesis	TGFBR1	transforming growth factor, beta receptor 1	0.0003384609672932745
GO:0001525: angiogenesis	VASH1	vasohibin 1	0.0005968959576848897
GO:0001525: angiogenesis	VEGFA	vascular endothelial growth factor A	0.0005921704392206561
GO:0001525: angiogenesis	VEGFC	vascular endothelial growth factor C	-0.0033536915302535245
GO:0001525: angiogenesis	WNT7A	wingless-type MMTV integration site family, member 7A	1.9654048111435305e-5
GO:0001525: angiogenesis	XBP1	X-box binding protein 1	0.00026708998677257823
GO:0001701: in utero embryonic development	ACVRL1	activin A receptor type II-like 1	0.0019427990637215053
GO:0001701: in utero embryonic development	ADAR	adenosine deaminase, RNA-specific	-0.0001365954719026238
GO:0001701: in utero embryonic development	ANGPT1	angiopoietin 1	0.0009002207230357272
GO:0001701: in utero embryonic development	AXIN1	axin 1	-0.0007326864437604173
GO:0001701: in utero embryonic development	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007743436337115881
GO:0001701: in utero embryonic development	CCNB1	cyclin B1	-0.0008817261174187466
GO:0001701: in utero embryonic development	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011684514818058756
GO:0001701: in utero embryonic development	EPN1	epsin 1	-0.0005464726383597677
GO:0001701: in utero embryonic development	FGFR2	fibroblast growth factor receptor 2	0.0007627787719822484
GO:0001701: in utero embryonic development	FOXA2	forkhead box A2	-1.6718968042080112e-5
GO:0001701: in utero embryonic development	FOXC1	forkhead box C1	-2.2151633814181523e-5
GO:0001701: in utero embryonic development	GATA3	GATA binding protein 3	-3.911462876314586e-5
GO:0001701: in utero embryonic development	GATA4	GATA binding protein 4	-0.0010941244136378353
GO:0001701: in utero embryonic development	GATA6	GATA binding protein 6	-2.812049431486e-5
GO:0001701: in utero embryonic development	GDF3	growth differentiation factor 3	-0.0018829331093555763
GO:0001701: in utero embryonic development	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016144995338351193
GO:0001701: in utero embryonic development	GLI2	GLI family zinc finger 2	0.0018523358131217703
GO:0001701: in utero embryonic development	GLI3	GLI family zinc finger 3	-0.002150375404943683
GO:0001701: in utero embryonic development	GRHL2	grainyhead-like 2 (Drosophila)	0.0010062146366325905
GO:0001701: in utero embryonic development	HINFP	histone H4 transcription factor	0.000992006604879314
GO:0001701: in utero embryonic development	IHH	indian hedgehog	-0.0020393182980781824
GO:0001701: in utero embryonic development	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024249919024742876
GO:0001701: in utero embryonic development	JAG2	jagged 2	-5.70707076665719e-6
GO:0001701: in utero embryonic development	KLF2	Kruppel-like factor 2	-0.0012315113992547775
GO:0001701: in utero embryonic development	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00019928881893223956
GO:0001701: in utero embryonic development	MSH2	mutS homolog 2	0.0013914541109964558
GO:0001701: in utero embryonic development	MSX1	msh homeobox 1	-0.00276724917347044
GO:0001701: in utero embryonic development	MYH10	myosin, heavy chain 10, non-muscle	-0.00032860395085510566
GO:0001701: in utero embryonic development	NOTCH1	notch 1	0.0005185223076809099
GO:0001701: in utero embryonic development	PCNT	pericentrin	0.0017862910354671166
GO:0001701: in utero embryonic development	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036093766342838713
GO:0001701: in utero embryonic development	PITX2	paired-like homeodomain 2	0.0021747140578855214
GO:0001701: in utero embryonic development	POLE	polymerase (DNA directed), epsilon, catalytic subunit	0.0029466219277846308
GO:0001701: in utero embryonic development	PTCH1	patched 1	-6.590551620196476e-5
GO:0001701: in utero embryonic development	RNASEH2B	ribonuclease H2, subunit B	-4.3543304634598546e-5
GO:0001701: in utero embryonic development	RPA1	replication protein A1, 70kDa	0.00043890123848049425
GO:0001701: in utero embryonic development	RXRA	retinoid X receptor, alpha	0.0011143915942975636
GO:0001701: in utero embryonic development	SLIT2	slit homolog 2 (Drosophila)	-0.0016191656339764274
GO:0001701: in utero embryonic development	SMO	smoothened, frizzled class receptor	0.002137949263826817
GO:0001701: in utero embryonic development	SOX10	SRY (sex determining region Y)-box 10	0.00019024190012834535
GO:0001701: in utero embryonic development	SOX18	SRY (sex determining region Y)-box 18	0.0012877585846430405
GO:0001701: in utero embryonic development	TBX3	T-box 3	0.0012255975362851356
GO:0001701: in utero embryonic development	TGFB3	transforming growth factor, beta 3	-0.0018226037846556832
GO:0001701: in utero embryonic development	TGFBR1	transforming growth factor, beta receptor 1	0.00033966513742213363
GO:0001701: in utero embryonic development	TP53	tumor protein p53	0.0011748888646252156
GO:0001701: in utero embryonic development	TWIST1	twist family bHLH transcription factor 1	-0.0013406405390829815
GO:0001701: in utero embryonic development	VEGFA	vascular endothelial growth factor A	0.0005945729999305588
GO:0001701: in utero embryonic development	WDR19	WD repeat domain 19	-0.0007217305444625027
GO:0001701: in utero embryonic development	YBX1	Y box binding protein 1	-0.0009133412869199118
GO:0001701: in utero embryonic development	ZBTB18	zinc finger and BTB domain containing 18	0.0012713024023252373
GO:0001701: in utero embryonic development	ZNF335	zinc finger protein 335	-0.0003647609864518321
GO:0001936: regulation of endothelial cell proliferation	ACVRL1	activin A receptor type II-like 1	0.00196396605902291
GO:0001936: regulation of endothelial cell proliferation	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030504783420228164
GO:0001937: negative regulation of endothelial cell proliferation	ACVRL1	activin A receptor type II-like 1	0.0019250874938716665
GO:0001937: negative regulation of endothelial cell proliferation	AGER	advanced glycosylation end product-specific receptor	-0.0001732035223705776
GO:0001937: negative regulation of endothelial cell proliferation	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005315075031537392
GO:0001937: negative regulation of endothelial cell proliferation	ENG	endoglin	0.0008160904693519043
GO:0001937: negative regulation of endothelial cell proliferation	GJA1	gap junction protein, alpha 1, 43kDa	-0.00015587520759072207
GO:0001937: negative regulation of endothelial cell proliferation	SULF1	sulfatase 1	-0.000792816488986024
GO:0001937: negative regulation of endothelial cell proliferation	TGFBR1	transforming growth factor, beta receptor 1	0.0003354764853332717
GO:0001937: negative regulation of endothelial cell proliferation	THBS1	thrombospondin 1	-0.001025212600209794
GO:0001937: negative regulation of endothelial cell proliferation	VASH1	vasohibin 1	0.0005934720064626204
GO:0001938: positive regulation of endothelial cell proliferation	ACVRL1	activin A receptor type II-like 1	0.001923187106381941
GO:0001938: positive regulation of endothelial cell proliferation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007213552958856501
GO:0001938: positive regulation of endothelial cell proliferation	BMP4	bone morphogenetic protein 4	-0.00031903632616140753
GO:0001938: positive regulation of endothelial cell proliferation	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005312057885718258
GO:0001938: positive regulation of endothelial cell proliferation	CCL2	chemokine (C-C motif) ligand 2	0.0008073470833861536
GO:0001938: positive regulation of endothelial cell proliferation	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0011941913984007723
GO:0001938: positive regulation of endothelial cell proliferation	ECM1	extracellular matrix protein 1	-0.0015363472780654832
GO:0001938: positive regulation of endothelial cell proliferation	FGFR3	fibroblast growth factor receptor 3	0.0002185625184838844
GO:0001938: positive regulation of endothelial cell proliferation	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006403155718943293
GO:0001938: positive regulation of endothelial cell proliferation	HMGB2	high mobility group box 2	0.00029796105352356776
GO:0001938: positive regulation of endothelial cell proliferation	NRP1	neuropilin 1	-0.0006346855167324194
GO:0001938: positive regulation of endothelial cell proliferation	PRKCA	protein kinase C, alpha	-5.930897761783558e-6
GO:0001938: positive regulation of endothelial cell proliferation	PROX1	prospero homeobox 1	0.0011075362866752767
GO:0001938: positive regulation of endothelial cell proliferation	TGFBR1	transforming growth factor, beta receptor 1	0.00033495335834605246
GO:0001938: positive regulation of endothelial cell proliferation	THBS4	thrombospondin 4	-0.00044152113232423306
GO:0001938: positive regulation of endothelial cell proliferation	VEGFA	vascular endothelial growth factor A	0.0005856396246766728
GO:0001938: positive regulation of endothelial cell proliferation	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006593814258707268
GO:0001946: lymphangiogenesis	ACVRL1	activin A receptor type II-like 1	0.00194612909198142
GO:0001946: lymphangiogenesis	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017512462823182423
GO:0001946: lymphangiogenesis	PROX1	prospero homeobox 1	0.0011227685110076972
GO:0001946: lymphangiogenesis	SOX18	SRY (sex determining region Y)-box 18	0.0012909123757203747
GO:0001955: blood vessel maturation	ACVRL1	activin A receptor type II-like 1	0.0019527148817602257
GO:0001955: blood vessel maturation	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011387836895902076
GO:0001974: blood vessel remodeling	ACVRL1	activin A receptor type II-like 1	0.001937094652168979
GO:0001974: blood vessel remodeling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011264545369124859
GO:0001974: blood vessel remodeling	BAK1	BCL2-antagonist/killer 1	-0.0018697820976758988
GO:0001974: blood vessel remodeling	BAX	BCL2-associated X protein	-0.0004243627141371555
GO:0001974: blood vessel remodeling	FGF8	fibroblast growth factor 8 (androgen-induced)	0.000979538752241045
GO:0001974: blood vessel remodeling	FOXC1	forkhead box C1	-2.3998618519730645e-5
GO:0001974: blood vessel remodeling	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.001742373618259222
GO:0001974: blood vessel remodeling	HOXA3	homeobox A3	0.000985499228754663
GO:0001974: blood vessel remodeling	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012978905361100209
GO:0001974: blood vessel remodeling	JAG1	jagged 1	0.0017521781321891057
GO:0001974: blood vessel remodeling	MEF2C	myocyte enhancer factor 2C	0.0009691194573440716
GO:0001974: blood vessel remodeling	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009788711086604438
GO:0001974: blood vessel remodeling	SEMA3C	sema domain, immunoglobulin domain (Ig), short basic domain, secreted, (semaphorin) 3C	-0.00021923608706525397
GO:0001974: blood vessel remodeling	TGFB2	transforming growth factor, beta 2	-0.0010548733572331346
GO:0002043: blood vessel endothelial cell proliferation involved in sprouting angiogenesis	ACVRL1	activin A receptor type II-like 1	0.0019410890620574761
GO:0002043: blood vessel endothelial cell proliferation involved in sprouting angiogenesis	BMP4	bone morphogenetic protein 4	-0.0003218816800786747
GO:0006275: regulation of DNA replication	ACVRL1	activin A receptor type II-like 1	0.0019557258365855866
GO:0006468: protein phosphorylation	ACVRL1	activin A receptor type II-like 1	0.0019485157138485387
GO:0006468: protein phosphorylation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007327183796848716
GO:0006468: protein phosphorylation	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006272213753441933
GO:0006468: protein phosphorylation	AURKA	aurora kinase A	0.0010107899453714246
GO:0006468: protein phosphorylation	AURKB	aurora kinase B	0.00035186325673515755
GO:0006468: protein phosphorylation	AURKC	aurora kinase C	0.0008881894274280078
GO:0006468: protein phosphorylation	BIRC5	baculoviral IAP repeat containing 5	-0.0002606857821486696
GO:0006468: protein phosphorylation	BRD4	bromodomain containing 4	0.0005545687792096687
GO:0006468: protein phosphorylation	BUB1	BUB1 mitotic checkpoint serine/threonine kinase	0.0013285965783585128
GO:0006468: protein phosphorylation	BUB1B	BUB1 mitotic checkpoint serine/threonine kinase B	-0.0012838557908560729
GO:0006468: protein phosphorylation	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.00259453010307418
GO:0006468: protein phosphorylation	CCL2	chemokine (C-C motif) ligand 2	0.0008186401066323783
GO:0006468: protein phosphorylation	CCL8	chemokine (C-C motif) ligand 8	-0.000591441696383413
GO:0006468: protein phosphorylation	CCND1	cyclin D1	-0.002640798623310013
GO:0006468: protein phosphorylation	CCNE1	cyclin E1	0.000372010592942311
GO:0006468: protein phosphorylation	CDK8	cyclin-dependent kinase 8	0.0026184529641606526
GO:0006468: protein phosphorylation	CDKL5	cyclin-dependent kinase-like 5	0.0022902028514099303
GO:0006468: protein phosphorylation	CFL1	cofilin 1 (non-muscle)	-0.0011782671739032863
GO:0006468: protein phosphorylation	CREB1	cAMP responsive element binding protein 1	0.0006606053514895301
GO:0006468: protein phosphorylation	CSNK2B	casein kinase 2, beta polypeptide	0.00153287649469207
GO:0006468: protein phosphorylation	GSK3B	glycogen synthase kinase 3 beta	0.0015531071795888412
GO:0006468: protein phosphorylation	GUCY2C	guanylate cyclase 2C (heat stable enterotoxin receptor)	-0.0016372526591578649
GO:0006468: protein phosphorylation	HIPK2	homeodomain interacting protein kinase 2	0.00077249390823163
GO:0006468: protein phosphorylation	IGFBP3	insulin-like growth factor binding protein 3	0.000838264458070987
GO:0006468: protein phosphorylation	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016130541618468873
GO:0006468: protein phosphorylation	JAK2	Janus kinase 2	-3.137260031916695e-5
GO:0006468: protein phosphorylation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014239427431591292
GO:0006468: protein phosphorylation	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.0003435018603542358
GO:0006468: protein phosphorylation	MMD	monocyte to macrophage differentiation-associated	0.002153739079745472
GO:0006468: protein phosphorylation	MOK	MOK protein kinase	0.0017939135079965568
GO:0006468: protein phosphorylation	NEK2	NIMA-related kinase 2	4.958374578080413e-5
GO:0006468: protein phosphorylation	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002193587250243135
GO:0006468: protein phosphorylation	PBK	PDZ binding kinase	0.0008433623468465547
GO:0006468: protein phosphorylation	PDK1	pyruvate dehydrogenase kinase, isozyme 1	0.0014293432237704432
GO:0006468: protein phosphorylation	PDK2	pyruvate dehydrogenase kinase, isozyme 2	0.0014834715708303683
GO:0006468: protein phosphorylation	PICK1	protein interacting with PRKCA 1	-0.0009574612238377189
GO:0006468: protein phosphorylation	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.000782808651559697
GO:0006468: protein phosphorylation	PKN1	protein kinase N1	-0.0019077501569560076
GO:0006468: protein phosphorylation	PLK1	polo-like kinase 1	0.0010206881598149636
GO:0006468: protein phosphorylation	PLK3	polo-like kinase 3	0.0025700428188143378
GO:0006468: protein phosphorylation	PLK4	polo-like kinase 4	0.0029937321456941076
GO:0006468: protein phosphorylation	PRKCA	protein kinase C, alpha	-5.876725573190973e-6
GO:0006468: protein phosphorylation	PRKCD	protein kinase C, delta	-0.0011315960280285286
GO:0006468: protein phosphorylation	PRKCZ	protein kinase C, zeta	-0.0016046056222054344
GO:0006468: protein phosphorylation	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0015024938699221527
GO:0006468: protein phosphorylation	RET	ret proto-oncogene	-0.0004922159180050821
GO:0006468: protein phosphorylation	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025200300285938165
GO:0006468: protein phosphorylation	STK24	serine/threonine kinase 24	0.002701339451967087
GO:0006468: protein phosphorylation	TEX14	testis expressed 14	0.001730225187623488
GO:0006468: protein phosphorylation	TGFB1	transforming growth factor, beta 1	-7.32802179732393e-5
GO:0006468: protein phosphorylation	TGFB2	transforming growth factor, beta 2	-0.0010623869165459125
GO:0006468: protein phosphorylation	TGFBR1	transforming growth factor, beta receptor 1	0.0003409874916133343
GO:0007162: negative regulation of cell adhesion	ACVRL1	activin A receptor type II-like 1	0.0019268955101691457
GO:0007162: negative regulation of cell adhesion	AGER	advanced glycosylation end product-specific receptor	-0.000173545739128562
GO:0007162: negative regulation of cell adhesion	ANGPT1	angiopoietin 1	0.0008935206257666982
GO:0007162: negative regulation of cell adhesion	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003440275050910195
GO:0007165: signal transduction	ACVRL1	activin A receptor type II-like 1	0.001943488290606878
GO:0007165: signal transduction	ADM	adrenomedullin	0.002237431057860732
GO:0007165: signal transduction	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007304073870056507
GO:0007165: signal transduction	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006257732791294793
GO:0007165: signal transduction	AMHR2	anti-Mullerian hormone receptor, type II	-0.0002246880307821998
GO:0007165: signal transduction	ANK3	ankyrin 3, node of Ranvier (ankyrin G)	0.0007000095618207147
GO:0007165: signal transduction	AR	androgen receptor	0.0026377324035076126
GO:0007165: signal transduction	AVP	arginine vasopressin	-0.0009371013629622085
GO:0007165: signal transduction	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.0009769692989772172
GO:0007165: signal transduction	C3	complement component 3	0.0020241813149135994
GO:0007165: signal transduction	CASP8AP2	caspase 8 associated protein 2	0.0012716188181623072
GO:0007165: signal transduction	CCL2	chemokine (C-C motif) ligand 2	0.0008164781588547727
GO:0007165: signal transduction	CCL7	chemokine (C-C motif) ligand 7	-0.002402192590972941
GO:0007165: signal transduction	CCL8	chemokine (C-C motif) ligand 8	-0.0005902866570882142
GO:0007165: signal transduction	CHRNB1	cholinergic receptor, nicotinic, beta 1 (muscle)	-6.974939505178732e-6
GO:0007165: signal transduction	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.000778242818913189
GO:0007165: signal transduction	CLOCK	clock circadian regulator	0.00020015421509193596
GO:0007165: signal transduction	CREB1	cAMP responsive element binding protein 1	0.0006580631426769614
GO:0007165: signal transduction	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.339144135618907e-5
GO:0007165: signal transduction	CSNK2B	casein kinase 2, beta polypeptide	0.0015282900222745022
GO:0007165: signal transduction	CXCL10	chemokine (C-X-C motif) ligand 10	6.2521764899029e-5
GO:0007165: signal transduction	CXCL12	chemokine (C-X-C motif) ligand 12	-0.00120810842058285
GO:0007165: signal transduction	DEK	DEK proto-oncogene	0.0024870755398202064
GO:0007165: signal transduction	DOCK1	dedicator of cytokinesis 1	-0.0006840752277506566
GO:0007165: signal transduction	ECM1	extracellular matrix protein 1	-0.001556783514827781
GO:0007165: signal transduction	EDA	ectodysplasin A	-0.0008142998396472178
GO:0007165: signal transduction	EGFR	epidermal growth factor receptor	0.0006855542326527747
GO:0007165: signal transduction	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018282737676140497
GO:0007165: signal transduction	ESR1	estrogen receptor 1	-0.0009479087845693361
GO:0007165: signal transduction	FAS	Fas cell surface death receptor	-3.324798933360848e-5
GO:0007165: signal transduction	FGF3	fibroblast growth factor 3	0.0015606321391585848
GO:0007165: signal transduction	FGF7	fibroblast growth factor 7	0.0006335279489453931
GO:0007165: signal transduction	GATA3	GATA binding protein 3	-3.9028958255873936e-5
GO:0007165: signal transduction	GDNF	glial cell derived neurotrophic factor	0.00044469132721872216
GO:0007165: signal transduction	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016145881297111356
GO:0007165: signal transduction	GOLT1B	golgi transport 1B	-0.0018204313940101474
GO:0007165: signal transduction	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008270252324948632
GO:0007165: signal transduction	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006463380068602738
GO:0007165: signal transduction	IGBP1	immunoglobulin (CD79A) binding protein 1	0.0028487610213682314
GO:0007165: signal transduction	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013073943590575062
GO:0007165: signal transduction	IGF1R	insulin-like growth factor 1 receptor	0.0010718343173586856
GO:0007165: signal transduction	IGFBP1	insulin-like growth factor binding protein 1	0.0003878467873103585
GO:0007165: signal transduction	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014475319462091518
GO:0007165: signal transduction	IGFBP4	insulin-like growth factor binding protein 4	-0.0012781286022579324
GO:0007165: signal transduction	IGFBP6	insulin-like growth factor binding protein 6	-0.0020276698443934186
GO:0007165: signal transduction	INHA	inhibin, alpha	0.0002116812875126061
GO:0007165: signal transduction	INPP4B	inositol polyphosphate-4-phosphatase, type II, 105kDa	0.00028982401353553765
GO:0007165: signal transduction	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016082176767364597
GO:0007165: signal transduction	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007801932860876994
GO:0007165: signal transduction	JAK2	Janus kinase 2	-3.18411992958091e-5
GO:0007165: signal transduction	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002746279766027158
GO:0007165: signal transduction	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011686347685723619
GO:0007165: signal transduction	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009315977289665426
GO:0007165: signal transduction	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014201196210848546
GO:0007165: signal transduction	MDK	midkine (neurite growth-promoting factor 2)	0.0016645696032585088
GO:0007165: signal transduction	MOK	MOK protein kinase	0.0017891484430256096
GO:0007165: signal transduction	NCK2	NCK adaptor protein 2	-0.00023207792304874017
GO:0007165: signal transduction	NDRG2	NDRG family member 2	0.0021729170842499325
GO:0007165: signal transduction	NMU	neuromedin U	0.0018500546101785204
GO:0007165: signal transduction	NRP1	neuropilin 1	-0.0006429554165685958
GO:0007165: signal transduction	OR5I1	olfactory receptor, family 5, subfamily I, member 1	0.0018819441389188885
GO:0007165: signal transduction	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003609998477788299
GO:0007165: signal transduction	PEX11A	peroxisomal biogenesis factor 11 alpha	0.000717205837050703
GO:0007165: signal transduction	PGR	progesterone receptor	0.0003518137484191218
GO:0007165: signal transduction	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007806355534794372
GO:0007165: signal transduction	PKN1	protein kinase N1	-0.0019025145368926847
GO:0007165: signal transduction	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015369129227155233
GO:0007165: signal transduction	PRDM4	PR domain containing 4	0.0008401522472600572
GO:0007165: signal transduction	PRKCA	protein kinase C, alpha	-5.85871572846622e-6
GO:0007165: signal transduction	PRKCD	protein kinase C, delta	-0.0011280425279524252
GO:0007165: signal transduction	PRKCZ	protein kinase C, zeta	-0.0016003973826187456
GO:0007165: signal transduction	PTK7	protein tyrosine kinase 7	-0.00022523708569734612
GO:0007165: signal transduction	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001498472196536079
GO:0007165: signal transduction	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003489944204112379
GO:0007165: signal transduction	RASSF8	Ras association (RalGDS/AF-6) domain family (N-terminal) member 8	0.0033201926705128
GO:0007165: signal transduction	RET	ret proto-oncogene	-0.00049115622013241
GO:0007165: signal transduction	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.002513753554286558
GO:0007165: signal transduction	SNX17	sorting nexin 17	0.0016412085197914951
GO:0007165: signal transduction	SOX9	SRY (sex determining region Y)-box 9	-0.0005184320937996084
GO:0007165: signal transduction	SPHK1	sphingosine kinase 1	0.0018104643880386781
GO:0007165: signal transduction	STK24	serine/threonine kinase 24	0.002694101109345122
GO:0007165: signal transduction	STMN1	stathmin 1	0.000558988212829223
GO:0007165: signal transduction	STX2	syntaxin 2	0.0003079835404112423
GO:0007165: signal transduction	TGFBR1	transforming growth factor, beta receptor 1	0.00033977308512114464
GO:0007165: signal transduction	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.00031715867109832025
GO:0007165: signal transduction	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.0027751532878522835
GO:0007165: signal transduction	TRAIP	TRAF interacting protein	0.0010222919425565637
GO:0007165: signal transduction	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005634964089186081
GO:0007165: signal transduction	VEGFC	vascular endothelial growth factor C	-0.003363283081559841
GO:0007165: signal transduction	VLDLR	very low density lipoprotein receptor	0.0009526634738594303
GO:0007165: signal transduction	ZPR1	ZPR1 zinc finger	-0.0002094504814459662
GO:0007179: transforming growth factor beta receptor signaling pathway	ACVRL1	activin A receptor type II-like 1	0.0019477170205270317
GO:0007179: transforming growth factor beta receptor signaling pathway	AMHR2	anti-Mullerian hormone receptor, type II	-0.00022492873707298102
GO:0007179: transforming growth factor beta receptor signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.0008183175303271573
GO:0007179: transforming growth factor beta receptor signaling pathway	CCNC	cyclin C	0.000568822152563501
GO:0007179: transforming growth factor beta receptor signaling pathway	CDK8	cyclin-dependent kinase 8	0.002617371224121285
GO:0007179: transforming growth factor beta receptor signaling pathway	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018392719383721057
GO:0007179: transforming growth factor beta receptor signaling pathway	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028244334171750652
GO:0007179: transforming growth factor beta receptor signaling pathway	CREB1	cAMP responsive element binding protein 1	0.0006603604642300682
GO:0007179: transforming growth factor beta receptor signaling pathway	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023502401060925245
GO:0007179: transforming growth factor beta receptor signaling pathway	ENG	endoglin	0.0008287895959262674
GO:0007179: transforming growth factor beta receptor signaling pathway	FOXH1	forkhead box H1	-0.0013747248438405282
GO:0007179: transforming growth factor beta receptor signaling pathway	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.0024371068357180565
GO:0007179: transforming growth factor beta receptor signaling pathway	HIPK2	homeodomain interacting protein kinase 2	0.0007721425017938068
GO:0007179: transforming growth factor beta receptor signaling pathway	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011384836277658148
GO:0007179: transforming growth factor beta receptor signaling pathway	PML	promyelocytic leukemia	-0.0006808554572287162
GO:0007179: transforming growth factor beta receptor signaling pathway	PRKCZ	protein kinase C, zeta	-0.0016038789679217642
GO:0007179: transforming growth factor beta receptor signaling pathway	RHOA	ras homolog family member A	0.000671138134059341
GO:0007179: transforming growth factor beta receptor signaling pathway	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011209206002378356
GO:0007179: transforming growth factor beta receptor signaling pathway	SKI	SKI proto-oncogene	-0.0006716534248830598
GO:0007179: transforming growth factor beta receptor signaling pathway	TFDP1	transcription factor Dp-1	0.0014487226922070137
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFB1	transforming growth factor, beta 1	-7.328683779457386e-5
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFB2	transforming growth factor, beta 2	-0.0010619459331235475
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFB3	transforming growth factor, beta 3	-0.0018281370084749255
GO:0007179: transforming growth factor beta receptor signaling pathway	TGFBR1	transforming growth factor, beta receptor 1	0.00034086779108912684
GO:0007179: transforming growth factor beta receptor signaling pathway	TP53	tumor protein p53	0.0011789064079598334
GO:0007179: transforming growth factor beta receptor signaling pathway	WWTR1	WW domain containing transcription regulator 1	0.0009030502462025909
GO:0008015: blood circulation	ACVRL1	activin A receptor type II-like 1	0.0019546331310049607
GO:0008015: blood circulation	ADM	adrenomedullin	0.0022504405831868584
GO:0008015: blood circulation	CXCL10	chemokine (C-X-C motif) ligand 10	6.365246412149711e-5
GO:0008015: blood circulation	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012155952786464233
GO:0008015: blood circulation	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023586915419635014
GO:0008015: blood circulation	HOXB2	homeobox B2	0.0027878740896505228
GO:0008217: regulation of blood pressure	ACVRL1	activin A receptor type II-like 1	0.0019582715530163924
GO:0008217: regulation of blood pressure	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011463655435048636
GO:0008217: regulation of blood pressure	HMOX1	heme oxygenase (decycling) 1	-0.00021983845923779873
GO:0008217: regulation of blood pressure	LEP	leptin	0.0032197843419849363
GO:0008217: regulation of blood pressure	LRP5	low density lipoprotein receptor-related protein 5	2.9415784427956542e-5
GO:0008285: negative regulation of cell proliferation	ACVRL1	activin A receptor type II-like 1	0.0019450423689848506
GO:0008285: negative regulation of cell proliferation	ADM	adrenomedullin	0.0022391940259310085
GO:0008285: negative regulation of cell proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011340968087181543
GO:0008285: negative regulation of cell proliferation	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0012097239612722768
GO:0008285: negative regulation of cell proliferation	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003020945674775801
GO:0008285: negative regulation of cell proliferation	APC	adenomatous polyposis coli	0.0006440335004019952
GO:0008285: negative regulation of cell proliferation	AR	androgen receptor	0.002639767820816289
GO:0008285: negative regulation of cell proliferation	ATF5	activating transcription factor 5	-0.002736752461099586
GO:0008285: negative regulation of cell proliferation	BAK1	BCL2-antagonist/killer 1	-0.0018772370398121953
GO:0008285: negative regulation of cell proliferation	BCHE	butyrylcholinesterase	-6.976529494566817e-6
GO:0008285: negative regulation of cell proliferation	BMP4	bone morphogenetic protein 4	-0.0003227789396435444
GO:0008285: negative regulation of cell proliferation	CD9	CD9 molecule	-0.0025877090187009155
GO:0008285: negative regulation of cell proliferation	CDC6	cell division cycle 6	0.0013548799959442635
GO:0008285: negative regulation of cell proliferation	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017593414912815564
GO:0008285: negative regulation of cell proliferation	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.001836648226542806
GO:0008285: negative regulation of cell proliferation	CHD5	chromodomain helicase DNA binding protein 5	-0.0005192094837780248
GO:0008285: negative regulation of cell proliferation	CIB1	calcium and integrin binding 1 (calmyrin)	5.457377976086567e-5
GO:0008285: negative regulation of cell proliferation	CSNK2B	casein kinase 2, beta polypeptide	0.0015297135610614445
GO:0008285: negative regulation of cell proliferation	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011700726060175807
GO:0008285: negative regulation of cell proliferation	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003978775054213935
GO:0008285: negative regulation of cell proliferation	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.0004715396291064071
GO:0008285: negative regulation of cell proliferation	DHCR24	24-dehydrocholesterol reductase	-0.0017085568606880312
GO:0008285: negative regulation of cell proliferation	DRD2	dopamine receptor D2	-0.00023414467350260128
GO:0008285: negative regulation of cell proliferation	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018313082969778486
GO:0008285: negative regulation of cell proliferation	FGFR3	fibroblast growth factor receptor 3	0.00022285984370167545
GO:0008285: negative regulation of cell proliferation	FLT3	fms-related tyrosine kinase 3	-0.0006819895209086497
GO:0008285: negative regulation of cell proliferation	GATA3	GATA binding protein 3	-3.9013435158005896e-5
GO:0008285: negative regulation of cell proliferation	GLI3	GLI family zinc finger 3	-0.002153050127690327
GO:0008285: negative regulation of cell proliferation	HMGA1	high mobility group AT-hook 1	-0.0003188707319187076
GO:0008285: negative regulation of cell proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001311096450024876
GO:0008285: negative regulation of cell proliferation	IGFBP3	insulin-like growth factor binding protein 3	0.0008371353197730288
GO:0008285: negative regulation of cell proliferation	IGFBP6	insulin-like growth factor binding protein 6	-0.002029294690595642
GO:0008285: negative regulation of cell proliferation	INHBA	inhibin, beta A	-0.001354191065560575
GO:0008285: negative regulation of cell proliferation	IRF6	interferon regulatory factor 6	-0.0016947300086202334
GO:0008285: negative regulation of cell proliferation	JAK2	Janus kinase 2	-3.168009369485466e-5
GO:0008285: negative regulation of cell proliferation	KLF11	Kruppel-like factor 11	0.0006172392148230502
GO:0008285: negative regulation of cell proliferation	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006610398783569432
GO:0008285: negative regulation of cell proliferation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014213375854111858
GO:0008285: negative regulation of cell proliferation	MSX1	msh homeobox 1	-0.002770886085654945
GO:0008285: negative regulation of cell proliferation	NCK2	NCK adaptor protein 2	-0.00023213668445202468
GO:0008285: negative regulation of cell proliferation	NDRG1	N-myc downstream regulated 1	-0.0009414853496860378
GO:0008285: negative regulation of cell proliferation	NF2	neurofibromin 2 (merlin)	-0.0012725663301033133
GO:0008285: negative regulation of cell proliferation	NOTCH1	notch 1	0.0005190883491611527
GO:0008285: negative regulation of cell proliferation	PDX1	pancreatic and duodenal homeobox 1	0.00025751202812593
GO:0008285: negative regulation of cell proliferation	PHOX2B	paired-like homeobox 2b	0.00039063016146476803
GO:0008285: negative regulation of cell proliferation	PML	promyelocytic leukemia	-0.0006802973368918826
GO:0008285: negative regulation of cell proliferation	POU1F1	POU class 1 homeobox 1	0.00013753675609704246
GO:0008285: negative regulation of cell proliferation	PRKCA	protein kinase C, alpha	-5.88075540219534e-6
GO:0008285: negative regulation of cell proliferation	PROX1	prospero homeobox 1	0.0011222581274418976
GO:0008285: negative regulation of cell proliferation	PTEN	phosphatase and tensin homolog	1.699164479750539e-5
GO:0008285: negative regulation of cell proliferation	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.0003294657092011839
GO:0008285: negative regulation of cell proliferation	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.00033868018785245137
GO:0008285: negative regulation of cell proliferation	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014997181483652178
GO:0008285: negative regulation of cell proliferation	RARG	retinoic acid receptor, gamma	-0.002320891909386745
GO:0008285: negative regulation of cell proliferation	RBBP4	retinoblastoma binding protein 4	-0.0018615449201155015
GO:0008285: negative regulation of cell proliferation	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009819875758064524
GO:0008285: negative regulation of cell proliferation	RXRA	retinoid X receptor, alpha	0.0011157885166322512
GO:0008285: negative regulation of cell proliferation	SERPINE2	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2	0.0025044221025937565
GO:0008285: negative regulation of cell proliferation	SFRP1	secreted frizzled-related protein 1	0.001282812940569683
GO:0008285: negative regulation of cell proliferation	SIRT2	sirtuin 2	-0.0008528284020049035
GO:0008285: negative regulation of cell proliferation	SKI	SKI proto-oncogene	-0.0006708552260220734
GO:0008285: negative regulation of cell proliferation	SLIT2	slit homolog 2 (Drosophila)	-0.0016212717145099957
GO:0008285: negative regulation of cell proliferation	SOX4	SRY (sex determining region Y)-box 4	-3.8238102958755e-5
GO:0008285: negative regulation of cell proliferation	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00048016449010720937
GO:0008285: negative regulation of cell proliferation	TGFB1	transforming growth factor, beta 1	-7.306558685080597e-5
GO:0008285: negative regulation of cell proliferation	TGFB2	transforming growth factor, beta 2	-0.0010601243020513839
GO:0008285: negative regulation of cell proliferation	TGFB3	transforming growth factor, beta 3	-0.0018249530927945778
GO:0008285: negative regulation of cell proliferation	TP53	tumor protein p53	0.0011765917919464672
GO:0008285: negative regulation of cell proliferation	TP73	tumor protein p73	0.0010285762628292005
GO:0008285: negative regulation of cell proliferation	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005638134434367348
GO:0008285: negative regulation of cell proliferation	VEGFC	vascular endothelial growth factor C	-0.003366077614319254
GO:0008285: negative regulation of cell proliferation	WT1	Wilms tumor 1	-0.0005072784612433904
GO:0010596: negative regulation of endothelial cell migration	ACVRL1	activin A receptor type II-like 1	0.0019392544309793543
GO:0010596: negative regulation of endothelial cell migration	AGER	advanced glycosylation end product-specific receptor	-0.00017405620776148923
GO:0010596: negative regulation of endothelial cell migration	SLIT2	slit homolog 2 (Drosophila)	-0.0016155582912411352
GO:0010596: negative regulation of endothelial cell migration	THBS1	thrombospondin 1	-0.0010327682943718805
GO:0010596: negative regulation of endothelial cell migration	VASH1	vasohibin 1	0.000597519297321114
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	ACVRL1	activin A receptor type II-like 1	0.001942963068277838
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	BMP4	bone morphogenetic protein 4	-0.0003224820909915349
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	BMP7	bone morphogenetic protein 7	0.0008550989828034136
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	CSNK2B	casein kinase 2, beta polypeptide	0.0015282231022148668
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	ENG	endoglin	0.0008261881775255027
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	GDF3	growth differentiation factor 3	-0.0018830764182839466
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	INHA	inhibin, alpha	0.00021133483828984223
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	INHBA	inhibin, beta A	-0.0013528337548718006
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFB1	transforming growth factor, beta 1	-7.314932938012387e-5
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFB2	transforming growth factor, beta 2	-0.0010589174293650276
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFB3	transforming growth factor, beta 3	-0.001823291127663478
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TGFBR1	transforming growth factor, beta receptor 1	0.0003398629920313265
GO:0010862: positive regulation of pathway-restricted SMAD protein phosphorylation	TTK	TTK protein kinase	0.0010856640624797391
GO:0023014: signal transduction by protein phosphorylation	ACVRL1	activin A receptor type II-like 1	0.0019476480050772892
GO:0023014: signal transduction by protein phosphorylation	AMHR2	anti-Mullerian hormone receptor, type II	-0.00022496307320129472
GO:0023014: signal transduction by protein phosphorylation	INSR	insulin receptor	-0.0013661233431596813
GO:0023014: signal transduction by protein phosphorylation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014238942193058259
GO:0023014: signal transduction by protein phosphorylation	STK24	serine/threonine kinase 24	0.0027001009317045906
GO:0023014: signal transduction by protein phosphorylation	TGFB2	transforming growth factor, beta 2	-0.0010619596012031703
GO:0023014: signal transduction by protein phosphorylation	TGFBR1	transforming growth factor, beta receptor 1	0.0003406119658438516
GO:0030308: negative regulation of cell growth	ACVRL1	activin A receptor type II-like 1	0.0019465937062195253
GO:0030308: negative regulation of cell growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001136679843623589
GO:0030308: negative regulation of cell growth	BCL2	B-cell CLL/lymphoma 2	-5.235961386149389e-6
GO:0030308: negative regulation of cell growth	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017620138049313189
GO:0030308: negative regulation of cell growth	CRYAB	crystallin, alpha B	0.000987206446025526
GO:0030308: negative regulation of cell growth	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.0004725078552287108
GO:0030308: negative regulation of cell growth	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016379374024781898
GO:0030308: negative regulation of cell growth	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008299974383682906
GO:0030308: negative regulation of cell growth	INHBA	inhibin, beta A	-0.0013570205450785641
GO:0030308: negative regulation of cell growth	MSX1	msh homeobox 1	-0.0027741962132968616
GO:0030308: negative regulation of cell growth	NF2	neurofibromin 2 (merlin)	-0.0012725211664658487
GO:0030308: negative regulation of cell growth	PML	promyelocytic leukemia	-0.000679924255983231
GO:0030308: negative regulation of cell growth	PRDM4	PR domain containing 4	0.0008408507580063661
GO:0030308: negative regulation of cell growth	PSRC1	proline/serine-rich coiled-coil 1	0.0006490186907055038
GO:0030308: negative regulation of cell growth	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003385804136027843
GO:0030308: negative regulation of cell growth	SERPINE2	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2	0.0025067765308946824
GO:0030308: negative regulation of cell growth	SFRP1	secreted frizzled-related protein 1	0.001286583701992506
GO:0030308: negative regulation of cell growth	SIRT1	sirtuin 1	-1.0999163846878843e-6
GO:0030308: negative regulation of cell growth	SLIT2	slit homolog 2 (Drosophila)	-0.0016231315668071005
GO:0030308: negative regulation of cell growth	TGFB1	transforming growth factor, beta 1	-7.352850406007187e-5
GO:0030308: negative regulation of cell growth	TGFB2	transforming growth factor, beta 2	-0.0010613630616584163
GO:0030308: negative regulation of cell growth	TP53	tumor protein p53	0.0011786364252468066
GO:0030308: negative regulation of cell growth	WT1	Wilms tumor 1	-0.0005080295022154231
GO:0030336: negative regulation of cell migration	ACVRL1	activin A receptor type II-like 1	0.0019417931581083524
GO:0030336: negative regulation of cell migration	ARPIN	actin-related protein 2/3 complex inhibitor	-0.00014142792688151746
GO:0030336: negative regulation of cell migration	BCL2	B-cell CLL/lymphoma 2	-5.098055626856386e-6
GO:0030336: negative regulation of cell migration	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008561084499457647
GO:0030336: negative regulation of cell migration	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003973377299888883
GO:0030336: negative regulation of cell migration	DACH1	dachshund family transcription factor 1	0.0020864773603336655
GO:0030336: negative regulation of cell migration	DAG1	dystroglycan 1 (dystrophin-associated glycoprotein 1)	0.0003612098521768639
GO:0030336: negative regulation of cell migration	DRD2	dopamine receptor D2	-0.00023385001518940203
GO:0030336: negative regulation of cell migration	ENG	endoglin	0.0008254162355259501
GO:0030336: negative regulation of cell migration	KANK1	KN motif and ankyrin repeat domains 1	0.002530448940681982
GO:0030336: negative regulation of cell migration	NF2	neurofibromin 2 (merlin)	-0.0012705218028460686
GO:0030336: negative regulation of cell migration	PTEN	phosphatase and tensin homolog	1.7255852294450388e-5
GO:0030336: negative regulation of cell migration	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003382301403196741
GO:0030336: negative regulation of cell migration	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011234506285016845
GO:0030336: negative regulation of cell migration	SFRP1	secreted frizzled-related protein 1	0.001279845867989799
GO:0030336: negative regulation of cell migration	SHH	sonic hedgehog	0.0005990921539456029
GO:0030336: negative regulation of cell migration	SLIT2	slit homolog 2 (Drosophila)	-0.0016182399277552251
GO:0030336: negative regulation of cell migration	STK24	serine/threonine kinase 24	0.002691671557617778
GO:0030336: negative regulation of cell migration	SULF1	sulfatase 1	-0.0008044807316197396
GO:0030336: negative regulation of cell migration	WNT4	wingless-type MMTV integration site family, member 4	-0.00025158545905789003
GO:0030509: BMP signaling pathway	ACVRL1	activin A receptor type II-like 1	0.0019435026586675328
GO:0030509: BMP signaling pathway	BMP4	bone morphogenetic protein 4	-0.00032207533292147463
GO:0030509: BMP signaling pathway	BMP7	bone morphogenetic protein 7	0.0008562001551039508
GO:0030509: BMP signaling pathway	DLX5	distal-less homeobox 5	-0.0032850254520641353
GO:0030509: BMP signaling pathway	EGR1	early growth response 1	0.0010933469015226142
GO:0030509: BMP signaling pathway	ENG	endoglin	0.0008263497207037054
GO:0030509: BMP signaling pathway	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009834225103412012
GO:0030509: BMP signaling pathway	GATA4	GATA binding protein 4	-0.0010940148851977716
GO:0030509: BMP signaling pathway	GDF3	growth differentiation factor 3	-0.001883718475608416
GO:0030509: BMP signaling pathway	LEF1	lymphoid enhancer-binding factor 1	-9.961637110677028e-5
GO:0030509: BMP signaling pathway	SKI	SKI proto-oncogene	-0.0006709456968314367
GO:0030513: positive regulation of BMP signaling pathway	ACVRL1	activin A receptor type II-like 1	0.001942498688367108
GO:0030513: positive regulation of BMP signaling pathway	BMP4	bone morphogenetic protein 4	-0.00032236645373537467
GO:0030513: positive regulation of BMP signaling pathway	ENG	endoglin	0.0008258856499784678
GO:0030513: positive regulation of BMP signaling pathway	GATA4	GATA binding protein 4	-0.0010939836837037238
GO:0030513: positive regulation of BMP signaling pathway	GATA6	GATA binding protein 6	-2.8058408187496588e-5
GO:0030513: positive regulation of BMP signaling pathway	HES1	hes family bHLH transcription factor 1	-0.0009102898038528629
GO:0030513: positive regulation of BMP signaling pathway	MSX1	msh homeobox 1	-0.0027669619221695556
GO:0030513: positive regulation of BMP signaling pathway	NOTCH1	notch 1	0.0005184455403721944
GO:0030513: positive regulation of BMP signaling pathway	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009807306261139035
GO:0030513: positive regulation of BMP signaling pathway	SOX11	SRY (sex determining region Y)-box 11	-0.00020882416755528305
GO:0030513: positive regulation of BMP signaling pathway	SULF1	sulfatase 1	-0.0008052128386622087
GO:0032332: positive regulation of chondrocyte differentiation	ACVRL1	activin A receptor type II-like 1	0.0019536518325165403
GO:0032332: positive regulation of chondrocyte differentiation	GLI3	GLI family zinc finger 3	-0.0021650768092271303
GO:0032332: positive regulation of chondrocyte differentiation	IHH	indian hedgehog	-0.002052110766871769
GO:0032332: positive regulation of chondrocyte differentiation	POR	P450 (cytochrome) oxidoreductase	0.0004601507885058435
GO:0032332: positive regulation of chondrocyte differentiation	SOX9	SRY (sex determining region Y)-box 9	-0.0005210372975415024
GO:0032924: activin receptor signaling pathway	ACVRL1	activin A receptor type II-like 1	0.0019500099733605403
GO:0032924: activin receptor signaling pathway	INHBA	inhibin, beta A	-0.001360519306704026
GO:0032924: activin receptor signaling pathway	TGFBR1	transforming growth factor, beta receptor 1	0.00034160273668654585
GO:0035313: wound healing, spreading of epidermal cells	ACVRL1	activin A receptor type II-like 1	0.0019396857516285298
GO:0035313: wound healing, spreading of epidermal cells	ARHGAP24	Rho GTPase activating protein 24	-0.0009324411740603252
GO:0035313: wound healing, spreading of epidermal cells	COL5A1	collagen, type V, alpha 1	-4.841118603584304e-5
GO:0043535: regulation of blood vessel endothelial cell migration	ACVRL1	activin A receptor type II-like 1	0.0019411176309128099
GO:0043535: regulation of blood vessel endothelial cell migration	EFNA1	ephrin-A1	-0.0005207594575803087
GO:0043537: negative regulation of blood vessel endothelial cell migration	ACVRL1	activin A receptor type II-like 1	0.0019350997676852316
GO:0043537: negative regulation of blood vessel endothelial cell migration	CSNK2B	casein kinase 2, beta polypeptide	0.0015202083780707122
GO:0043537: negative regulation of blood vessel endothelial cell migration	HMGB1	high mobility group box 1	-0.0007741255427552253
GO:0043537: negative regulation of blood vessel endothelial cell migration	TGFB1	transforming growth factor, beta 1	-7.219485695222208e-5
GO:0043537: negative regulation of blood vessel endothelial cell migration	THBS1	thrombospondin 1	-0.0010305616462237105
GO:0043537: negative regulation of blood vessel endothelial cell migration	VASH1	vasohibin 1	0.0005964130896585946
GO:0045602: negative regulation of endothelial cell differentiation	ACVRL1	activin A receptor type II-like 1	0.0019557258365855866
GO:0045603: positive regulation of endothelial cell differentiation	ACVRL1	activin A receptor type II-like 1	0.0019386631618379944
GO:0045603: positive regulation of endothelial cell differentiation	ALOX12	arachidonate 12-lipoxygenase	-0.0019479874804598791
GO:0045603: positive regulation of endothelial cell differentiation	BMP4	bone morphogenetic protein 4	-0.0003214854620348939
GO:0045603: positive regulation of endothelial cell differentiation	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011743315777938884
GO:0045603: positive regulation of endothelial cell differentiation	NOTCH1	notch 1	0.0005166574587866229
GO:0045766: positive regulation of angiogenesis	ACVRL1	activin A receptor type II-like 1	0.0019484576661752935
GO:0045766: positive regulation of angiogenesis	ADM	adrenomedullin	0.0022431340315819965
GO:0045766: positive regulation of angiogenesis	ALOX12	arachidonate 12-lipoxygenase	-0.0019585587277376466
GO:0045766: positive regulation of angiogenesis	C3	complement component 3	0.002029742039891386
GO:0045766: positive regulation of angiogenesis	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021230040437213832
GO:0045766: positive regulation of angiogenesis	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.000858762972197624
GO:0045766: positive regulation of angiogenesis	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039841652308391956
GO:0045766: positive regulation of angiogenesis	ECM1	extracellular matrix protein 1	-0.0015619311254693367
GO:0045766: positive regulation of angiogenesis	GATA2	GATA binding protein 2	-0.00045298233854311465
GO:0045766: positive regulation of angiogenesis	GATA4	GATA binding protein 4	-0.001097592728648809
GO:0045766: positive regulation of angiogenesis	GATA6	GATA binding protein 6	-2.7957635891901608e-5
GO:0045766: positive regulation of angiogenesis	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008303460376319978
GO:0045766: positive regulation of angiogenesis	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006478370845735988
GO:0045766: positive regulation of angiogenesis	HIPK2	homeodomain interacting protein kinase 2	0.0007724192858138798
GO:0045766: positive regulation of angiogenesis	HMOX1	heme oxygenase (decycling) 1	-0.0002182584415909264
GO:0045766: positive regulation of angiogenesis	ISL1	ISL LIM homeobox 1	7.865100337366006e-5
GO:0045766: positive regulation of angiogenesis	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.0029816642478921076
GO:0045766: positive regulation of angiogenesis	PRKCA	protein kinase C, alpha	-5.865913487281154e-6
GO:0045766: positive regulation of angiogenesis	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011210625265471011
GO:0045766: positive regulation of angiogenesis	SPHK1	sphingosine kinase 1	0.0018153777778733007
GO:0045766: positive regulation of angiogenesis	THBS1	thrombospondin 1	-0.0010384229136312748
GO:0045766: positive regulation of angiogenesis	TWIST1	twist family bHLH transcription factor 1	-0.0013453177836251862
GO:0045766: positive regulation of angiogenesis	VEGFA	vascular endothelial growth factor A	0.0005970545210815663
GO:0045766: positive regulation of angiogenesis	VEGFC	vascular endothelial growth factor C	-0.0033721779956947962
GO:0045766: positive regulation of angiogenesis	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006692282805074456
GO:0045893: positive regulation of transcription, DNA-templated	ACVRL1	activin A receptor type II-like 1	0.0019424699523251578
GO:0045893: positive regulation of transcription, DNA-templated	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001131951085849806
GO:0045893: positive regulation of transcription, DNA-templated	ALX1	ALX homeobox 1	0.002290436340917748
GO:0045893: positive regulation of transcription, DNA-templated	AR	androgen receptor	0.002636593340557387
GO:0045893: positive regulation of transcription, DNA-templated	ATAD2	ATPase family, AAA domain containing 2	-4.789011084695561e-5
GO:0045893: positive regulation of transcription, DNA-templated	ATF5	activating transcription factor 5	-0.0027330533475965753
GO:0045893: positive regulation of transcription, DNA-templated	AXIN1	axin 1	-0.0007324973990418599
GO:0045893: positive regulation of transcription, DNA-templated	BLM	Bloom syndrome, RecQ helicase-like	0.0005237542326881843
GO:0045893: positive regulation of transcription, DNA-templated	BMP4	bone morphogenetic protein 4	-0.00032233914684371285
GO:0045893: positive regulation of transcription, DNA-templated	BMP7	bone morphogenetic protein 7	0.0008551480720348394
GO:0045893: positive regulation of transcription, DNA-templated	BRCA2	breast cancer 2, early onset	-1.0194446723873578e-5
GO:0045893: positive regulation of transcription, DNA-templated	CCNE1	cyclin E1	0.00037051512478497605
GO:0045893: positive regulation of transcription, DNA-templated	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017565407423127844
GO:0045893: positive regulation of transcription, DNA-templated	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028158909298131732
GO:0045893: positive regulation of transcription, DNA-templated	CLOCK	clock circadian regulator	0.00020014388638220904
GO:0045893: positive regulation of transcription, DNA-templated	COL1A1	collagen, type I, alpha 1	-0.0005254580146218142
GO:0045893: positive regulation of transcription, DNA-templated	CREB1	cAMP responsive element binding protein 1	0.0006576257344525607
GO:0045893: positive regulation of transcription, DNA-templated	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011693183698617329
GO:0045893: positive regulation of transcription, DNA-templated	DLX5	distal-less homeobox 5	-0.003280946610089057
GO:0045893: positive regulation of transcription, DNA-templated	DNAJC2	DnaJ (Hsp40) homolog, subfamily C, member 2	-0.0009830605135970503
GO:0045893: positive regulation of transcription, DNA-templated	E2F1	E2F transcription factor 1	0.002096015752039045
GO:0045893: positive regulation of transcription, DNA-templated	E2F3	E2F transcription factor 3	0.0021602977746636724
GO:0045893: positive regulation of transcription, DNA-templated	EGR1	early growth response 1	0.001092277571488665
GO:0045893: positive regulation of transcription, DNA-templated	EGR2	early growth response 2	0.001437372938349719
GO:0045893: positive regulation of transcription, DNA-templated	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018253052870426605
GO:0045893: positive regulation of transcription, DNA-templated	ESR1	estrogen receptor 1	-0.0009472384920453688
GO:0045893: positive regulation of transcription, DNA-templated	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010147518385565995
GO:0045893: positive regulation of transcription, DNA-templated	FGF7	fibroblast growth factor 7	0.0006332387776418407
GO:0045893: positive regulation of transcription, DNA-templated	FOXA2	forkhead box A2	-1.6742221533040803e-5
GO:0045893: positive regulation of transcription, DNA-templated	FOXC1	forkhead box C1	-2.2422478273078026e-5
GO:0045893: positive regulation of transcription, DNA-templated	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017469206154163352
GO:0045893: positive regulation of transcription, DNA-templated	FOXH1	forkhead box H1	-0.0013699111435599694
GO:0045893: positive regulation of transcription, DNA-templated	FOXM1	forkhead box M1	0.00019684151868649386
GO:0045893: positive regulation of transcription, DNA-templated	FOXO1	forkhead box O1	0.0017988886680514547
GO:0045893: positive regulation of transcription, DNA-templated	FOXO3	forkhead box O3	0.0011990804052633508
GO:0045893: positive regulation of transcription, DNA-templated	FZD7	frizzled class receptor 7	0.0010694453897585473
GO:0045893: positive regulation of transcription, DNA-templated	GATA3	GATA binding protein 3	-3.879720197696247e-5
GO:0045893: positive regulation of transcription, DNA-templated	GATA4	GATA binding protein 4	-0.001093886335399841
GO:0045893: positive regulation of transcription, DNA-templated	GLI1	GLI family zinc finger 1	-0.001295918336745967
GO:0045893: positive regulation of transcription, DNA-templated	GLI2	GLI family zinc finger 2	0.0018520766205114227
GO:0045893: positive regulation of transcription, DNA-templated	GLI3	GLI family zinc finger 3	-0.002149767998237585
GO:0045893: positive regulation of transcription, DNA-templated	HDAC2	histone deacetylase 2	-0.0012065957095432297
GO:0045893: positive regulation of transcription, DNA-templated	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006460986295605771
GO:0045893: positive regulation of transcription, DNA-templated	HINFP	histone H4 transcription factor	0.0009917191211945694
GO:0045893: positive regulation of transcription, DNA-templated	HIPK2	homeodomain interacting protein kinase 2	0.0007703154598295995
GO:0045893: positive regulation of transcription, DNA-templated	HMGA1	high mobility group AT-hook 1	-0.0003185526900277933
GO:0045893: positive regulation of transcription, DNA-templated	HMGA2	high mobility group AT-hook 2	0.0015078669541719342
GO:0045893: positive regulation of transcription, DNA-templated	HMGB2	high mobility group box 2	0.00030640789679783957
GO:0045893: positive regulation of transcription, DNA-templated	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.014733886170629e-5
GO:0045893: positive regulation of transcription, DNA-templated	IFNA2	interferon, alpha 2	-0.0017160038228046421
GO:0045893: positive regulation of transcription, DNA-templated	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013067562121328762
GO:0045893: positive regulation of transcription, DNA-templated	IL4	interleukin 4	0.00025950438234369514
GO:0045893: positive regulation of transcription, DNA-templated	INHBA	inhibin, beta A	-0.0013515850421893516
GO:0045893: positive regulation of transcription, DNA-templated	INSR	insulin receptor	-0.0013621044597654382
GO:0045893: positive regulation of transcription, DNA-templated	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016074433700917178
GO:0045893: positive regulation of transcription, DNA-templated	IRF6	interferon regulatory factor 6	-0.0016923647209914838
GO:0045893: positive regulation of transcription, DNA-templated	IRF7	interferon regulatory factor 7	-0.0013057533261672226
GO:0045893: positive regulation of transcription, DNA-templated	KLF2	Kruppel-like factor 2	-0.0012312907135839464
GO:0045893: positive regulation of transcription, DNA-templated	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006600827015158212
GO:0045893: positive regulation of transcription, DNA-templated	LEF1	lymphoid enhancer-binding factor 1	-0.00010027652822402454
GO:0045893: positive regulation of transcription, DNA-templated	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.0003082385651295196
GO:0045893: positive regulation of transcription, DNA-templated	LHX1	LIM homeobox 1	-0.0007581026733613869
GO:0045893: positive regulation of transcription, DNA-templated	LRP5	low density lipoprotein receptor-related protein 5	3.0308567431594294e-5
GO:0045893: positive regulation of transcription, DNA-templated	LRP6	low density lipoprotein receptor-related protein 6	0.000149354263294902
GO:0045893: positive regulation of transcription, DNA-templated	MDK	midkine (neurite growth-promoting factor 2)	0.0016634429200248324
GO:0045893: positive regulation of transcription, DNA-templated	MED1	mediator complex subunit 1	0.0011281820256609694
GO:0045893: positive regulation of transcription, DNA-templated	MEF2C	myocyte enhancer factor 2C	0.0009725002200719215
GO:0045893: positive regulation of transcription, DNA-templated	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001135778893599524
GO:0045893: positive regulation of transcription, DNA-templated	NOTCH1	notch 1	0.0005183413877689855
GO:0045893: positive regulation of transcription, DNA-templated	NPAT	nuclear protein, ataxia-telangiectasia locus	-0.0007091645380148393
GO:0045893: positive regulation of transcription, DNA-templated	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.000800427455734805
GO:0045893: positive regulation of transcription, DNA-templated	NRIP1	nuclear receptor interacting protein 1	0.0010704948635502874
GO:0045893: positive regulation of transcription, DNA-templated	PAX2	paired box 2	-0.001612712724767983
GO:0045893: positive regulation of transcription, DNA-templated	PAX3	paired box 3	-0.0029431297390478755
GO:0045893: positive regulation of transcription, DNA-templated	PAX6	paired box 6	0.0019341878361513532
GO:0045893: positive regulation of transcription, DNA-templated	PAX8	paired box 8	0.0009476601432854527
GO:0045893: positive regulation of transcription, DNA-templated	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001535466408304212
GO:0045893: positive regulation of transcription, DNA-templated	POU1F1	POU class 1 homeobox 1	0.00013727846243815684
GO:0045893: positive regulation of transcription, DNA-templated	PROX1	prospero homeobox 1	0.0011205378911210572
GO:0045893: positive regulation of transcription, DNA-templated	PSRC1	proline/serine-rich coiled-coil 1	0.0006466591884429116
GO:0045893: positive regulation of transcription, DNA-templated	PTCH1	patched 1	-6.600176165707601e-5
GO:0045893: positive regulation of transcription, DNA-templated	RB1	retinoblastoma 1	-0.001492829789323435
GO:0045893: positive regulation of transcription, DNA-templated	RET	ret proto-oncogene	-0.0004908191583948981
GO:0045893: positive regulation of transcription, DNA-templated	RNF187	ring finger protein 187	-0.0022244566023502037
GO:0045893: positive regulation of transcription, DNA-templated	RREB1	ras responsive element binding protein 1	-0.001980417869329789
GO:0045893: positive regulation of transcription, DNA-templated	SALL1	spalt-like transcription factor 1	-0.002435057690651302
GO:0045893: positive regulation of transcription, DNA-templated	SFRP1	secreted frizzled-related protein 1	0.0012801395176055663
GO:0045893: positive regulation of transcription, DNA-templated	SHH	sonic hedgehog	0.0005993251429798957
GO:0045893: positive regulation of transcription, DNA-templated	SIX1	SIX homeobox 1	-0.0018685348885844179
GO:0045893: positive regulation of transcription, DNA-templated	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003452148327330154
GO:0045893: positive regulation of transcription, DNA-templated	SOX11	SRY (sex determining region Y)-box 11	-0.00020913766128075306
GO:0045893: positive regulation of transcription, DNA-templated	SOX18	SRY (sex determining region Y)-box 18	0.0012876607654467279
GO:0045893: positive regulation of transcription, DNA-templated	SOX4	SRY (sex determining region Y)-box 4	-3.847273016829239e-5
GO:0045893: positive regulation of transcription, DNA-templated	SOX9	SRY (sex determining region Y)-box 9	-0.0005182236558763611
GO:0045893: positive regulation of transcription, DNA-templated	TBX21	T-box 21	0.00039829661307276185
GO:0045893: positive regulation of transcription, DNA-templated	TBX3	T-box 3	0.0012256285385466954
GO:0045893: positive regulation of transcription, DNA-templated	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004796128279540786
GO:0045893: positive regulation of transcription, DNA-templated	TGFB1	transforming growth factor, beta 1	-7.288968852722859e-5
GO:0045893: positive regulation of transcription, DNA-templated	TGFB3	transforming growth factor, beta 3	-0.0018220658739433054
GO:0045893: positive regulation of transcription, DNA-templated	TGFBR1	transforming growth factor, beta receptor 1	0.0003395534066790807
GO:0045893: positive regulation of transcription, DNA-templated	TP53	tumor protein p53	0.0011745536935249114
GO:0045893: positive regulation of transcription, DNA-templated	TP73	tumor protein p73	0.0010271237257381712
GO:0045893: positive regulation of transcription, DNA-templated	TRIM16	tripartite motif containing 16	-0.0014876241924654256
GO:0045893: positive regulation of transcription, DNA-templated	WNT1	wingless-type MMTV integration site family, member 1	0.0007863796247952716
GO:0045893: positive regulation of transcription, DNA-templated	WNT4	wingless-type MMTV integration site family, member 4	-0.0002516132220950705
GO:0045893: positive regulation of transcription, DNA-templated	WNT5A	wingless-type MMTV integration site family, member 5A	-0.00066686284820819
GO:0045893: positive regulation of transcription, DNA-templated	WNT7A	wingless-type MMTV integration site family, member 7A	1.9536767214064937e-5
GO:0045893: positive regulation of transcription, DNA-templated	WT1	Wilms tumor 1	-0.0005064029700403651
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ACVRL1	activin A receptor type II-like 1	0.0019443040642050959
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ADIRF	adipogenesis regulatory factor	-0.0001664788414672765
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000730798763396178
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006260107247967156
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ALX1	ALX homeobox 1	0.0022925475500006403
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	AR	androgen receptor	0.0026388227389094257
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014328599434172361
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ATAD2	ATPase family, AAA domain containing 2	-4.762534917723752e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ATAD2B	ATPase family, AAA domain containing 2B	-0.0006257229810351443
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ATF5	activating transcription factor 5	-0.0027356679899733227
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004854033082600655
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BATF	basic leucine zipper transcription factor, ATF-like	0.0020395579562093196
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.0009772475489915093
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BMP4	bone morphogenetic protein 4	-0.0003226663399600546
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BMP7	bone morphogenetic protein 7	0.0008558708714268642
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	BRD4	bromodomain containing 4	0.0005538715296433382
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CCNC	cyclin C	0.0005675530115576566
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011383878037459394
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDK8	cyclin-dependent kinase 8	0.002613265909024936
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.001758535667932803
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018359023230596616
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002740273814654645
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CKAP2	cytoskeleton associated protein 2	4.914027723800832e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CLOCK	clock circadian regulator	0.00020012973136357572
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CREB1	cAMP responsive element binding protein 1	0.0006584918070843077
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011698352942197966
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	CXCL10	chemokine (C-X-C motif) ligand 10	6.257547612097444e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	DDX17	DEAD (Asp-Glu-Ala-Asp) box helicase 17	0.0017622599096275113
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	DMRT1	doublesex and mab-3 related transcription factor 1	0.0015048980570308546
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	DRD2	dopamine receptor D2	-0.00023408158485171764
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	E2F1	E2F transcription factor 1	0.0020981460473961065
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023461456649955417
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	E2F8	E2F transcription factor 8	0.0017113278291275697
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EGFR	epidermal growth factor receptor	0.0006859607328492661
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EGR1	early growth response 1	0.0010933264118176433
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EGR2	early growth response 2	0.0014391647228194577
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011713153360883154
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EN1	engrailed homeobox 1	-1.579431839824899e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ENG	endoglin	0.000826768363828639
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ESR1	estrogen receptor 1	-0.00094834195459816
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010158235714558567
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ETV4	ets variant 4	0.00019492280020143093
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	EYA1	EYA transcriptional coactivator and phosphatase 1	5.311280200307662e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FGFR2	fibroblast growth factor receptor 2	0.0007634000106427034
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXA1	forkhead box A1	2.774794035939219e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXA2	forkhead box A2	-1.6667603280648637e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXC1	forkhead box C1	-2.2231713211087937e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017485811525600034
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXH1	forkhead box H1	-0.0013714971674223674
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXM1	forkhead box M1	0.00019721263082714984
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXO1	forkhead box O1	0.001800608784965072
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	FOXO3	forkhead box O3	0.001200338976378505
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA2	GATA binding protein 2	-0.0004516560309394685
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA3	GATA binding protein 3	-3.900704642718178e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA4	GATA binding protein 4	-0.0010950113941441478
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GATA6	GATA binding protein 6	-2.8173187585814906e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GDNF	glial cell derived neurotrophic factor	0.0004448521982378431
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GLI1	GLI family zinc finger 1	-0.0012970825571942215
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GLI2	GLI family zinc finger 2	0.0018539204116941608
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GLI3	GLI family zinc finger 3	-0.0021521056330660853
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008275668341616591
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GRHL2	grainyhead-like 2 (Drosophila)	0.0010069632332025884
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	GSK3B	glycogen synthase kinase 3 beta	0.0015494892993057781
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HDAC2	histone deacetylase 2	-0.0012074866134420424
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HES1	hes family bHLH transcription factor 1	-0.0009111680624738234
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0026995028122499577
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006777681632462488
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.00064661804843119
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HIPK2	homeodomain interacting protein kinase 2	0.000770970616969436
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGA1	high mobility group AT-hook 1	-0.0003187503253906784
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGA2	high mobility group AT-hook 2	0.001509263302649499
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGB1	high mobility group box 1	-0.0007765246540718913
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HMGB2	high mobility group box 2	0.00030719307885096177
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXA10	homeobox A10	-0.002982540945301381
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXA5	homeobox A5	0.001066454837108327
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXB1	homeobox B1	0.0036872808076660033
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	HOXD13	homeobox D13	-0.0005925971480680945
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IFNG	interferon, gamma	-4.891164908630398e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IGBP1	immunoglobulin (CD79A) binding protein 1	0.0028499359303685956
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013093438469579286
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IHH	indian hedgehog	-0.002041046971787435
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IL4	interleukin 4	0.00025957704304408895
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	INHBA	inhibin, beta A	-0.0013533643395976804
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	IRF7	interferon regulatory factor 7	-0.001306922319073659
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ISL1	ISL LIM homeobox 1	7.899059658237337e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ITGA6	integrin, alpha 6	0.0016694025063890092
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	JAG1	jagged 1	0.0017569637542202388
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	JAK2	Janus kinase 2	-3.176400822489645e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KLF15	Kruppel-like factor 15	0.000465267016124692
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KLF2	Kruppel-like factor 2	-0.001232320746779287
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006607590505708989
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00019942560142910423
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LEF1	lymphoid enhancer-binding factor 1	-0.00010029885240289678
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LMO4	LIM domain only 4	0.0021118349984596855
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LRP5	low density lipoprotein receptor-related protein 5	3.0262688070737556e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	LRP6	low density lipoprotein receptor-related protein 6	0.0001495518837302869
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MED1	mediator complex subunit 1	0.0011294964355431274
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MEF2C	myocyte enhancer factor 2C	0.0009735755401232781
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MLLT10	myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10	-0.00016328558312821766
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MSX1	msh homeobox 1	-0.002769632461183464
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001136718077871007
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NCK1	NCK adaptor protein 1	-0.0007844735590932209
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NCK2	NCK adaptor protein 2	-0.0002321168743430568
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NFIB	nuclear factor I/B	0.002919954450386313
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NOTCH1	notch 1	0.0005188996920113448
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008010554039037999
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.0029756095966291317
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	NRIP1	nuclear receptor interacting protein 1	0.0010713490281943922
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX2	paired box 2	-0.001614428983625367
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX3	paired box 3	-0.0029458861572175302
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX6	paired box 6	0.0019361357343503503
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PAX8	paired box 8	0.000948381519579017
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PDX1	pancreatic and duodenal homeobox 1	0.00025733616349433574
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PGR	progesterone receptor	0.0003519403727872667
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PHOX2B	paired-like homeobox 2b	0.00039054729677026606
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.0021765648777488655
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	POU1F1	POU class 1 homeobox 1	0.00013744987738267367
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018560194764092608
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	PROX1	prospero homeobox 1	0.0011217509861606583
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RAD21	RAD21 homolog (S. pombe)	-0.00010233687057396992
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014991292176260002
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RARG	retinoic acid receptor, gamma	-0.0023199929125297877
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RB1	retinoblastoma 1	-0.0014943260016971117
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009816834092332132
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025147744791885513
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	RXRA	retinoid X receptor, alpha	0.001115341961476648
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SALL1	spalt-like transcription factor 1	-0.002437907997281629
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.000112352903574655
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006588716807296495
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SHH	sonic hedgehog	0.0006000688860940624
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIRT1	sirtuin 1	-1.653383044326981e-6
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIRT2	sirtuin 2	-0.0008524578540420826
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIX1	SIX homeobox 1	-0.0018703894772010036
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SIX3	SIX homeobox 3	0.002037706898422995
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SKI	SKI proto-oncogene	-0.0006706217304763652
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SMO	smoothened, frizzled class receptor	0.0021397104584296336
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX10	SRY (sex determining region Y)-box 10	0.00019050168791481686
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX11	SRY (sex determining region Y)-box 11	-0.00020912628944135016
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX18	SRY (sex determining region Y)-box 18	0.0012887650551480564
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX4	SRY (sex determining region Y)-box 4	-3.830235497765463e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SOX9	SRY (sex determining region Y)-box 9	-0.0005187298703103375
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	SPDEF	SAM pointed domain containing ETS transcription factor	0.003137605099992341
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	STAT5A	signal transducer and activator of transcription 5A	0.001596658780054534
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005738109595772471
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00047999911729672485
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010603330294379242
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TFDP1	transcription factor Dp-1	0.0014450484802161858
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TGFB1	transforming growth factor, beta 1	-7.302009650972834e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TGFB3	transforming growth factor, beta 3	-0.00182411692809807
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	THRA	thyroid hormone receptor, alpha	0.0007633944560357851
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	THRB	thyroid hormone receptor, beta	0.0019444257709734123
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TOP2A	topoisomerase (DNA) II alpha 170kDa	-8.251189842138425e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TP53	tumor protein p53	0.0011759598638691267
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TP73	tumor protein p73	0.001028138191138277
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TRPS1	trichorhinophalangeal syndrome I	-0.00017778008644282652
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	TWIST1	twist family bHLH transcription factor 1	-0.001341832189189521
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005636709231557241
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	VEGFA	vascular endothelial growth factor A	0.0005951064225557958
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WNT1	wingless-type MMTV integration site family, member 1	0.0007871140874052551
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006675786331229683
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WNT7A	wingless-type MMTV integration site family, member 7A	1.950994738521405e-5
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.0005070002401581366
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.000957392229645601
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	WWTR1	WW domain containing transcription regulator 1	0.0009006582974867818
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	XBP1	X-box binding protein 1	0.00026732367078014993
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	YAP1	Yes-associated protein 1	-0.00016437898165821567
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	YBX1	Y box binding protein 1	-0.0009140689035934037
GO:0045944: positive regulation of transcription from RNA polymerase II promoter	ZNF148	zinc finger protein 148	0.002104489054872158
GO:0051895: negative regulation of focal adhesion assembly	ACVRL1	activin A receptor type II-like 1	0.001953064965691358
GO:0051895: negative regulation of focal adhesion assembly	APOD	apolipoprotein D	0.0026421423650420167
GO:0051895: negative regulation of focal adhesion assembly	PTEN	phosphatase and tensin homolog	1.6114585803782068e-5
GO:0051895: negative regulation of focal adhesion assembly	THBS1	thrombospondin 1	-0.001040685622336991
GO:0060836: lymphatic endothelial cell differentiation	ACVRL1	activin A receptor type II-like 1	0.0019446579522799552
GO:0060836: lymphatic endothelial cell differentiation	PROX1	prospero homeobox 1	0.0011217936513517404
GO:0060836: lymphatic endothelial cell differentiation	SOX18	SRY (sex determining region Y)-box 18	0.0012898134639850673
GO:0060840: artery development	ACVRL1	activin A receptor type II-like 1	0.0019561802069634356
GO:0060840: artery development	GLI3	GLI family zinc finger 3	-0.002168766150195871
GO:0060840: artery development	SHH	sonic hedgehog	0.0006054598683210004
GO:0060841: venous blood vessel development	ACVRL1	activin A receptor type II-like 1	0.0019557258365855866
GO:0061154: endothelial tube morphogenesis	ACVRL1	activin A receptor type II-like 1	0.0019468136600092449
GO:0061154: endothelial tube morphogenesis	CSNK2B	casein kinase 2, beta polypeptide	0.001531422641557579
GO:0061154: endothelial tube morphogenesis	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.0001169837034554008
GO:0061298: retina vasculature development in camera-type eye	ACVRL1	activin A receptor type II-like 1	0.0019461897695409879
GO:0061298: retina vasculature development in camera-type eye	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.000647699841852195
GO:0061298: retina vasculature development in camera-type eye	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003609549333895538
GO:0061298: retina vasculature development in camera-type eye	ROM1	retinal outer segment membrane protein 1	0.002463912437196277
GO:0071560: cellular response to transforming growth factor beta stimulus	ACVRL1	activin A receptor type II-like 1	0.0019262613974889422
GO:0071560: cellular response to transforming growth factor beta stimulus	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005316917174526753
GO:0071560: cellular response to transforming growth factor beta stimulus	COL1A1	collagen, type I, alpha 1	-0.0005185334556705554
GO:0071560: cellular response to transforming growth factor beta stimulus	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008498669779676428
GO:0071560: cellular response to transforming growth factor beta stimulus	HDAC2	histone deacetylase 2	-0.0011978096555682782
GO:0071560: cellular response to transforming growth factor beta stimulus	MEF2C	myocyte enhancer factor 2C	0.0009628080732897102
GO:0071560: cellular response to transforming growth factor beta stimulus	SFRP1	secreted frizzled-related protein 1	0.0012641309059244071
GO:0071560: cellular response to transforming growth factor beta stimulus	SOX9	SRY (sex determining region Y)-box 9	-0.0005131145359244438
GO:0071560: cellular response to transforming growth factor beta stimulus	STAR	steroidogenic acute regulatory protein	0.0008850365768218509
GO:0071560: cellular response to transforming growth factor beta stimulus	TGFB1	transforming growth factor, beta 1	-7.196941732189379e-5
GO:0071560: cellular response to transforming growth factor beta stimulus	TGFBR1	transforming growth factor, beta receptor 1	0.00033582479403268414
GO:0071560: cellular response to transforming growth factor beta stimulus	WNT4	wingless-type MMTV integration site family, member 4	-0.00024749006372700274
GO:0071560: cellular response to transforming growth factor beta stimulus	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006607161693427858
GO:0071560: cellular response to transforming growth factor beta stimulus	WNT7A	wingless-type MMTV integration site family, member 7A	2.0016579181722845e-5
GO:0071773: cellular response to BMP stimulus	ACVRL1	activin A receptor type II-like 1	0.0019469161414038608
GO:0071773: cellular response to BMP stimulus	BMP4	bone morphogenetic protein 4	-0.0003231866008556083
GO:0071773: cellular response to BMP stimulus	BMP7	bone morphogenetic protein 7	0.0008567249057354782
GO:0071773: cellular response to BMP stimulus	DLX5	distal-less homeobox 5	-0.0032879921595807284
GO:0071773: cellular response to BMP stimulus	GATA3	GATA binding protein 3	-3.994414584849454e-5
GO:0071773: cellular response to BMP stimulus	GATA6	GATA binding protein 6	-2.7734945931624455e-5
GO:0071773: cellular response to BMP stimulus	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006787436791520903
GO:0071773: cellular response to BMP stimulus	PHOX2B	paired-like homeobox 2b	0.0003906186163447781
GO:0071773: cellular response to BMP stimulus	SFRP1	secreted frizzled-related protein 1	0.0012856317685286153
GO:2000279: negative regulation of DNA biosynthetic process	ACVRL1	activin A receptor type II-like 1	0.0019437890735744718
GO:2000279: negative regulation of DNA biosynthetic process	DACH1	dachshund family transcription factor 1	0.0020895788088585022
GO:2000279: negative regulation of DNA biosynthetic process	DNAJC2	DnaJ (Hsp40) homolog, subfamily C, member 2	-0.0009839168760175264
GO:2000279: negative regulation of DNA biosynthetic process	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016054343281828373
GO:0006508: proteolysis	ADAM2	ADAM metallopeptidase domain 2	0.0008093986193826221
GO:0006508: proteolysis	AZU1	azurocidin 1	0.000197459191560909
GO:0006508: proteolysis	C2	complement component 2	-0.00030323887282066725
GO:0006508: proteolysis	CHMP1A	charged multivesicular body protein 1A	-0.0007779082330697749
GO:0006508: proteolysis	CPA4	carboxypeptidase A4	-0.0006964846600073002
GO:0006508: proteolysis	CTSK	cathepsin K	-0.00036121391973878447
GO:0006508: proteolysis	CUL7	cullin 7	-0.00011845549940195477
GO:0006508: proteolysis	ESPL1	extra spindle pole bodies homolog 1 (S. cerevisiae)	0.00019570583778176628
GO:0006508: proteolysis	FAP	fibroblast activation protein, alpha	-0.00048527449866830815
GO:0006508: proteolysis	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.0003145745064321037
GO:0006508: proteolysis	HPN	hepsin	0.0031517195395803256
GO:0006508: proteolysis	KLK5	kallikrein-related peptidase 5	0.0017293365197943117
GO:0006508: proteolysis	KLK7	kallikrein-related peptidase 7	0.0016212867507967709
GO:0006508: proteolysis	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009299303650135817
GO:0006508: proteolysis	METAP1	methionyl aminopeptidase 1	-0.0010139925529321571
GO:0006508: proteolysis	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011276573466487826
GO:0006508: proteolysis	MMP20	matrix metallopeptidase 20	-0.0024265001319835316
GO:0006508: proteolysis	MMP24	matrix metallopeptidase 24 (membrane-inserted)	0.0014861614325918419
GO:0006508: proteolysis	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004245508828506055
GO:0006508: proteolysis	NAALADL1	N-acetylated alpha-linked acidic dipeptidase-like 1	-0.001016559328260767
GO:0006508: proteolysis	NDEL1	nudE neurodevelopment protein 1-like 1	-0.0006025021567582334
GO:0006508: proteolysis	PCSK2	proprotein convertase subtilisin/kexin type 2	0.0006040018243175646
GO:0006508: proteolysis	PGC	progastricsin (pepsinogen C)	0.0013209284413645671
GO:0006508: proteolysis	RELN	reelin	0.0015327924562527383
GO:0006508: proteolysis	SFRP1	secreted frizzled-related protein 1	0.0012765291137464016
GO:0007155: cell adhesion	ADAM2	ADAM metallopeptidase domain 2	0.0008104134556117929
GO:0007155: cell adhesion	APC	adenomatous polyposis coli	0.0006434239199560317
GO:0007155: cell adhesion	CCL2	chemokine (C-C motif) ligand 2	0.0008159160900474185
GO:0007155: cell adhesion	CD22	CD22 molecule	0.0008367696149558019
GO:0007155: cell adhesion	CD9	CD9 molecule	-0.002583798372750069
GO:0007155: cell adhesion	CDH2	cadherin 2, type 1, N-cadherin (neuronal)	-0.0006440520366830423
GO:0007155: cell adhesion	CDH3	cadherin 3, type 1, P-cadherin (placental)	-0.001229651442477767
GO:0007155: cell adhesion	CIB1	calcium and integrin binding 1 (calmyrin)	5.483415768749762e-5
GO:0007155: cell adhesion	COL5A1	collagen, type V, alpha 1	-4.900339602575972e-5
GO:0007155: cell adhesion	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.312030252776062e-5
GO:0007155: cell adhesion	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011686020462413978
GO:0007155: cell adhesion	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.002114675100483909
GO:0007155: cell adhesion	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008563173162415537
GO:0007155: cell adhesion	CXCL12	chemokine (C-X-C motif) ligand 12	-0.001207260672067927
GO:0007155: cell adhesion	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039745795367300134
GO:0007155: cell adhesion	DSC2	desmocollin 2	0.0004698949916007315
GO:0007155: cell adhesion	DSG2	desmoglein 2	1.680558590932103e-5
GO:0007155: cell adhesion	EFS	embryonal Fyn-associated substrate	0.0039049070512974637
GO:0007155: cell adhesion	ENG	endoglin	0.0008255748753880439
GO:0007155: cell adhesion	FAP	fibroblast activation protein, alpha	-0.00048683530530950936
GO:0007155: cell adhesion	GRHL2	grainyhead-like 2 (Drosophila)	0.001005966527847302
GO:0007155: cell adhesion	HES1	hes family bHLH transcription factor 1	-0.0009101116586829484
GO:0007155: cell adhesion	ICAM1	intercellular adhesion molecule 1	0.0007288206912410561
GO:0007155: cell adhesion	ITGB4	integrin, beta 4	0.0005795781480714006
GO:0007155: cell adhesion	LAMB2	laminin, beta 2 (laminin S)	-0.00130774341966587
GO:0007155: cell adhesion	MFGE8	milk fat globule-EGF factor 8 protein	0.0018029424111920083
GO:0007155: cell adhesion	MYH10	myosin, heavy chain 10, non-muscle	-0.0003286954998104907
GO:0007155: cell adhesion	PRKCA	protein kinase C, alpha	-5.8623549958764245e-6
GO:0007155: cell adhesion	PRKX	protein kinase, X-linked	0.00039422521787568256
GO:0007155: cell adhesion	PTK7	protein tyrosine kinase 7	-0.00022510246975984075
GO:0007155: cell adhesion	RELN	reelin	0.0015356399567435892
GO:0007155: cell adhesion	ROBO1	roundabout, axon guidance receptor, homolog 1 (Drosophila)	-0.002245569196689939
GO:0007155: cell adhesion	ROM1	retinal outer segment membrane protein 1	0.002458616143535572
GO:0007155: cell adhesion	SELPLG	selectin P ligand	0.0002865880411651113
GO:0007155: cell adhesion	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0018981817539297052
GO:0007155: cell adhesion	THBS1	thrombospondin 1	-0.0010349187003224826
GO:0007155: cell adhesion	TNC	tenascin C	0.0007335921996569873
GO:0007338: single fertilization	ADAM2	ADAM metallopeptidase domain 2	0.0008170994606222094
GO:0007338: single fertilization	CD9	CD9 molecule	-0.0026086310294060446
GO:0007338: single fertilization	HOXA10	homeobox A10	-0.0030081021179170007
GO:0007338: single fertilization	MFGE8	milk fat globule-EGF factor 8 protein	0.0018223137848137067
GO:0007338: single fertilization	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0019147568464803436
GO:0007339: binding of sperm to zona pellucida	ADAM2	ADAM metallopeptidase domain 2	0.0008052193631786537
GO:0007339: binding of sperm to zona pellucida	CRISP1	cysteine-rich secretory protein 1	9.152250557947092e-5
GO:0007339: binding of sperm to zona pellucida	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0018833847731023394
GO:0007342: fusion of sperm to egg plasma membrane	ADAM2	ADAM metallopeptidase domain 2	0.0008106749459156307
GO:0007342: fusion of sperm to egg plasma membrane	CD9	CD9 molecule	-0.0025849664628372726
GO:0007342: fusion of sperm to egg plasma membrane	CRISP1	cysteine-rich secretory protein 1	9.054040874410058e-5
GO:0007342: fusion of sperm to egg plasma membrane	ROPN1B	rhophilin associated tail protein 1B	0.0005975338370428854
GO:0007342: fusion of sperm to egg plasma membrane	SERPINA5	serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5	-0.0007106164040647413
GO:0007342: fusion of sperm to egg plasma membrane	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.0018989810548254596
GO:0007342: fusion of sperm to egg plasma membrane	TPST2	tyrosylprotein sulfotransferase 2	0.0007132110022684664
GO:0008542: visual learning	ADAM2	ADAM metallopeptidase domain 2	0.0008098189728719655
GO:0008542: visual learning	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.000776983568262972
GO:0008542: visual learning	DRD2	dopamine receptor D2	-0.000233704523110252
GO:0008542: visual learning	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006456804283043317
GO:0008542: visual learning	HTT	huntingtin	-0.0009699089190292247
GO:0008542: visual learning	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024216526595014867
GO:0008542: visual learning	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002734956918947968
GO:0008542: visual learning	RGS14	regulator of G-protein signaling 14	-0.001580169586523755
GO:0030534: adult behavior	ADAM2	ADAM metallopeptidase domain 2	0.0007804693401182161
GO:0030534: adult behavior	BBS4	Bardet-Biedl syndrome 4	-0.0004923309987886047
GO:0030534: adult behavior	PTEN	phosphatase and tensin homolog	3.09204669775408e-5
GO:0032504: multicellular organism reproduction	ADAM2	ADAM metallopeptidase domain 2	0.0008149650517966666
GO:0032504: multicellular organism reproduction	CD9	CD9 molecule	-0.0025997425372637373
GO:0032504: multicellular organism reproduction	SPAM1	sperm adhesion molecule 1 (PH-20 hyaluronidase, zona pellucida binding)	-0.001908884947219689
KEGG:05162: Measles	ADAR	adenosine deaminase, RNA-specific	-0.00013671288826628818
KEGG:05162: Measles	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007287490684174982
KEGG:05162: Measles	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006246655082449753
KEGG:05162: Measles	CCND1	cyclin D1	-0.0026253025827962886
KEGG:05162: Measles	CCNE1	cyclin E1	0.00036954137069375524
KEGG:05162: Measles	CCNE2	cyclin E2	0.001103641397869948
KEGG:05162: Measles	CLEC4M	C-type lectin domain family 4, member M	-0.0013869551595511631
KEGG:05162: Measles	CSNK2B	casein kinase 2, beta polypeptide	0.0015246119643528603
KEGG:05162: Measles	FAS	Fas cell surface death receptor	-3.32199247754618e-5
KEGG:05162: Measles	GSK3B	glycogen synthase kinase 3 beta	0.0015454716412320682
KEGG:05162: Measles	HSPA2	heat shock 70kDa protein 2	-0.00010593951113440394
KEGG:05162: Measles	IFNA2	interferon, alpha 2	-0.0017133409832278794
KEGG:05162: Measles	IFNG	interferon, gamma	-4.891538804258333e-5
KEGG:05162: Measles	IL12B	interleukin 12B	0.0012745687353103083
KEGG:05162: Measles	IL4	interleukin 4	0.0002594344589440295
KEGG:05162: Measles	IRAK1	interleukin-1 receptor-associated kinase 1	-0.00160495879364553
KEGG:05162: Measles	IRF7	interferon regulatory factor 7	-0.001303843663897984
KEGG:05162: Measles	JAK2	Janus kinase 2	-3.222539521968385e-5
KEGG:05162: Measles	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007789979071440779
KEGG:05162: Measles	RCHY1	ring finger and CHY zinc finger domain containing 1, E3 ubiquitin protein ligase	-0.0010955495125526656
KEGG:05162: Measles	STAT5A	signal transducer and activator of transcription 5A	0.0015927895010371639
KEGG:05162: Measles	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011138320160672033
KEGG:05162: Measles	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.00031694623567988476
KEGG:05162: Measles	TP53	tumor protein p53	0.0011722475970647728
KEGG:05162: Measles	TP73	tumor protein p73	0.0010255305142626689
KEGG:05164: Influenza A	ADAR	adenosine deaminase, RNA-specific	-0.00013830670650294936
KEGG:05164: Influenza A	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007154224829440939
KEGG:05164: Influenza A	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006175307562999022
KEGG:05164: Influenza A	CCL2	chemokine (C-C motif) ligand 2	0.0008002299402729665
KEGG:05164: Influenza A	CXCL10	chemokine (C-X-C motif) ligand 10	5.5928605933542664e-5
KEGG:05164: Influenza A	DNAJB1	DnaJ (Hsp40) homolog, subfamily B, member 1	-0.00023376499030068937
KEGG:05164: Influenza A	FAS	Fas cell surface death receptor	-3.269710544663407e-5
KEGG:05164: Influenza A	GSK3B	glycogen synthase kinase 3 beta	0.001521123521066704
KEGG:05164: Influenza A	HSPA2	heat shock 70kDa protein 2	-9.445156633811755e-5
KEGG:05164: Influenza A	ICAM1	intercellular adhesion molecule 1	0.0007222394142386343
KEGG:05164: Influenza A	IFNA2	interferon, alpha 2	-0.0016872938024025939
KEGG:05164: Influenza A	IFNG	interferon, gamma	-4.922826925518975e-5
KEGG:05164: Influenza A	IL12B	interleukin 12B	0.0012597054317034244
KEGG:05164: Influenza A	IRF7	interferon regulatory factor 7	-0.0012855425305344484
KEGG:05164: Influenza A	JAK2	Janus kinase 2	-3.703844849291688e-5
KEGG:05164: Influenza A	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007666088691241043
KEGG:05164: Influenza A	PML	promyelocytic leukemia	-0.0006740708732245695
KEGG:05164: Influenza A	PRKCA	protein kinase C, alpha	-6.329865720102788e-6
KEGG:05164: Influenza A	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014722450759271897
KEGG:05164: Influenza A	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.00031677110527670975
KEGG:04623: Cytosolic DNA-sensing pathway	ADAR	adenosine deaminase, RNA-specific	-0.00013757563618133967
KEGG:04623: Cytosolic DNA-sensing pathway	CXCL10	chemokine (C-X-C motif) ligand 10	5.917567716376295e-5
KEGG:04623: Cytosolic DNA-sensing pathway	IFNA2	interferon, alpha 2	-0.0017025244418005941
KEGG:04623: Cytosolic DNA-sensing pathway	IRF7	interferon regulatory factor 7	-0.001296299782524989
GO:0001649: osteoblast differentiation	ADAR	adenosine deaminase, RNA-specific	-0.00013647345641657494
GO:0001649: osteoblast differentiation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007310432064968361
GO:0001649: osteoblast differentiation	ASF1A	anti-silencing function 1A histone chaperone	0.0010506464179521327
GO:0001649: osteoblast differentiation	BMP4	bone morphogenetic protein 4	-0.0003227616967355372
GO:0001649: osteoblast differentiation	COL1A1	collagen, type I, alpha 1	-0.0005270021809212881
GO:0001649: osteoblast differentiation	DLX5	distal-less homeobox 5	-0.0032844476647537774
GO:0001649: osteoblast differentiation	FBL	fibrillarin	-0.0002730574108555114
GO:0001649: osteoblast differentiation	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016236491303947537
GO:0001649: osteoblast differentiation	GLI1	GLI family zinc finger 1	-0.0012973024908317558
GO:0001649: osteoblast differentiation	GLI2	GLI family zinc finger 2	0.00185430583933422
GO:0001649: osteoblast differentiation	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.0011633178153449318
GO:0001649: osteoblast differentiation	IGFBP3	insulin-like growth factor binding protein 3	0.0008368225771456333
GO:0001649: osteoblast differentiation	IHH	indian hedgehog	-0.0020416422971991904
GO:0001649: osteoblast differentiation	LEF1	lymphoid enhancer-binding factor 1	-0.00010026773340694057
GO:0001649: osteoblast differentiation	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.0003086131415210505
GO:0001649: osteoblast differentiation	MEF2C	myocyte enhancer factor 2C	0.0009739339404381668
GO:0001649: osteoblast differentiation	SFRP1	secreted frizzled-related protein 1	0.0012832922784907612
GO:0001649: osteoblast differentiation	SMO	smoothened, frizzled class receptor	0.00214021025579662
GO:0001649: osteoblast differentiation	TNC	tenascin C	0.0007346243974645873
GO:0001649: osteoblast differentiation	TWIST1	twist family bHLH transcription factor 1	-0.001342324836723163
GO:0001649: osteoblast differentiation	WWTR1	WW domain containing transcription regulator 1	0.0009013842858677853
GO:0002244: hematopoietic progenitor cell differentiation	ADAR	adenosine deaminase, RNA-specific	-0.00013602220375612058
GO:0002244: hematopoietic progenitor cell differentiation	BMP4	bone morphogenetic protein 4	-0.00032074253230548365
GO:0002244: hematopoietic progenitor cell differentiation	INHBA	inhibin, beta A	-0.0013437987085223018
GO:0002244: hematopoietic progenitor cell differentiation	PLEK	pleckstrin	0.0009786768375722964
GO:0002244: hematopoietic progenitor cell differentiation	SFRP1	secreted frizzled-related protein 1	0.001273691022964945
GO:0002244: hematopoietic progenitor cell differentiation	TGFB1	transforming growth factor, beta 1	-7.285023274196373e-5
GO:0002244: hematopoietic progenitor cell differentiation	TOP2A	topoisomerase (DNA) II alpha 170kDa	-8.17035888028358e-5
GO:0002566: somatic diversification of immune receptors via somatic mutation	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975793
GO:0006382: adenosine to inosine editing	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975793
GO:0006397: mRNA processing	ADAR	adenosine deaminase, RNA-specific	-0.00013680736123699487
GO:0006397: mRNA processing	JMJD6	jumonji domain containing 6	0.003605752452075933
GO:0006397: mRNA processing	SF3B2	splicing factor 3b, subunit 2, 145kDa	0.0006868879876014885
GO:0006397: mRNA processing	ZPR1	ZPR1 zinc finger	-0.000211143475087956
GO:0006606: protein import into nucleus	ADAR	adenosine deaminase, RNA-specific	-0.0001393602364594815
GO:0006606: protein import into nucleus	HTT	huntingtin	-0.000942543490455268
GO:0006606: protein import into nucleus	KPNB1	karyopherin (importin) beta 1	0.0007528784128011074
GO:0006611: protein export from nucleus	ADAR	adenosine deaminase, RNA-specific	-0.00013675380177956807
GO:0006611: protein export from nucleus	EGR2	early growth response 2	0.0014334529998805967
GO:0006611: protein export from nucleus	GSK3B	glycogen synthase kinase 3 beta	0.0015447044502712784
GO:0006611: protein export from nucleus	TGFB1	transforming growth factor, beta 1	-7.245090681910449e-5
GO:0009615: response to virus	ADAR	adenosine deaminase, RNA-specific	-0.0001372325413364111
GO:0009615: response to virus	CCL8	chemokine (C-C motif) ligand 8	-0.0005850600306212149
GO:0009615: response to virus	CFL1	cofilin 1 (non-muscle)	-0.0011566900270993238
GO:0009615: response to virus	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0011902506244304697
GO:0009615: response to virus	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007819109697478863
GO:0009615: response to virus	GATA3	GATA binding protein 3	-3.676280958412631e-5
GO:0009615: response to virus	HMGA1	high mobility group AT-hook 1	-0.0003154490730205802
GO:0009615: response to virus	HMGA2	high mobility group AT-hook 2	0.0014888663935048643
GO:0009615: response to virus	IFNG	interferon, gamma	-4.881796501282647e-5
GO:0009615: response to virus	IRF7	interferon regulatory factor 7	-0.0012902643344611484
GO:0009615: response to virus	MEF2C	myocyte enhancer factor 2C	0.0009571999464746798
GO:0009615: response to virus	ODC1	ornithine decarboxylase 1	0.0008129549933178983
GO:0009615: response to virus	STMN1	stathmin 1	0.0005468524571078878
GO:0009615: response to virus	TBX21	T-box 21	0.0003947013980589759
GO:0010467: gene expression	ADAR	adenosine deaminase, RNA-specific	-0.00013715040135377292
GO:0010467: gene expression	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0012074138188740524
GO:0010467: gene expression	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000727950094718941
GO:0010467: gene expression	AR	androgen receptor	0.002633079968865364
GO:0010467: gene expression	CCNC	cyclin C	0.000564711047212912
GO:0010467: gene expression	CDC40	cell division cycle 40	0.004153556308255369
GO:0010467: gene expression	CDK8	cyclin-dependent kinase 8	0.002605894673109862
GO:0010467: gene expression	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018302426117802648
GO:0010467: gene expression	DCP1A	decapping mRNA 1A	-0.0011889563362459151
GO:0010467: gene expression	DICER1	dicer 1, ribonuclease type III	-1.6280070019297462e-5
GO:0010467: gene expression	E2F4	E2F transcription factor 4, p107/p130-binding	-0.002339110389203165
GO:0010467: gene expression	EDA	ectodysplasin A	-0.0008111067719026454
GO:0010467: gene expression	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.0007399557932371729
GO:0010467: gene expression	ESR1	estrogen receptor 1	-0.0009437023007935864
GO:0010467: gene expression	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013822702540941694
GO:0010467: gene expression	HDAC2	histone deacetylase 2	-0.0012059666510790797
GO:0010467: gene expression	IGF2BP2	insulin-like growth factor 2 mRNA binding protein 2	-0.0009345954717638299
GO:0010467: gene expression	IGF2BP3	insulin-like growth factor 2 mRNA binding protein 3	-0.00038405624373259386
GO:0010467: gene expression	LARS2	leucyl-tRNA synthetase 2, mitochondrial	0.00046596367780559926
GO:0010467: gene expression	MED1	mediator complex subunit 1	0.0011243407578243002
GO:0010467: gene expression	MTERF1	mitochondrial transcription termination factor 1	0.00028563798065864873
GO:0010467: gene expression	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011346788857881217
GO:0010467: gene expression	NOTCH1	notch 1	0.0005167143356663517
GO:0010467: gene expression	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007994962327485643
GO:0010467: gene expression	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.002967461502036658
GO:0010467: gene expression	NRBF2	nuclear receptor binding factor 2	-0.0009485175135698678
GO:0010467: gene expression	NUP153	nucleoporin 153kDa	0.0008206700334699575
GO:0010467: gene expression	PGR	progesterone receptor	0.00035254807591750395
GO:0010467: gene expression	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018487785823618486
GO:0010467: gene expression	PRKCA	protein kinase C, alpha	-6.0028754848265984e-6
GO:0010467: gene expression	PRKCD	protein kinase C, delta	-0.0011237942402427216
GO:0010467: gene expression	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.0003303653219311146
GO:0010467: gene expression	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010933626387221024
GO:0010467: gene expression	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.052002956505371e-5
GO:0010467: gene expression	PTEN	phosphatase and tensin homolog	1.872321330691139e-5
GO:0010467: gene expression	RARG	retinoic acid receptor, gamma	-0.002312732049418042
GO:0010467: gene expression	RBBP4	retinoblastoma binding protein 4	-0.001858325761041683
GO:0010467: gene expression	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.000979469324246348
GO:0010467: gene expression	RXRA	retinoid X receptor, alpha	0.0011121463300903574
GO:0010467: gene expression	SEH1L	SEH1-like (S. cerevisiae)	-0.0007317701174542201
GO:0010467: gene expression	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011305298860409828
GO:0010467: gene expression	SF3B2	splicing factor 3b, subunit 2, 145kDa	0.0006811560016530261
GO:0010467: gene expression	SIRT1	sirtuin 1	-2.513968345937961e-6
GO:0010467: gene expression	SKI	SKI proto-oncogene	-0.0006689666279757571
GO:0010467: gene expression	SMC1A	structural maintenance of chromosomes 1A	-0.0010173157563004769
GO:0010467: gene expression	SNRPB	small nuclear ribonucleoprotein polypeptides B and B1	0.0006619905665319624
GO:0010467: gene expression	TFDP1	transcription factor Dp-1	0.0014375611998349558
GO:0010467: gene expression	THRA	thyroid hormone receptor, alpha	0.0007613593629615001
GO:0010467: gene expression	THRB	thyroid hormone receptor, beta	0.001939209127683267
GO:0010467: gene expression	TP53	tumor protein p53	0.001170199410463107
GO:0010467: gene expression	TPR	translocated promoter region, nuclear basket protein	-0.0006954732631280889
GO:0010467: gene expression	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005629512267216589
GO:0010467: gene expression	WDR77	WD repeat domain 77	0.00013144749149961182
GO:0010467: gene expression	WWTR1	WW domain containing transcription regulator 1	0.0008953087042605956
GO:0010467: gene expression	YAP1	Yes-associated protein 1	-0.00016484178373847903
GO:0010467: gene expression	YBX1	Y box binding protein 1	-0.0009133835980316579
GO:0016553: base conversion or substitution editing	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975793
GO:0016556: mRNA modification	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975793
GO:0019221: cytokine-mediated signaling pathway	ADAR	adenosine deaminase, RNA-specific	-0.0001372456577960014
GO:0019221: cytokine-mediated signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.0008103532508516601
GO:0019221: cytokine-mediated signaling pathway	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-7.926335450691386e-5
GO:0019221: cytokine-mediated signaling pathway	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0020986239607392234
GO:0019221: cytokine-mediated signaling pathway	EGR1	early growth response 1	0.0010857561953761554
GO:0019221: cytokine-mediated signaling pathway	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.000737172288195492
GO:0019221: cytokine-mediated signaling pathway	FLT3	fms-related tyrosine kinase 3	-0.0006749201034360918
GO:0019221: cytokine-mediated signaling pathway	ICAM1	intercellular adhesion molecule 1	0.0007265161158796248
GO:0019221: cytokine-mediated signaling pathway	IFNA2	interferon, alpha 2	-0.0017057107594057287
GO:0019221: cytokine-mediated signaling pathway	IFNG	interferon, gamma	-4.901533948544576e-5
GO:0019221: cytokine-mediated signaling pathway	IL12B	interleukin 12B	0.0012703394824661383
GO:0019221: cytokine-mediated signaling pathway	IL20RA	interleukin 20 receptor, alpha	0.00017454558999419168
GO:0019221: cytokine-mediated signaling pathway	IL6ST	interleukin 6 signal transducer	0.0018646748087262463
GO:0019221: cytokine-mediated signaling pathway	IRF6	interferon regulatory factor 6	-0.001681570496917361
GO:0019221: cytokine-mediated signaling pathway	IRF7	interferon regulatory factor 7	-0.001298525819137269
GO:0019221: cytokine-mediated signaling pathway	JAK2	Janus kinase 2	-3.375622037933419e-5
GO:0019221: cytokine-mediated signaling pathway	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00026899525560018214
GO:0019221: cytokine-mediated signaling pathway	KPNA3	karyopherin alpha 3 (importin alpha 4)	-0.0008139575058525811
GO:0019221: cytokine-mediated signaling pathway	KPNB1	karyopherin (importin) beta 1	0.0007677265884137692
GO:0019221: cytokine-mediated signaling pathway	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009269519506827209
GO:0019221: cytokine-mediated signaling pathway	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022499782277308183
GO:0019221: cytokine-mediated signaling pathway	NUP153	nucleoporin 153kDa	0.0008163710379417003
GO:0019221: cytokine-mediated signaling pathway	PML	promyelocytic leukemia	-0.0006776433942854825
GO:0019221: cytokine-mediated signaling pathway	PRKCD	protein kinase C, delta	-0.0011187482464835319
GO:0019221: cytokine-mediated signaling pathway	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.0010340136506469674
GO:0019221: cytokine-mediated signaling pathway	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.0003280394691560236
GO:0019221: cytokine-mediated signaling pathway	SEH1L	SEH1-like (S. cerevisiae)	-0.0007295901577404037
GO:0019221: cytokine-mediated signaling pathway	TPR	translocated promoter region, nuclear basket protein	-0.0006930224021055803
GO:0030218: erythrocyte differentiation	ADAR	adenosine deaminase, RNA-specific	-0.0001370087877979018
GO:0030218: erythrocyte differentiation	BMP4	bone morphogenetic protein 4	-0.0003172322672196642
GO:0030218: erythrocyte differentiation	GATA3	GATA binding protein 3	-3.632909010990929e-5
GO:0030218: erythrocyte differentiation	HIPK2	homeodomain interacting protein kinase 2	0.0007597017919034311
GO:0030218: erythrocyte differentiation	INHA	inhibin, alpha	0.00021091052704461422
GO:0030218: erythrocyte differentiation	INHBA	inhibin, beta A	-0.001321821689531759
GO:0030218: erythrocyte differentiation	JAK2	Janus kinase 2	-3.4582613942320703e-5
GO:0030218: erythrocyte differentiation	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002644140262405661
GO:0030218: erythrocyte differentiation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001397535021832336
GO:0030218: erythrocyte differentiation	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.0003247990752857286
GO:0030218: erythrocyte differentiation	THRA	thyroid hormone receptor, alpha	0.0007511726389885197
GO:0031054: pre-miRNA processing	ADAR	adenosine deaminase, RNA-specific	-0.00013651359162606547
GO:0031054: pre-miRNA processing	DICER1	dicer 1, ribonuclease type III	-3.7208271204632564e-5
GO:0035280: miRNA loading onto RISC involved in gene silencing by miRNA	ADAR	adenosine deaminase, RNA-specific	-0.00013651359162606547
GO:0035280: miRNA loading onto RISC involved in gene silencing by miRNA	DICER1	dicer 1, ribonuclease type III	-3.7208271204632564e-5
GO:0035455: response to interferon-alpha	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975793
GO:0043066: negative regulation of apoptotic process	ADAR	adenosine deaminase, RNA-specific	-0.00013656307425511364
GO:0043066: negative regulation of apoptotic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007318832915288951
GO:0043066: negative regulation of apoptotic process	ALOX12	arachidonate 12-lipoxygenase	-0.001956598576818048
GO:0043066: negative regulation of apoptotic process	ANGPT1	angiopoietin 1	0.0009019132492647957
GO:0043066: negative regulation of apoptotic process	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014349478609823755
GO:0043066: negative regulation of apoptotic process	ASIC2	acid-sensing (proton-gated) ion channel 2	0.002283008604438188
GO:0043066: negative regulation of apoptotic process	ATF5	activating transcription factor 5	-0.0027390757032819033
GO:0043066: negative regulation of apoptotic process	AURKA	aurora kinase A	0.0010097033297251838
GO:0043066: negative regulation of apoptotic process	AVP	arginine vasopressin	-0.0009390430798288733
GO:0043066: negative regulation of apoptotic process	AZU1	azurocidin 1	0.00019823895219863482
GO:0043066: negative regulation of apoptotic process	BARD1	BRCA1 associated RING domain 1	0.001746074914910911
GO:0043066: negative regulation of apoptotic process	BCL2	B-cell CLL/lymphoma 2	-4.964459510846846e-6
GO:0043066: negative regulation of apoptotic process	BFAR	bifunctional apoptosis regulator	-0.00037085386081301883
GO:0043066: negative regulation of apoptotic process	BIRC5	baculoviral IAP repeat containing 5	-0.0002604841018292549
GO:0043066: negative regulation of apoptotic process	BMP4	bone morphogenetic protein 4	-0.00032307350129527005
GO:0043066: negative regulation of apoptotic process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002917156946463021
GO:0043066: negative regulation of apoptotic process	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.759533705013378e-5
GO:0043066: negative regulation of apoptotic process	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.002591789934411613
GO:0043066: negative regulation of apoptotic process	CDK1	cyclin-dependent kinase 1	0.0003119884456876903
GO:0043066: negative regulation of apoptotic process	CFL1	cofilin 1 (non-muscle)	-0.001177005737954231
GO:0043066: negative regulation of apoptotic process	CIB1	calcium and integrin binding 1 (calmyrin)	5.4286365686467986e-5
GO:0043066: negative regulation of apoptotic process	CRYAA	crystallin, alpha A	-0.0006763605736025915
GO:0043066: negative regulation of apoptotic process	CRYAB	crystallin, alpha B	0.0009862795861388938
GO:0043066: negative regulation of apoptotic process	DHCR24	24-dehydrocholesterol reductase	-0.001710098145002904
GO:0043066: negative regulation of apoptotic process	EGFR	epidermal growth factor receptor	0.0006872254158491329
GO:0043066: negative regulation of apoptotic process	EGR1	early growth response 1	0.0010946950640368608
GO:0043066: negative regulation of apoptotic process	EGR2	early growth response 2	0.0014416586602442342
GO:0043066: negative regulation of apoptotic process	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018360934112878713
GO:0043066: negative regulation of apoptotic process	FAS	Fas cell surface death receptor	-3.334421057655454e-5
GO:0043066: negative regulation of apoptotic process	FOXE3	forkhead box E3	0.0010523252216038269
GO:0043066: negative regulation of apoptotic process	FOXO1	forkhead box O1	0.0018028519283239267
GO:0043066: negative regulation of apoptotic process	GATA6	GATA binding protein 6	-2.8040580375928207e-5
GO:0043066: negative regulation of apoptotic process	GDNF	glial cell derived neurotrophic factor	0.000445275665299556
GO:0043066: negative regulation of apoptotic process	GLI3	GLI family zinc finger 3	-0.002155216322876702
GO:0043066: negative regulation of apoptotic process	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008291584871450941
GO:0043066: negative regulation of apoptotic process	GSK3B	glycogen synthase kinase 3 beta	0.0015515058164287821
GO:0043066: negative regulation of apoptotic process	GSTP1	glutathione S-transferase pi 1	0.00023224553744555262
GO:0043066: negative regulation of apoptotic process	HDAC2	histone deacetylase 2	-0.0012085838811785434
GO:0043066: negative regulation of apoptotic process	HMGA2	high mobility group AT-hook 2	0.0015110520694431191
GO:0043066: negative regulation of apoptotic process	HPN	hepsin	0.003162522412723068
GO:0043066: negative regulation of apoptotic process	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013139275880914164
GO:0043066: negative regulation of apoptotic process	IGF1R	insulin-like growth factor 1 receptor	0.0010731641395217626
GO:0043066: negative regulation of apoptotic process	IHH	indian hedgehog	-0.002043848834352691
GO:0043066: negative regulation of apoptotic process	IL4	interleukin 4	0.00025960228014891275
GO:0043066: negative regulation of apoptotic process	IL6ST	interleukin 6 signal transducer	0.0018780714790041747
GO:0043066: negative regulation of apoptotic process	IL7	interleukin 7	0.0008728000895207229
GO:0043066: negative regulation of apoptotic process	IRAK1	interleukin-1 receptor-associated kinase 1	-0.00161125477525524
GO:0043066: negative regulation of apoptotic process	KIF14	kinesin family member 14	0.0004867689475413459
GO:0043066: negative regulation of apoptotic process	KRT18	keratin 18	-0.0010195674467358637
GO:0043066: negative regulation of apoptotic process	LEF1	lymphoid enhancer-binding factor 1	-0.00010025273476476157
GO:0043066: negative regulation of apoptotic process	LEP	leptin	0.0031963342626553344
GO:0043066: negative regulation of apoptotic process	MAD2L1	MAD2 mitotic arrest deficient-like 1 (yeast)	0.00031933451556359144
GO:0043066: negative regulation of apoptotic process	MED1	mediator complex subunit 1	0.0011312947550757779
GO:0043066: negative regulation of apoptotic process	MSX1	msh homeobox 1	-0.0027736333043057028
GO:0043066: negative regulation of apoptotic process	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011379328297025273
GO:0043066: negative regulation of apoptotic process	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.002979045549123312
GO:0043066: negative regulation of apoptotic process	PAX2	paired box 2	-0.0016167016540411861
GO:0043066: negative regulation of apoptotic process	PCNT	pericentrin	0.001789667874352318
GO:0043066: negative regulation of apoptotic process	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036219737673812103
GO:0043066: negative regulation of apoptotic process	PHB2	prohibitin 2	-0.0007371100019244589
GO:0043066: negative regulation of apoptotic process	PLK1	polo-like kinase 1	0.0010196092310914523
GO:0043066: negative regulation of apoptotic process	PLK3	polo-like kinase 3	0.002567635384412102
GO:0043066: negative regulation of apoptotic process	PRKCZ	protein kinase C, zeta	-0.0016030255100953589
GO:0043066: negative regulation of apoptotic process	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018581700433447819
GO:0043066: negative regulation of apoptotic process	PRLR	prolactin receptor	0.002186357875551232
GO:0043066: negative regulation of apoptotic process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.0003324893741879507
GO:0043066: negative regulation of apoptotic process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010961632989426242
GO:0043066: negative regulation of apoptotic process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-5.95170923123811e-5
GO:0043066: negative regulation of apoptotic process	PTEN	phosphatase and tensin homolog	1.6727331316222624e-5
GO:0043066: negative regulation of apoptotic process	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0015010131652367297
GO:0043066: negative regulation of apoptotic process	RARG	retinoic acid receptor, gamma	-0.0023228513270552543
GO:0043066: negative regulation of apoptotic process	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025176883886868016
GO:0043066: negative regulation of apoptotic process	SFRP1	secreted frizzled-related protein 1	0.0012846742657332065
GO:0043066: negative regulation of apoptotic process	SHH	sonic hedgehog	0.0006011234781037242
GO:0043066: negative regulation of apoptotic process	SIRT1	sirtuin 1	-1.4205056609003856e-6
GO:0043066: negative regulation of apoptotic process	SMO	smoothened, frizzled class receptor	0.002142486239564675
GO:0043066: negative regulation of apoptotic process	SOX10	SRY (sex determining region Y)-box 10	0.0001915266273350671
GO:0043066: negative regulation of apoptotic process	SOX9	SRY (sex determining region Y)-box 9	-0.0005194356866524714
GO:0043066: negative regulation of apoptotic process	SPHK1	sphingosine kinase 1	0.001813618135050493
GO:0043066: negative regulation of apoptotic process	TBX3	T-box 3	0.0012276793959356835
GO:0043066: negative regulation of apoptotic process	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00048048132567914223
GO:0043066: negative regulation of apoptotic process	THBS1	thrombospondin 1	-0.001037406428907687
GO:0043066: negative regulation of apoptotic process	TMBIM6	transmembrane BAX inhibitor motif containing 6	-0.00014791609261999032
GO:0043066: negative regulation of apoptotic process	TP53	tumor protein p53	0.0011779338336137706
GO:0043066: negative regulation of apoptotic process	TWIST1	twist family bHLH transcription factor 1	-0.0013438239194713572
GO:0043066: negative regulation of apoptotic process	VEGFA	vascular endothelial growth factor A	0.0005962379960733927
GO:0043066: negative regulation of apoptotic process	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006685224561495126
GO:0043066: negative regulation of apoptotic process	WNT7A	wingless-type MMTV integration site family, member 7A	1.943165355538115e-5
GO:0043066: negative regulation of apoptotic process	WT1	Wilms tumor 1	-0.0005078466928052354
GO:0043066: negative regulation of apoptotic process	XBP1	X-box binding protein 1	0.0002674536241916086
GO:0044387: negative regulation of protein kinase activity by regulation of protein phosphorylation	ADAR	adenosine deaminase, RNA-specific	-0.00014172340387966564
GO:0044387: negative regulation of protein kinase activity by regulation of protein phosphorylation	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011148389451219034
GO:0045070: positive regulation of viral genome replication	ADAR	adenosine deaminase, RNA-specific	-0.00012748806385473504
GO:0045070: positive regulation of viral genome replication	TOP2A	topoisomerase (DNA) II alpha 170kDa	-0.00010353514325020885
GO:0045071: negative regulation of viral genome replication	ADAR	adenosine deaminase, RNA-specific	-0.0001378274216719944
GO:0045071: negative regulation of viral genome replication	PROX1	prospero homeobox 1	0.0011028137011656733
GO:0045087: innate immune response	ADAR	adenosine deaminase, RNA-specific	-0.00013690973890795753
GO:0045087: innate immune response	AGER	advanced glycosylation end product-specific receptor	-0.00017408994298191997
GO:0045087: innate immune response	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007291312940672268
GO:0045087: innate immune response	ANGPT1	angiopoietin 1	0.0008992085477490441
GO:0045087: innate immune response	BCL2	B-cell CLL/lymphoma 2	-4.639779174333978e-6
GO:0045087: innate immune response	C1QA	complement component 1, q subcomponent, A chain	0.0005413367481662142
GO:0045087: innate immune response	C2	complement component 2	-0.0003033928982477655
GO:0045087: innate immune response	C3	complement component 3	0.002020819095584042
GO:0045087: innate immune response	C8B	complement component 8, beta polypeptide	0.00023004215933241607
GO:0045087: innate immune response	C8G	complement component 8, gamma polypeptide	-0.0011927590870437687
GO:0045087: innate immune response	CDC42	cell division cycle 42	0.0012380849751142213
GO:0045087: innate immune response	CFL1	cofilin 1 (non-muscle)	-0.0011725829120191706
GO:0045087: innate immune response	CLEC4M	C-type lectin domain family 4, member M	-0.0013876179810787335
GO:0045087: innate immune response	CREB1	cAMP responsive element binding protein 1	0.0006563420940543394
GO:0045087: innate immune response	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011721946459964427
GO:0045087: innate immune response	CTSK	cathepsin K	-0.0003610400192848526
GO:0045087: innate immune response	DOCK1	dedicator of cytokinesis 1	-0.0006824929634463709
GO:0045087: innate immune response	EGFR	epidermal growth factor receptor	0.0006835099630099175
GO:0045087: innate immune response	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018118034906298687
GO:0045087: innate immune response	FGF3	fibroblast growth factor 3	0.0015582032755426126
GO:0045087: innate immune response	FGF5	fibroblast growth factor 5	-0.0010920252834650808
GO:0045087: innate immune response	FGF7	fibroblast growth factor 7	0.0006327941327195195
GO:0045087: innate immune response	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009816754327888501
GO:0045087: innate immune response	FGFR2	fibroblast growth factor receptor 2	0.0007614734031902966
GO:0045087: innate immune response	FGFR3	fibroblast growth factor receptor 3	0.00022228057360437894
GO:0045087: innate immune response	FOXO1	forkhead box O1	0.0017971524130897451
GO:0045087: innate immune response	FOXO3	forkhead box O3	0.0011976005448450795
GO:0045087: innate immune response	FRS2	fibroblast growth factor receptor substrate 2	0.0009277356986840541
GO:0045087: innate immune response	GATA3	GATA binding protein 3	-3.75009626967953e-5
GO:0045087: innate immune response	GRB2	growth factor receptor-bound protein 2	0.00042900931604482524
GO:0045087: innate immune response	GSK3B	glycogen synthase kinase 3 beta	0.0015463276968181818
GO:0045087: innate immune response	HMGB1	high mobility group box 1	-0.0007758520969195589
GO:0045087: innate immune response	IFNA2	interferon, alpha 2	-0.0017142513169112914
GO:0045087: innate immune response	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016061162290777731
GO:0045087: innate immune response	IRF7	interferon regulatory factor 7	-0.0013043733289274462
GO:0045087: innate immune response	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007779355211256254
GO:0045087: innate immune response	JAK2	Janus kinase 2	-3.2508702579955024e-5
GO:0045087: innate immune response	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002728153371668147
GO:0045087: innate immune response	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.0003078166954871878
GO:0045087: innate immune response	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014182182717488384
GO:0045087: innate immune response	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.00034169417563195177
GO:0045087: innate immune response	MEF2C	myocyte enhancer factor 2C	0.000971199891031199
GO:0045087: innate immune response	NCK1	NCK adaptor protein 1	-0.0007843203023177383
GO:0045087: innate immune response	PADI4	peptidyl arginine deiminase, type IV	-0.0008246749297307711
GO:0045087: innate immune response	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002183720061932083
GO:0045087: innate immune response	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.0012570743350347787
GO:0045087: innate immune response	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00035921679789667027
GO:0045087: innate immune response	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.000779395919491544
GO:0045087: innate immune response	PML	promyelocytic leukemia	-0.0006796648975348977
GO:0045087: innate immune response	PRKCA	protein kinase C, alpha	-6.0148053017492956e-6
GO:0045087: innate immune response	PRKCD	protein kinase C, delta	-0.001125627376266381
GO:0045087: innate immune response	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018530690548876861
GO:0045087: innate immune response	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.00033090049494130015
GO:0045087: innate immune response	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010939357184463609
GO:0045087: innate immune response	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.014618912810849e-5
GO:0045087: innate immune response	PTEN	phosphatase and tensin homolog	1.7989250067166617e-5
GO:0045087: innate immune response	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014960551789201784
GO:0045087: innate immune response	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003478400548403975
GO:0045087: innate immune response	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.002510078834071201
GO:0045087: innate immune response	S100A7	S100 calcium binding protein A7	0.0015866887479776808
GO:0045087: innate immune response	S100B	S100 calcium binding protein B	0.0051741189838140356
GO:0045087: innate immune response	SIRT2	sirtuin 2	-0.0008504675302753777
GO:0045087: innate immune response	SPTBN1	spectrin, beta, non-erythrocytic 1	0.0016044197951686754
GO:0045087: innate immune response	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011142374994470715
GO:0051607: defense response to virus	ADAR	adenosine deaminase, RNA-specific	-0.0001373714845315714
GO:0051607: defense response to virus	AZU1	azurocidin 1	0.00019661682879495277
GO:0051607: defense response to virus	BCL2	B-cell CLL/lymphoma 2	-4.800103538771522e-6
GO:0051607: defense response to virus	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002889094167213789
GO:0051607: defense response to virus	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.75603266582582e-5
GO:0051607: defense response to virus	CXADR	coxsackie virus and adenovirus receptor	0.00043004343585807393
GO:0051607: defense response to virus	CXCL10	chemokine (C-X-C motif) ligand 10	5.969672685398543e-5
GO:0051607: defense response to virus	DICER1	dicer 1, ribonuclease type III	-1.6544603795708076e-5
GO:0051607: defense response to virus	IFNA2	interferon, alpha 2	-0.0017045525350927976
GO:0051607: defense response to virus	IFNG	interferon, gamma	-4.905082573239489e-5
GO:0051607: defense response to virus	IL12B	interleukin 12B	0.0012697272945275387
GO:0051607: defense response to virus	PML	promyelocytic leukemia	-0.0006775239138134026
GO:0060216: definitive hemopoiesis	ADAR	adenosine deaminase, RNA-specific	-0.00013862566561192042
GO:0060216: definitive hemopoiesis	GATA2	GATA binding protein 2	-0.00042300767220347933
GO:0060216: definitive hemopoiesis	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006264229801728788
GO:0060216: definitive hemopoiesis	ZFP36L2	ZFP36 ring finger protein-like 2	-0.0003555471445140843
GO:0060337: type I interferon signaling pathway	ADAR	adenosine deaminase, RNA-specific	-0.00013739609887286988
GO:0060337: type I interferon signaling pathway	EGR1	early growth response 1	0.0010902037090911388
GO:0060337: type I interferon signaling pathway	IFNA2	interferon, alpha 2	-0.0017125996730817123
GO:0060337: type I interferon signaling pathway	IRF6	interferon regulatory factor 6	-0.0016882263485073644
GO:0060337: type I interferon signaling pathway	IRF7	interferon regulatory factor 7	-0.0013029546957386532
GO:0060337: type I interferon signaling pathway	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.0010385328019515676
GO:0060339: negative regulation of type I interferon-mediated signaling pathway	ADAR	adenosine deaminase, RNA-specific	-0.00014405564065521348
GO:0060339: negative regulation of type I interferon-mediated signaling pathway	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.0002988267418296445
GO:0061484: hematopoietic stem cell homeostasis	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975793
GO:1900369: negative regulation of RNA interference	ADAR	adenosine deaminase, RNA-specific	-0.00013990644784975793
GO:0006351: transcription, DNA-templated	ADIRF	adipogenesis regulatory factor	-0.0001675617209196801
GO:0006351: transcription, DNA-templated	AES	amino-terminal enhancer of split	0.0013577569053053599
GO:0006351: transcription, DNA-templated	APEX1	APEX nuclease (multifunctional DNA repair enzyme) 1	0.00020166743038709678
GO:0006351: transcription, DNA-templated	AR	androgen receptor	0.0026462465827891235
GO:0006351: transcription, DNA-templated	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014379690025452753
GO:0006351: transcription, DNA-templated	ASF1A	anti-silencing function 1A histone chaperone	0.0010541688723845265
GO:0006351: transcription, DNA-templated	ATAD2	ATPase family, AAA domain containing 2	-4.680076683262951e-5
GO:0006351: transcription, DNA-templated	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.0009789705885269247
GO:0006351: transcription, DNA-templated	BIRC5	baculoviral IAP repeat containing 5	-0.00026071987662951683
GO:0006351: transcription, DNA-templated	BRD4	bromodomain containing 4	0.000554872295429083
GO:0006351: transcription, DNA-templated	CASP8AP2	caspase 8 associated protein 2	0.001277721511183039
GO:0006351: transcription, DNA-templated	CCNC	cyclin C	0.0005696399025622202
GO:0006351: transcription, DNA-templated	CCND1	cyclin D1	-0.002643737883817243
GO:0006351: transcription, DNA-templated	CDK8	cyclin-dependent kinase 8	0.0026206162386631115
GO:0006351: transcription, DNA-templated	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017650103453912002
GO:0006351: transcription, DNA-templated	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018417462822618977
GO:0006351: transcription, DNA-templated	CHAF1B	chromatin assembly factor 1, subunit B (p60)	0.006306137171951332
GO:0006351: transcription, DNA-templated	CHD3	chromodomain helicase DNA binding protein 3	0.00011887975520542758
GO:0006351: transcription, DNA-templated	CHMP1A	charged multivesicular body protein 1A	-0.0007825243721964982
GO:0006351: transcription, DNA-templated	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028283906085487726
GO:0006351: transcription, DNA-templated	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011719238664682538
GO:0006351: transcription, DNA-templated	DAXX	death-domain associated protein	0.0008952233162214327
GO:0006351: transcription, DNA-templated	DDX17	DEAD (Asp-Glu-Ala-Asp) box helicase 17	0.0017684564306945573
GO:0006351: transcription, DNA-templated	DNAJC2	DnaJ (Hsp40) homolog, subfamily C, member 2	-0.000986900211967874
GO:0006351: transcription, DNA-templated	E2F1	E2F transcription factor 1	0.0021050691276537107
GO:0006351: transcription, DNA-templated	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023533151198579854
GO:0006351: transcription, DNA-templated	E2F6	E2F transcription factor 6	0.0007202667271313001
GO:0006351: transcription, DNA-templated	E2F8	E2F transcription factor 8	0.0017162204414668024
GO:0006351: transcription, DNA-templated	E4F1	E4F transcription factor 1	0.0014855914032716614
GO:0006351: transcription, DNA-templated	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018432545847019073
GO:0006351: transcription, DNA-templated	ESR1	estrogen receptor 1	-0.0009517868341633655
GO:0006351: transcription, DNA-templated	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010194748802169614
GO:0006351: transcription, DNA-templated	EYA1	EYA transcriptional coactivator and phosphatase 1	5.359143556317783e-5
GO:0006351: transcription, DNA-templated	EYA3	EYA transcriptional coactivator and phosphatase 3	0.0008393394739330919
GO:0006351: transcription, DNA-templated	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013623578626891604
GO:0006351: transcription, DNA-templated	FOXM1	forkhead box M1	0.0001982127576345042
GO:0006351: transcription, DNA-templated	FOXO1	forkhead box O1	0.0018062678046832815
GO:0006351: transcription, DNA-templated	FOXO3	forkhead box O3	0.0012044867691304321
GO:0006351: transcription, DNA-templated	GATA2	GATA binding protein 2	-0.00045341737670540663
GO:0006351: transcription, DNA-templated	GFI1	growth factor independent 1 transcription repressor	0.0016694925462020498
GO:0006351: transcription, DNA-templated	GLI1	GLI family zinc finger 1	-0.0013007656246102244
GO:0006351: transcription, DNA-templated	HDAC2	histone deacetylase 2	-0.0012105156916769368
GO:0006351: transcription, DNA-templated	HELLS	helicase, lymphoid-specific	0.0034758686176730243
GO:0006351: transcription, DNA-templated	HES1	hes family bHLH transcription factor 1	-0.0009141658046763737
GO:0006351: transcription, DNA-templated	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015327641706974965
GO:0006351: transcription, DNA-templated	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.002709379298309547
GO:0006351: transcription, DNA-templated	HINFP	histone H4 transcription factor	0.0009959325316793045
GO:0006351: transcription, DNA-templated	HIPK2	homeodomain interacting protein kinase 2	0.0007731044956616216
GO:0006351: transcription, DNA-templated	HOXA3	homeobox A3	0.0009918027629435859
GO:0006351: transcription, DNA-templated	HOXB1	homeobox B1	0.0036978126034359054
GO:0006351: transcription, DNA-templated	HOXB13	homeobox B13	0.0018316255175505562
GO:0006351: transcription, DNA-templated	HOXB2	homeobox B2	0.0027820391586367067
GO:0006351: transcription, DNA-templated	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.002927244346829e-5
GO:0006351: transcription, DNA-templated	IRF6	interferon regulatory factor 6	-0.001699513123758845
GO:0006351: transcription, DNA-templated	JMJD6	jumonji domain containing 6	0.003602321688515777
GO:0006351: transcription, DNA-templated	KANK1	KN motif and ankyrin repeat domains 1	0.0025423350294964246
GO:0006351: transcription, DNA-templated	KLF2	Kruppel-like factor 2	-0.0012354829826068461
GO:0006351: transcription, DNA-templated	KMT2B	lysine (K)-specific methyltransferase 2B	0.00046328569974643876
GO:0006351: transcription, DNA-templated	KMT2D	lysine (K)-specific methyltransferase 2D	-0.00020011455246932115
GO:0006351: transcription, DNA-templated	LHX6	LIM homeobox 6	0.0013492924793433736
GO:0006351: transcription, DNA-templated	MLLT10	myeloid/lymphoid or mixed-lineage leukemia (trithorax homolog, Drosophila); translocated to, 10	-0.00016387801880077653
GO:0006351: transcription, DNA-templated	MLXIP	MLX interacting protein	0.0027297553060307398
GO:0006351: transcription, DNA-templated	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011399598187555914
GO:0006351: transcription, DNA-templated	NEUROD4	neuronal differentiation 4	0.001511503763484542
GO:0006351: transcription, DNA-templated	NOC2L	nucleolar complex associated 2 homolog (S. cerevisiae)	-0.0001514458693923485
GO:0006351: transcription, DNA-templated	NPAT	nuclear protein, ataxia-telangiectasia locus	-0.0007116665604177848
GO:0006351: transcription, DNA-templated	NRIP1	nuclear receptor interacting protein 1	0.0010742903363907153
GO:0006351: transcription, DNA-templated	PADI4	peptidyl arginine deiminase, type IV	-0.0008298530598771132
GO:0006351: transcription, DNA-templated	PAX2	paired box 2	-0.0016200068037620422
GO:0006351: transcription, DNA-templated	PAX8	paired box 8	0.0009506601049226412
GO:0006351: transcription, DNA-templated	PER2	period circadian clock 2	0.00124245990140614
GO:0006351: transcription, DNA-templated	PHB2	prohibitin 2	-0.0007384633744968914
GO:0006351: transcription, DNA-templated	PKN1	protein kinase N1	-0.001909498121091275
GO:0006351: transcription, DNA-templated	PML	promyelocytic leukemia	-0.000681599744338053
GO:0006351: transcription, DNA-templated	PPP1R13L	protein phosphatase 1, regulatory subunit 13 like	-0.0014789465380928752
GO:0006351: transcription, DNA-templated	PROX1	prospero homeobox 1	0.0011257513484109628
GO:0006351: transcription, DNA-templated	PURA	purine-rich element binding protein A	-0.00017128735392898036
GO:0006351: transcription, DNA-templated	RB1	retinoblastoma 1	-0.001499218992396876
GO:0006351: transcription, DNA-templated	RBBP4	retinoblastoma binding protein 4	-0.0018653430843826372
GO:0006351: transcription, DNA-templated	RFC1	replication factor C (activator 1) 1, 145kDa	0.0010631081672241945
GO:0006351: transcription, DNA-templated	SALL1	spalt-like transcription factor 1	-0.0024474971628196136
GO:0006351: transcription, DNA-templated	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011211078648559636
GO:0006351: transcription, DNA-templated	SIRT1	sirtuin 1	-1.168901248851908e-6
GO:0006351: transcription, DNA-templated	SIRT2	sirtuin 2	-0.0008553464471506225
GO:0006351: transcription, DNA-templated	SKI	SKI proto-oncogene	-0.0006724650641428501
GO:0006351: transcription, DNA-templated	SMARCD3	SWI/SNF related, matrix associated, actin dependent regulator of chromatin, subfamily d, member 3	0.0003468543206418331
GO:0006351: transcription, DNA-templated	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031466516320485223
GO:0006351: transcription, DNA-templated	STAT5A	signal transducer and activator of transcription 5A	0.0016015566768442435
GO:0006351: transcription, DNA-templated	TBX21	T-box 21	0.0003994904425108567
GO:0006351: transcription, DNA-templated	TBX3	T-box 3	0.001229611724893063
GO:0006351: transcription, DNA-templated	TCF15	transcription factor 15 (basic helix-loop-helix)	-0.0026633036080798435
GO:0006351: transcription, DNA-templated	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005760514579132589
GO:0006351: transcription, DNA-templated	TFCP2L1	transcription factor CP2-like 1	0.00045065901260167796
GO:0006351: transcription, DNA-templated	TFDP1	transcription factor Dp-1	0.001450993954169594
GO:0006351: transcription, DNA-templated	THRB	thyroid hormone receptor, beta	0.001950109158303525
GO:0006351: transcription, DNA-templated	TWIST1	twist family bHLH transcription factor 1	-0.001346714295470303
GO:0006351: transcription, DNA-templated	TXLNG	taxilin gamma	-0.0008396131646636604
GO:0006351: transcription, DNA-templated	VPS72	vacuolar protein sorting 72 homolog (S. cerevisiae)	0.0005604743224801483
GO:0006351: transcription, DNA-templated	WWTR1	WW domain containing transcription regulator 1	0.000904494777410158
GO:0006351: transcription, DNA-templated	YY1	YY1 transcription factor	0.0013454257525090127
GO:0006351: transcription, DNA-templated	ZBTB18	zinc finger and BTB domain containing 18	0.001276055256972934
GO:0006351: transcription, DNA-templated	ZNF205	zinc finger protein 205	0.0005971545050382174
GO:0006351: transcription, DNA-templated	ZNF24	zinc finger protein 24	0.0012956758041332132
GO:0006351: transcription, DNA-templated	ZNF266	zinc finger protein 266	0.000413528328724103
GO:0006351: transcription, DNA-templated	ZNF335	zinc finger protein 335	-0.0003658960954158359
GO:0006351: transcription, DNA-templated	ZNF442	zinc finger protein 442	0.0010621231350483454
GO:0030154: cell differentiation	ADIRF	adipogenesis regulatory factor	-0.0001668188719486028
GO:0030154: cell differentiation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.000730676154289761
GO:0030154: cell differentiation	ARHGAP24	Rho GTPase activating protein 24	-0.0009343006482775351
GO:0030154: cell differentiation	AXIN1	axin 1	-0.0007333463540473517
GO:0030154: cell differentiation	CPLX2	complexin 2	0.0020317533290723283
GO:0030154: cell differentiation	EDA	ectodysplasin A	-0.0008146890664469237
GO:0030154: cell differentiation	EDAR	ectodysplasin A receptor	0.0005936239813974121
GO:0030154: cell differentiation	EGFL6	EGF-like-domain, multiple 6	0.00013664267929056512
GO:0030154: cell differentiation	ELF5	E74-like factor 5 (ets domain transcription factor)	0.0011718001958474478
GO:0030154: cell differentiation	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.001015585100172126
GO:0030154: cell differentiation	ETV4	ets variant 4	0.0001950350888332287
GO:0030154: cell differentiation	FOXA1	forkhead box A1	2.726389489304998e-5
GO:0030154: cell differentiation	FOXA2	forkhead box A2	-1.6605610178417695e-5
GO:0030154: cell differentiation	FOXC1	forkhead box C1	-2.1851492618226333e-5
GO:0030154: cell differentiation	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017480670298103472
GO:0030154: cell differentiation	FOXE3	forkhead box E3	0.0010507447838200954
GO:0030154: cell differentiation	FOXH1	forkhead box H1	-0.0013714256138066298
GO:0030154: cell differentiation	FOXM1	forkhead box M1	0.00019748677887642324
GO:0030154: cell differentiation	FOXO1	forkhead box O1	0.0018001303307412378
GO:0030154: cell differentiation	FOXO3	forkhead box O3	0.0012001196054617594
GO:0030154: cell differentiation	GLRX2	glutaredoxin 2	0.0011160844527823416
GO:0030154: cell differentiation	INHA	inhibin, alpha	0.00021147559013901277
GO:0030154: cell differentiation	INHBA	inhibin, beta A	-0.0013534974399642867
GO:0030154: cell differentiation	JAG2	jagged 2	-5.620467313112876e-6
GO:0030154: cell differentiation	JAK2	Janus kinase 2	-3.152112797203179e-5
GO:0030154: cell differentiation	KIF2A	kinesin heavy chain member 2A	-0.0007843984089759799
GO:0030154: cell differentiation	MDK	midkine (neurite growth-promoting factor 2)	0.001665758770132488
GO:0030154: cell differentiation	NDRG2	NDRG family member 2	0.0021741396950714763
GO:0030154: cell differentiation	NELL1	NEL-like 1 (chicken)	0.0015329098517756219
GO:0030154: cell differentiation	PURA	purine-rich element binding protein A	-0.00017059292069549636
GO:0030154: cell differentiation	SLC7A5	solute carrier family 7 (amino acid transporter light chain, L system), member 5	-0.002574075147499151
GO:0030154: cell differentiation	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031363775898288313
GO:0030154: cell differentiation	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006432281117309363
GO:0030154: cell differentiation	TP53	tumor protein p53	0.0011759806987857288
GO:0030154: cell differentiation	YY1	YY1 transcription factor	0.0013402815459465911
GO:0045600: positive regulation of fat cell differentiation	ADIRF	adipogenesis regulatory factor	-0.00016418273076696842
GO:0045600: positive regulation of fat cell differentiation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007232830270269223
GO:0045600: positive regulation of fat cell differentiation	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002710629310775026
GO:0045600: positive regulation of fat cell differentiation	CREB1	cAMP responsive element binding protein 1	0.0006504646253352423
GO:0045600: positive regulation of fat cell differentiation	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005203800227167746
GO:0045600: positive regulation of fat cell differentiation	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.0352946227577995e-5
GO:0045600: positive regulation of fat cell differentiation	LRP5	low density lipoprotein receptor-related protein 5	3.132876831481803e-5
GO:0045600: positive regulation of fat cell differentiation	SAV1	salvador family WW domain containing protein 1	-0.002320787296476295
GO:0045600: positive regulation of fat cell differentiation	SFRP1	secreted frizzled-related protein 1	0.0012656508995616937
GO:0045600: positive regulation of fat cell differentiation	XBP1	X-box binding protein 1	0.000265080618773258
GO:0071478: cellular response to radiation	ADIRF	adipogenesis regulatory factor	-0.00014353531936957785
GO:0072719: cellular response to cisplatin	ADIRF	adipogenesis regulatory factor	-0.00016336318119645034
GO:0072719: cellular response to cisplatin	RAD51	RAD51 recombinase	-0.001848593006405684
GO:0072719: cellular response to cisplatin	SLC31A1	solute carrier family 31 (copper transporter), member 1	-2.7586334276709625e-5
GO:2001023: regulation of response to drug	ADIRF	adipogenesis regulatory factor	-0.00016485569311122306
GO:2001023: regulation of response to drug	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014745183714208066
GO:0001570: vasculogenesis	ADM	adrenomedullin	0.0022434078885771925
GO:0001570: vasculogenesis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005363896718525771
GO:0001570: vasculogenesis	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028263484797813794
GO:0001570: vasculogenesis	CUL7	cullin 7	-0.0001196282552138674
GO:0001570: vasculogenesis	ENG	endoglin	0.0008293706626310092
GO:0001570: vasculogenesis	FOXM1	forkhead box M1	0.0001975348864746524
GO:0001570: vasculogenesis	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0027069690513191083
GO:0001570: vasculogenesis	PITX2	paired-like homeodomain 2	0.0021820487507270485
GO:0001570: vasculogenesis	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003391328524076696
GO:0001570: vasculogenesis	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003499982278031427
GO:0001570: vasculogenesis	SHH	sonic hedgehog	0.0006020355406372965
GO:0001570: vasculogenesis	SMO	smoothened, frizzled class receptor	0.002144905640206822
GO:0001570: vasculogenesis	SOX18	SRY (sex determining region Y)-box 18	0.0012914910099911384
GO:0001570: vasculogenesis	VEGFA	vascular endothelial growth factor A	0.0005968811974446953
GO:0001570: vasculogenesis	WT1	Wilms tumor 1	-0.0005086154486246668
GO:0001570: vasculogenesis	YAP1	Yes-associated protein 1	-0.0001647009720428761
GO:0001843: neural tube closure	ADM	adrenomedullin	0.002244642894037959
GO:0001843: neural tube closure	ALX1	ALX homeobox 1	0.0022988626457801646
GO:0001843: neural tube closure	BBS4	Bardet-Biedl syndrome 4	-0.0005105909852871573
GO:0001843: neural tube closure	BMP4	bone morphogenetic protein 4	-0.00032355394167502943
GO:0001843: neural tube closure	FZD3	frizzled class receptor 3	0.0003804666054673863
GO:0001843: neural tube closure	GRHL2	grainyhead-like 2 (Drosophila)	0.0010095235843284255
GO:0001843: neural tube closure	IFT122	intraflagellar transport 122 homolog (Chlamydomonas)	-0.0016152546694120258
GO:0001843: neural tube closure	LIAS	lipoic acid synthetase	-0.0005556733559023036
GO:0001843: neural tube closure	LMO4	LIM domain only 4	0.0021179655193401237
GO:0001843: neural tube closure	LRP6	low density lipoprotein receptor-related protein 6	0.00014996070998739796
GO:0001843: neural tube closure	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006657303506976005
GO:0001843: neural tube closure	PAX2	paired box 2	-0.0016195239316690044
GO:0001843: neural tube closure	PAX3	paired box 3	-0.0029541363399052762
GO:0001843: neural tube closure	PHACTR4	phosphatase and actin regulator 4	-0.0017962713942500205
GO:0001843: neural tube closure	PTCH1	patched 1	-6.57775525753415e-5
GO:0001843: neural tube closure	RARG	retinoic acid receptor, gamma	-0.002326642724105533
GO:0001843: neural tube closure	SALL1	spalt-like transcription factor 1	-0.002446828641577958
GO:0001843: neural tube closure	SKI	SKI proto-oncogene	-0.0006723450428151538
GO:0001843: neural tube closure	TULP3	tubby like protein 3	0.0009591934635432493
GO:0001843: neural tube closure	TWIST1	twist family bHLH transcription factor 1	-0.0013463727262879623
GO:0002026: regulation of the force of heart contraction	ADM	adrenomedullin	0.0022299467094114254
GO:0002026: regulation of the force of heart contraction	IFNG	interferon, gamma	-4.91786204894203e-5
GO:0002026: regulation of the force of heart contraction	PRKCA	protein kinase C, alpha	-6.130061387185273e-6
GO:0002031: G-protein coupled receptor internalization	ADM	adrenomedullin	0.0022419891299397332
GO:0002031: G-protein coupled receptor internalization	DRD2	dopamine receptor D2	-0.0002343534612820424
GO:0006171: cAMP biosynthetic process	ADM	adrenomedullin	0.002257456012228351
GO:0006701: progesterone biosynthetic process	ADM	adrenomedullin	0.0022473421409141864
GO:0006701: progesterone biosynthetic process	STAR	steroidogenic acute regulatory protein	0.0008989063754188105
GO:0007204: positive regulation of cytosolic calcium ion concentration	ADM	adrenomedullin	0.0022381957850353394
GO:0007204: positive regulation of cytosolic calcium ion concentration	AGTR1	angiotensin II receptor, type 1	0.0003469501432738617
GO:0007204: positive regulation of cytosolic calcium ion concentration	AVP	arginine vasopressin	-0.000937792347362133
GO:0007204: positive regulation of cytosolic calcium ion concentration	CD24	CD24 molecule	0.0010723046314722062
GO:0007204: positive regulation of cytosolic calcium ion concentration	CXCL13	chemokine (C-X-C motif) ligand 13	0.002993858781088234
GO:0007204: positive regulation of cytosolic calcium ion concentration	CXCR4	chemokine (C-X-C motif) receptor 4	0.000795282360064864
GO:0007204: positive regulation of cytosolic calcium ion concentration	ESR1	estrogen receptor 1	-0.0009489711330357444
GO:0007204: positive regulation of cytosolic calcium ion concentration	GATA2	GATA binding protein 2	-0.0004521903967975672
GO:0007204: positive regulation of cytosolic calcium ion concentration	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016247681117484466
GO:0007204: positive regulation of cytosolic calcium ion concentration	HMGB1	high mobility group box 1	-0.0007759442251216442
GO:0007204: positive regulation of cytosolic calcium ion concentration	JAK2	Janus kinase 2	-3.139059991722581e-5
GO:0007267: cell-cell signaling	ADM	adrenomedullin	0.0022421583587430224
GO:0007267: cell-cell signaling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011363402136848188
GO:0007267: cell-cell signaling	AR	androgen receptor	0.0026432879501507873
GO:0007267: cell-cell signaling	AREG	amphiregulin	0.002462287461729004
GO:0007267: cell-cell signaling	AVP	arginine vasopressin	-0.0009395884492577823
GO:0007267: cell-cell signaling	C1QA	complement component 1, q subcomponent, A chain	0.0005435188446500535
GO:0007267: cell-cell signaling	CCL7	chemokine (C-C motif) ligand 7	-0.002406873097617113
GO:0007267: cell-cell signaling	CCL8	chemokine (C-C motif) ligand 8	-0.0005913692449657669
GO:0007267: cell-cell signaling	CXCL10	chemokine (C-X-C motif) ligand 10	6.277374234536345e-5
GO:0007267: cell-cell signaling	CXCL13	chemokine (C-X-C motif) ligand 13	0.0029995297624913412
GO:0007267: cell-cell signaling	EFNA1	ephrin-A1	-0.0005215606381449763
GO:0007267: cell-cell signaling	FGF3	fibroblast growth factor 3	0.001564258865665052
GO:0007267: cell-cell signaling	FGF5	fibroblast growth factor 5	-0.001096136656745229
GO:0007267: cell-cell signaling	FGFR2	fibroblast growth factor receptor 2	0.0007649176784101619
GO:0007267: cell-cell signaling	GATA4	GATA binding protein 4	-0.0010970487169320359
GO:0007267: cell-cell signaling	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016270092097271107
GO:0007267: cell-cell signaling	GRB2	growth factor receptor-bound protein 2	0.00043056229129414115
GO:0007267: cell-cell signaling	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008297992771028567
GO:0007267: cell-cell signaling	IFNA2	interferon, alpha 2	-0.0017207621844706866
GO:0007267: cell-cell signaling	IHH	indian hedgehog	-0.0020450571847204346
GO:0007267: cell-cell signaling	IL7	interleukin 7	0.0008733124452919573
GO:0007267: cell-cell signaling	INHA	inhibin, alpha	0.00021174228440315048
GO:0007267: cell-cell signaling	INHBA	inhibin, beta A	-0.0013570390310194817
GO:0007267: cell-cell signaling	LHX1	LIM homeobox 1	-0.0007604609081624374
GO:0007267: cell-cell signaling	NRP1	neuropilin 1	-0.0006448268696486018
GO:0007267: cell-cell signaling	PGR	progesterone receptor	0.00035247299751778576
GO:0007267: cell-cell signaling	SHH	sonic hedgehog	0.0006015980003569589
GO:0007267: cell-cell signaling	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006447623364778303
GO:0007267: cell-cell signaling	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010633530740946505
GO:0007267: cell-cell signaling	TGFB2	transforming growth factor, beta 2	-0.0010619196890396963
GO:0007267: cell-cell signaling	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.0027819203611569665
GO:0007267: cell-cell signaling	WNT1	wingless-type MMTV integration site family, member 1	0.0007884694180261598
GO:0007507: heart development	ADM	adrenomedullin	0.0022403976541209695
GO:0007507: heart development	CRIP1	cysteine-rich protein 1 (intestinal)	0.0017234078132703314
GO:0007507: heart development	CXADR	coxsackie virus and adenovirus receptor	0.00043598791025016483
GO:0007507: heart development	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018362642045981678
GO:0007507: heart development	FOXC1	forkhead box C1	-2.181568853500609e-5
GO:0007507: heart development	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017500887252007928
GO:0007507: heart development	GATA2	GATA binding protein 2	-0.0004523452001406853
GO:0007507: heart development	GATA3	GATA binding protein 3	-3.9466253800903916e-5
GO:0007507: heart development	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016248743592300256
GO:0007507: heart development	GLI2	GLI family zinc finger 2	0.0018556407034636838
GO:0007507: heart development	GLI3	GLI family zinc finger 3	-0.0021545456124907637
GO:0007507: heart development	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015270331732237117
GO:0007507: heart development	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014011512107650484
GO:0007507: heart development	JMJD6	jumonji domain containing 6	0.003594750992138143
GO:0007507: heart development	MEF2C	myocyte enhancer factor 2C	0.0009746357047119454
GO:0007507: heart development	MTHFD1	methylenetetrahydrofolate dehydrogenase (NADP+ dependent) 1, methenyltetrahydrofolate cyclohydrolase, formyltetrahydrofolate synthetase	-0.0006645436796725471
GO:0007507: heart development	NOTCH1	notch 1	0.0005195080009200779
GO:0007507: heart development	PAX3	paired box 3	-0.0029484446967786584
GO:0007507: heart development	PCNA	proliferating cell nuclear antigen	0.0012280391624806327
GO:0007507: heart development	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.00185744841481684
GO:0007507: heart development	PTEN	phosphatase and tensin homolog	1.6771831926168775e-5
GO:0007507: heart development	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.0003387748230284295
GO:0007507: heart development	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0015005038199883136
GO:0007507: heart development	SALL1	spalt-like transcription factor 1	-0.0024407948070585927
GO:0007507: heart development	SHH	sonic hedgehog	0.0006008317048758141
GO:0007507: heart development	SOX4	SRY (sex determining region Y)-box 4	-3.797852553967939e-5
GO:0007507: heart development	STRA6	stimulated by retinoic acid 6	-0.00168244616709004
GO:0007507: heart development	TGFB2	transforming growth factor, beta 2	-0.0010607370183366228
GO:0007507: heart development	TGFBR1	transforming growth factor, beta receptor 1	0.00034043058182679726
GO:0007507: heart development	TH	tyrosine hydroxylase	-0.00034235394491181665
GO:0007507: heart development	TRPS1	trichorhinophalangeal syndrome I	-0.00017831280552406742
GO:0007507: heart development	VLDLR	very low density lipoprotein receptor	0.0009544257474276612
GO:0007507: heart development	WT1	Wilms tumor 1	-0.0005075979069531802
GO:0007565: female pregnancy	ADM	adrenomedullin	0.002241618567693669
GO:0007565: female pregnancy	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011362942712785185
GO:0007565: female pregnancy	BCL2	B-cell CLL/lymphoma 2	-4.9559769533563275e-6
GO:0007565: female pregnancy	EPN1	epsin 1	-0.0005480359649646314
GO:0007565: female pregnancy	IDO1	indoleamine 2,3-dioxygenase 1	0.0012283431506251447
GO:0007565: female pregnancy	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.00014538508354895401
GO:0007565: female pregnancy	IL4	interleukin 4	0.00025948683696371054
GO:0007565: female pregnancy	LEP	leptin	0.003197561759565936
GO:0007565: female pregnancy	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011664718794397964
GO:0007565: female pregnancy	MAPT	microtubule-associated protein tau	0.0015532975118281043
GO:0007565: female pregnancy	PSG4	pregnancy specific beta-1-glycoprotein 4	-0.001032866123837421
GO:0007565: female pregnancy	STAT5A	signal transducer and activator of transcription 5A	0.0015989561575371666
GO:0007565: female pregnancy	TFCP2L1	transcription factor CP2-like 1	0.0004499474064500437
GO:0007565: female pregnancy	TGFB1	transforming growth factor, beta 1	-7.329792419287212e-5
GO:0007565: female pregnancy	TGFB3	transforming growth factor, beta 3	-0.0018276610278966231
GO:0007568: aging	ADM	adrenomedullin	0.0022435794458250916
GO:0007568: aging	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011377192141996972
GO:0007568: aging	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007328830645346385
GO:0007568: aging	ALOX12	arachidonate 12-lipoxygenase	-0.0019589806508740018
GO:0007568: aging	APOD	apolipoprotein D	0.0026352863126499516
GO:0007568: aging	ASS1	argininosuccinate synthase 1	0.00014394037307516758
GO:0007568: aging	BAK1	BCL2-antagonist/killer 1	-0.0018808797564946191
GO:0007568: aging	CAST	calpastatin	-0.003041868365457816
GO:0007568: aging	CCL2	chemokine (C-C motif) ligand 2	0.0008189559148773362
GO:0007568: aging	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018402570942091768
GO:0007568: aging	CRYAB	crystallin, alpha B	0.000987963854282101
GO:0007568: aging	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.00212376964791682
GO:0007568: aging	GLRX2	glutaredoxin 2	0.001118792896039328
GO:0007568: aging	GPX1	glutathione peroxidase 1	0.00038770150745406505
GO:0007568: aging	GRB2	growth factor receptor-bound protein 2	0.0004307233932157076
GO:0007568: aging	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.0001455374774046121
GO:0007568: aging	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016131500405025627
GO:0007568: aging	KCNE2	potassium voltage-gated channel, Isk-related family, member 2	-0.0005766565756590682
GO:0007568: aging	KRT33B	keratin 33B	0.0009447727301874563
GO:0007568: aging	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042639368531000363
GO:0007568: aging	PAX2	paired box 2	-0.0016188877523914801
GO:0007568: aging	PTEN	phosphatase and tensin homolog	1.623914354362549e-5
GO:0007568: aging	RXRA	retinoid X receptor, alpha	0.0011178851661669655
GO:0007568: aging	TFRC	transferrin receptor	0.0010869358788891505
GO:0007568: aging	TGFB1	transforming growth factor, beta 1	-7.344736873760848e-5
GO:0007568: aging	TGFB3	transforming growth factor, beta 3	-0.00182961432299378
GO:0007568: aging	TYMS	thymidylate synthetase	0.0015670155233409742
GO:0008209: androgen metabolic process	ADM	adrenomedullin	0.0022357531165483374
GO:0008209: androgen metabolic process	ESR1	estrogen receptor 1	-0.0009473512583995906
GO:0008209: androgen metabolic process	HSD17B4	hydroxysteroid (17-beta) dehydrogenase 4	-0.001161639457261034
GO:0008209: androgen metabolic process	SHH	sonic hedgehog	0.0005990696765356115
GO:0008209: androgen metabolic process	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006422839767221328
GO:0008284: positive regulation of cell proliferation	ADM	adrenomedullin	0.0022410950993080572
GO:0008284: positive regulation of cell proliferation	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030233719864110917
GO:0008284: positive regulation of cell proliferation	ALOX12	arachidonate 12-lipoxygenase	-0.0019565885321681836
GO:0008284: positive regulation of cell proliferation	AR	androgen receptor	0.0026412302672169123
GO:0008284: positive regulation of cell proliferation	AREG	amphiregulin	0.0024605282476191062
GO:0008284: positive regulation of cell proliferation	AVP	arginine vasopressin	-0.0009391515786076597
GO:0008284: positive regulation of cell proliferation	BIRC5	baculoviral IAP repeat containing 5	-0.0002602362256852857
GO:0008284: positive regulation of cell proliferation	CDC20	cell division cycle 20	-0.00018835751784495355
GO:0008284: positive regulation of cell proliferation	CDC7	cell division cycle 7	-0.0006803484279616096
GO:0008284: positive regulation of cell proliferation	CIB1	calcium and integrin binding 1 (calmyrin)	5.403418133617742e-5
GO:0008284: positive regulation of cell proliferation	CST3	cystatin C	-7.092712328068058e-5
GO:0008284: positive regulation of cell proliferation	CXCL10	chemokine (C-X-C motif) ligand 10	6.311418221515948e-5
GO:0008284: positive regulation of cell proliferation	E2F3	E2F transcription factor 3	0.002165182273997929
GO:0008284: positive regulation of cell proliferation	EGFR	epidermal growth factor receptor	0.0006873945507094655
GO:0008284: positive regulation of cell proliferation	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00018389225564362273
GO:0008284: positive regulation of cell proliferation	FGF3	fibroblast growth factor 3	0.0015633065651605809
GO:0008284: positive regulation of cell proliferation	FGF5	fibroblast growth factor 5	-0.0010955850081850226
GO:0008284: positive regulation of cell proliferation	FGF7	fibroblast growth factor 7	0.0006345221184297736
GO:0008284: positive regulation of cell proliferation	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009857303561165117
GO:0008284: positive regulation of cell proliferation	FGFR2	fibroblast growth factor receptor 2	0.0007645573325409215
GO:0008284: positive regulation of cell proliferation	FGFR3	fibroblast growth factor receptor 3	0.00022307374408331033
GO:0008284: positive regulation of cell proliferation	FLT3	fms-related tyrosine kinase 3	-0.0006828990140541774
GO:0008284: positive regulation of cell proliferation	FOXM1	forkhead box M1	0.00019796836757311306
GO:0008284: positive regulation of cell proliferation	FZR1	fizzy/cell division cycle 20 related 1 (Drosophila)	0.0009496567670515856
GO:0008284: positive regulation of cell proliferation	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.0024357318828497187
GO:0008284: positive regulation of cell proliferation	GDNF	glial cell derived neurotrophic factor	0.0004452054117077436
GO:0008284: positive regulation of cell proliferation	GLI1	GLI family zinc finger 1	-0.0012985550423469136
GO:0008284: positive regulation of cell proliferation	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008293204466775923
GO:0008284: positive regulation of cell proliferation	HDAC2	histone deacetylase 2	-0.0012082371845297468
GO:0008284: positive regulation of cell proliferation	HES1	hes family bHLH transcription factor 1	-0.0009123981761961906
GO:0008284: positive regulation of cell proliferation	HIPK2	homeodomain interacting protein kinase 2	0.0007717085127869682
GO:0008284: positive regulation of cell proliferation	HOXA3	homeobox A3	0.0009900277491969958
GO:0008284: positive regulation of cell proliferation	IFNG	interferon, gamma	-4.887456997834818e-5
GO:0008284: positive regulation of cell proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013135316324580065
GO:0008284: positive regulation of cell proliferation	IGF1R	insulin-like growth factor 1 receptor	0.0010728707701114512
GO:0008284: positive regulation of cell proliferation	IL6ST	interleukin 6 signal transducer	0.001877744616725807
GO:0008284: positive regulation of cell proliferation	IL7	interleukin 7	0.0008729160679010593
GO:0008284: positive regulation of cell proliferation	INSR	insulin receptor	-0.0013654856869018527
GO:0008284: positive regulation of cell proliferation	ISL1	ISL LIM homeobox 1	7.867174807322097e-5
GO:0008284: positive regulation of cell proliferation	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024307867666587533
GO:0008284: positive regulation of cell proliferation	JAK2	Janus kinase 2	-3.133823986738436e-5
GO:0008284: positive regulation of cell proliferation	KIF14	kinesin family member 14	0.0004869357289194407
GO:0008284: positive regulation of cell proliferation	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027607878718469343
GO:0008284: positive regulation of cell proliferation	KMT2D	lysine (K)-specific methyltransferase 2D	-0.0001997727000891162
GO:0008284: positive regulation of cell proliferation	LEF1	lymphoid enhancer-binding factor 1	-0.00010029784314462735
GO:0008284: positive regulation of cell proliferation	LEP	leptin	0.0031963665156191172
GO:0008284: positive regulation of cell proliferation	LRP5	low density lipoprotein receptor-related protein 5	3.0206857642998248e-5
GO:0008284: positive regulation of cell proliferation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014224121197098161
GO:0008284: positive regulation of cell proliferation	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.0002911621625667219
GO:0008284: positive regulation of cell proliferation	MFGE8	milk fat globule-EGF factor 8 protein	0.0018078374057839497
GO:0008284: positive regulation of cell proliferation	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001137632466996802
GO:0008284: positive regulation of cell proliferation	NOTCH1	notch 1	0.0005197075762901453
GO:0008284: positive regulation of cell proliferation	ODC1	ornithine decarboxylase 1	0.0008268257255228951
GO:0008284: positive regulation of cell proliferation	PAX3	paired box 3	-0.0029493475218467105
GO:0008284: positive regulation of cell proliferation	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.000362439416405699
GO:0008284: positive regulation of cell proliferation	PDX1	pancreatic and duodenal homeobox 1	0.0002579178362100721
GO:0008284: positive regulation of cell proliferation	POU1F1	POU class 1 homeobox 1	0.00013769257418485366
GO:0008284: positive regulation of cell proliferation	PRC1	protein regulator of cytokinesis 1	0.0012311469731749352
GO:0008284: positive regulation of cell proliferation	PRKCZ	protein kinase C, zeta	-0.0016029215175104089
GO:0008284: positive regulation of cell proliferation	PROX1	prospero homeobox 1	0.0011234164177144777
GO:0008284: positive regulation of cell proliferation	PTEN	phosphatase and tensin homolog	1.6580784823382275e-5
GO:0008284: positive regulation of cell proliferation	PTN	pleiotrophin	0.0003027089957155455
GO:0008284: positive regulation of cell proliferation	PURA	purine-rich element binding protein A	-0.0001709641954551754
GO:0008284: positive regulation of cell proliferation	RARG	retinoic acid receptor, gamma	-0.002322808048203534
GO:0008284: positive regulation of cell proliferation	RNF187	ring finger protein 187	-0.0022298669757898817
GO:0008284: positive regulation of cell proliferation	RPA1	replication protein A1, 70kDa	0.0004406417422636793
GO:0008284: positive regulation of cell proliferation	S100B	S100 calcium binding protein B	0.005193531837173987
GO:0008284: positive regulation of cell proliferation	SFRP1	secreted frizzled-related protein 1	0.001285105196839103
GO:0008284: positive regulation of cell proliferation	SHH	sonic hedgehog	0.0006011691842453297
GO:0008284: positive regulation of cell proliferation	SHMT2	serine hydroxymethyltransferase 2 (mitochondrial)	-0.0010984777529084396
GO:0008284: positive regulation of cell proliferation	SIRT1	sirtuin 1	-1.3705262127162166e-6
GO:0008284: positive regulation of cell proliferation	SOX11	SRY (sex determining region Y)-box 11	-0.00020882667022459884
GO:0008284: positive regulation of cell proliferation	SOX4	SRY (sex determining region Y)-box 4	-3.782439076304134e-5
GO:0008284: positive regulation of cell proliferation	SOX9	SRY (sex determining region Y)-box 9	-0.0005192837332730818
GO:0008284: positive regulation of cell proliferation	STAMBP	STAM binding protein	-0.00017052582419290943
GO:0008284: positive regulation of cell proliferation	TBX3	T-box 3	0.0012274221775040346
GO:0008284: positive regulation of cell proliferation	TGFB1	transforming growth factor, beta 1	-7.3291460741407e-5
GO:0008284: positive regulation of cell proliferation	TGFB2	transforming growth factor, beta 2	-0.0010612035139734972
GO:0008284: positive regulation of cell proliferation	TGFBR1	transforming growth factor, beta receptor 1	0.00034063030559820453
GO:0008284: positive regulation of cell proliferation	TIPIN	TIMELESS interacting protein	-0.0005408522058055692
GO:0008284: positive regulation of cell proliferation	TNC	tenascin C	0.0007354561470014529
GO:0008284: positive regulation of cell proliferation	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002780359294954261
GO:0008284: positive regulation of cell proliferation	TTK	TTK protein kinase	0.0010879208310257383
GO:0008284: positive regulation of cell proliferation	VEGFA	vascular endothelial growth factor A	0.0005964425569342982
GO:0008284: positive regulation of cell proliferation	VEGFC	vascular endothelial growth factor C	-0.003368988555231368
GO:0008284: positive regulation of cell proliferation	WDR77	WD repeat domain 77	0.00013368823951412985
GO:0008284: positive regulation of cell proliferation	WNT1	wingless-type MMTV integration site family, member 1	0.0007880109313703513
GO:0008284: positive regulation of cell proliferation	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013909401968136064
GO:0008284: positive regulation of cell proliferation	WWTR1	WW domain containing transcription regulator 1	0.0009025750375793532
GO:0008284: positive regulation of cell proliferation	YAP1	Yes-associated protein 1	-0.00016426358315464303
GO:0009409: response to cold	ADM	adrenomedullin	0.002239790448882403
GO:0009409: response to cold	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011351167577243065
GO:0009409: response to cold	CXCL10	chemokine (C-X-C motif) ligand 10	6.310089253870703e-5
GO:0009409: response to cold	HSPA2	heat shock 70kDa protein 2	-0.00010820053490843665
GO:0009409: response to cold	IMPDH1	IMP (inosine 5'-monophosphate) dehydrogenase 1	-0.0018739381381500842
GO:0009409: response to cold	THRA	thyroid hormone receptor, alpha	0.0007637331060292851
GO:0009611: response to wounding	ADM	adrenomedullin	0.0022363247259476046
GO:0009611: response to wounding	AGER	advanced glycosylation end product-specific receptor	-0.00017421177489628436
GO:0009611: response to wounding	CCL2	chemokine (C-C motif) ligand 2	0.000815580296128885
GO:0009611: response to wounding	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.000856158855469583
GO:0009611: response to wounding	FGF7	fibroblast growth factor 7	0.0006335254785793173
GO:0009611: response to wounding	GAP43	growth associated protein 43	-0.000129617682620767
GO:0009611: response to wounding	HOXB13	homeobox B13	0.0018246993757456676
GO:0009611: response to wounding	ITGB4	integrin, beta 4	0.000579406653867322
GO:0009611: response to wounding	MDK	midkine (neurite growth-promoting factor 2)	0.0016628219498300992
GO:0009611: response to wounding	PAX6	paired box 6	0.0019339674064337222
GO:0009611: response to wounding	PDX1	pancreatic and duodenal homeobox 1	0.00025689463202632214
GO:0009611: response to wounding	SLC1A3	solute carrier family 1 (glial high affinity glutamate transporter), member 3	-0.0031195166092617046
GO:0009611: response to wounding	TGFB1	transforming growth factor, beta 1	-7.261542628097541e-5
GO:0009611: response to wounding	TGFB2	transforming growth factor, beta 2	-0.0010585455482918812
GO:0009611: response to wounding	TNC	tenascin C	0.0007340740888897686
GO:0009611: response to wounding	VASH1	vasohibin 1	0.0005983295308603421
GO:0009611: response to wounding	WNT1	wingless-type MMTV integration site family, member 1	0.0007865486151669957
GO:0010460: positive regulation of heart rate	ADM	adrenomedullin	0.0022598983240230894
GO:0010460: positive regulation of heart rate	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0027315168276008154
GO:0010460: positive regulation of heart rate	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0009115214102514171
GO:0019731: antibacterial humoral response	ADM	adrenomedullin	0.002257456012228351
GO:0019933: cAMP-mediated signaling	ADM	adrenomedullin	0.0022353920621425425
GO:0019933: cAMP-mediated signaling	EPHA5	EPH receptor A5	0.0005981340292903152
GO:0019933: cAMP-mediated signaling	SOX9	SRY (sex determining region Y)-box 9	-0.0005187964341177324
GO:0030819: positive regulation of cAMP biosynthetic process	ADM	adrenomedullin	0.002248669088808721
GO:0030819: positive regulation of cAMP biosynthetic process	AVP	arginine vasopressin	-0.000942948508295751
GO:0031100: organ regeneration	ADM	adrenomedullin	0.0022459042879211604
GO:0031100: organ regeneration	BAK1	BCL2-antagonist/killer 1	-0.001882565407390322
GO:0031100: organ regeneration	CAST	calpastatin	-0.0030452372340490086
GO:0031100: organ regeneration	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005366414608921821
GO:0031100: organ regeneration	CCL2	chemokine (C-C motif) ligand 2	0.0008201448042826116
GO:0031100: organ regeneration	CCND1	cyclin D1	-0.002646093423570791
GO:0031100: organ regeneration	CCNE1	cyclin E1	0.0003736165667641787
GO:0031100: organ regeneration	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012135917610018555
GO:0031100: organ regeneration	LEF1	lymphoid enhancer-binding factor 1	-0.00010032116575230787
GO:0031100: organ regeneration	MED1	mediator complex subunit 1	0.0011347722602584721
GO:0031100: organ regeneration	MKI67	marker of proliferation Ki-67	0.0015788570868711287
GO:0031100: organ regeneration	NOTCH1	notch 1	0.000521158106908508
GO:0031100: organ regeneration	PDX1	pancreatic and duodenal homeobox 1	0.00025893995986892774
GO:0031100: organ regeneration	TGFB1	transforming growth factor, beta 1	-7.379122373448555e-5
GO:0031100: organ regeneration	TYMS	thymidylate synthetase	0.0015697154640689757
GO:0031100: organ regeneration	WNT1	wingless-type MMTV integration site family, member 1	0.0007895807975310406
GO:0031102: neuron projection regeneration	ADM	adrenomedullin	0.002257456012228351
GO:0031623: receptor internalization	ADM	adrenomedullin	0.0022461762578210604
GO:0031623: receptor internalization	GRB2	growth factor receptor-bound protein 2	0.00043168060687490833
GO:0031623: receptor internalization	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022725957418444046
GO:0032496: response to lipopolysaccharide	ADM	adrenomedullin	0.002247530661152156
GO:0032496: response to lipopolysaccharide	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.0002749827394197018
GO:0032496: response to lipopolysaccharide	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028316184172729316
GO:0032496: response to lipopolysaccharide	CXCL13	chemokine (C-X-C motif) ligand 13	0.0030073685792690883
GO:0032496: response to lipopolysaccharide	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.0004743644212478374
GO:0032496: response to lipopolysaccharide	HDAC2	histone deacetylase 2	-0.0012109459890452521
GO:0032496: response to lipopolysaccharide	HMGB2	high mobility group box 2	0.0003114218142957027
GO:0032496: response to lipopolysaccharide	IDO1	indoleamine 2,3-dioxygenase 1	0.0012321117053351708
GO:0032496: response to lipopolysaccharide	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016163172384537744
GO:0032496: response to lipopolysaccharide	JAK2	Janus kinase 2	-3.072034762998236e-5
GO:0032496: response to lipopolysaccharide	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011650656355459599
GO:0032496: response to lipopolysaccharide	LIAS	lipoic acid synthetase	-0.0005563796193691327
GO:0032496: response to lipopolysaccharide	NOTCH1	notch 1	0.0005213228839302018
GO:0032496: response to lipopolysaccharide	S100A14	S100 calcium binding protein A14	-0.0021712557788089526
GO:0032496: response to lipopolysaccharide	S100A7	S100 calcium binding protein A7	0.0015981945312622558
GO:0032496: response to lipopolysaccharide	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00048156411352864094
GO:0032496: response to lipopolysaccharide	TH	tyrosine hydroxylase	-0.00034304691041342326
GO:0032496: response to lipopolysaccharide	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002789346206407166
GO:0032868: response to insulin	ADM	adrenomedullin	0.0022571304207396293
GO:0032868: response to insulin	AGRP	agouti related protein homolog (mouse)	-0.0025931567832848633
GO:0032868: response to insulin	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002845316550106531
GO:0032868: response to insulin	EGR2	early growth response 2	0.0014564520686788356
GO:0032868: response to insulin	GCNT1	glucosaminyl (N-acetyl) transferase 1, core 2	0.0007052307700962995
GO:0032868: response to insulin	GGH	gamma-glutamyl hydrolase (conjugase, folylpolygammaglutamyl hydrolase)	-0.0003151803611604784
GO:0032868: response to insulin	LEP	leptin	0.0032240763975226907
GO:0032868: response to insulin	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014327910398884234
GO:0032868: response to insulin	SIRT1	sirtuin 1	1.6888794085905617e-9
GO:0042475: odontogenesis of dentin-containing tooth	ADM	adrenomedullin	0.0022379007332444275
GO:0042475: odontogenesis of dentin-containing tooth	BAX	BCL2-associated X protein	-0.0004253443493837111
GO:0042475: odontogenesis of dentin-containing tooth	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007749680304709946
GO:0042475: odontogenesis of dentin-containing tooth	BMP4	bone morphogenetic protein 4	-0.00032256605062526487
GO:0042475: odontogenesis of dentin-containing tooth	BMP7	bone morphogenetic protein 7	0.0008558030048578338
GO:0042475: odontogenesis of dentin-containing tooth	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011709937218164795
GO:0042475: odontogenesis of dentin-containing tooth	EDA	ectodysplasin A	-0.0008144134057263499
GO:0042475: odontogenesis of dentin-containing tooth	EDAR	ectodysplasin A receptor	0.0005940033102101944
GO:0042475: odontogenesis of dentin-containing tooth	FOXC1	forkhead box C1	-2.2580485670959328e-5
GO:0042475: odontogenesis of dentin-containing tooth	GLI2	GLI family zinc finger 2	0.001853532447217153
GO:0042475: odontogenesis of dentin-containing tooth	GLI3	GLI family zinc finger 3	-0.0021512673548006855
GO:0042475: odontogenesis of dentin-containing tooth	HDAC2	histone deacetylase 2	-0.001207644872412149
GO:0042475: odontogenesis of dentin-containing tooth	JAG2	jagged 2	-5.740313696177075e-6
GO:0042475: odontogenesis of dentin-containing tooth	LEF1	lymphoid enhancer-binding factor 1	-0.0001002913252850081
GO:0042475: odontogenesis of dentin-containing tooth	LRP6	low density lipoprotein receptor-related protein 6	0.00014937702630941034
GO:0042475: odontogenesis of dentin-containing tooth	MSX1	msh homeobox 1	-0.0027687545213464873
GO:0042475: odontogenesis of dentin-containing tooth	NF2	neurofibromin 2 (merlin)	-0.00127214579751921
GO:0042475: odontogenesis of dentin-containing tooth	PITX2	paired-like homeodomain 2	0.0021760812706479358
GO:0042475: odontogenesis of dentin-containing tooth	SHH	sonic hedgehog	0.0005998055592181085
GO:0042475: odontogenesis of dentin-containing tooth	SMO	smoothened, frizzled class receptor	0.0021392087362287985
GO:0042475: odontogenesis of dentin-containing tooth	SOSTDC1	sclerostin domain containing 1	-0.001524804367856243
GO:0042594: response to starvation	ADM	adrenomedullin	0.0022490741292883684
GO:0042594: response to starvation	HMGCL	3-hydroxymethyl-3-methylglutaryl-CoA lyase	-0.0010697342762814774
GO:0043065: positive regulation of apoptotic process	ADM	adrenomedullin	0.002249847139176591
GO:0043065: positive regulation of apoptotic process	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030351067118519893
GO:0043065: positive regulation of apoptotic process	APC	adenomatous polyposis coli	0.0006454770127754742
GO:0043065: positive regulation of apoptotic process	ARL6IP5	ADP-ribosylation factor-like 6 interacting protein 5	0.00016989518960989098
GO:0043065: positive regulation of apoptotic process	BAK1	BCL2-antagonist/killer 1	-0.0018861589047304056
GO:0043065: positive regulation of apoptotic process	BARD1	BRCA1 associated RING domain 1	0.0017548024382458183
GO:0043065: positive regulation of apoptotic process	BAX	BCL2-associated X protein	-0.00042692508516908216
GO:0043065: positive regulation of apoptotic process	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007779063600343187
GO:0043065: positive regulation of apoptotic process	BMP4	bone morphogenetic protein 4	-0.0003244372210473744
GO:0043065: positive regulation of apoptotic process	BMP7	bone morphogenetic protein 7	0.0008594945586820188
GO:0043065: positive regulation of apoptotic process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002929639518528973
GO:0043065: positive regulation of apoptotic process	BNIP3L	BCL2/adenovirus E1B 19kDa interacting protein 3-like	-5.7595195156418864e-5
GO:0043065: positive regulation of apoptotic process	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.0026028522913662823
GO:0043065: positive regulation of apoptotic process	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017700596267689465
GO:0043065: positive regulation of apoptotic process	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011699420714832131
GO:0043065: positive regulation of apoptotic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039937548439569987
GO:0043065: positive regulation of apoptotic process	DIABLO	diablo, IAP-binding mitochondrial protein	-0.0005983876797996912
GO:0043065: positive regulation of apoptotic process	ECT2	epithelial cell transforming 2	0.0010689481078891745
GO:0043065: positive regulation of apoptotic process	EEF1A2	eukaryotic translation elongation factor 1 alpha 2	-0.0018661239554174098
GO:0043065: positive regulation of apoptotic process	FAS	Fas cell surface death receptor	-3.3494009842846056e-5
GO:0043065: positive regulation of apoptotic process	FOXO1	forkhead box O1	0.0018099178475307668
GO:0043065: positive regulation of apoptotic process	HMGA2	high mobility group AT-hook 2	0.001516575667468644
GO:0043065: positive regulation of apoptotic process	HMGB1	high mobility group box 1	-0.0007791148104959677
GO:0043065: positive regulation of apoptotic process	HOXA5	homeobox A5	0.00107329093703349
GO:0043065: positive regulation of apoptotic process	IGFBP3	insulin-like growth factor binding protein 3	0.0008397833620326272
GO:0043065: positive regulation of apoptotic process	ITGA6	integrin, alpha 6	0.001682515595332933
GO:0043065: positive regulation of apoptotic process	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002442181192397091
GO:0043065: positive regulation of apoptotic process	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006647765072681675
GO:0043065: positive regulation of apoptotic process	KLF11	Kruppel-like factor 11	0.0006228236785852952
GO:0043065: positive regulation of apoptotic process	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.000344806027095111
GO:0043065: positive regulation of apoptotic process	MELK	maternal embryonic leucine zipper kinase	0.002082269148067369
GO:0043065: positive regulation of apoptotic process	NOTCH1	notch 1	0.0005220117098999355
GO:0043065: positive regulation of apoptotic process	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.001864752935381788
GO:0043065: positive regulation of apoptotic process	RARG	retinoic acid receptor, gamma	-0.002331950121265365
GO:0043065: positive regulation of apoptotic process	RXRA	retinoid X receptor, alpha	0.0011209440490071176
GO:0043065: positive regulation of apoptotic process	S100B	S100 calcium binding protein B	0.005216725688016132
GO:0043065: positive regulation of apoptotic process	SAV1	salvador family WW domain containing protein 1	-0.0023482111932885863
GO:0043065: positive regulation of apoptotic process	SFRP1	secreted frizzled-related protein 1	0.0012937941625074977
GO:0043065: positive regulation of apoptotic process	SHQ1	SHQ1, H/ACA ribonucleoprotein assembly factor	-0.0014430001259238606
GO:0043065: positive regulation of apoptotic process	SIRT1	sirtuin 1	-6.269227723450068e-7
GO:0043065: positive regulation of apoptotic process	SLIT2	slit homolog 2 (Drosophila)	-0.001630296568624057
GO:0043065: positive regulation of apoptotic process	SOX4	SRY (sex determining region Y)-box 4	-3.684691026260632e-5
GO:0043065: positive regulation of apoptotic process	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031516094141339473
GO:0043065: positive regulation of apoptotic process	STEAP3	STEAP family member 3, metalloreductase	0.002622569480875091
GO:0043065: positive regulation of apoptotic process	TGFB1	transforming growth factor, beta 1	-7.391976541094107e-5
GO:0043065: positive regulation of apoptotic process	TGFB3	transforming growth factor, beta 3	-0.0018360272108781726
GO:0043065: positive regulation of apoptotic process	TGM2	transglutaminase 2	-0.0001824927279295108
GO:0043065: positive regulation of apoptotic process	TOP2A	topoisomerase (DNA) II alpha 170kDa	-8.027966129823019e-5
GO:0043065: positive regulation of apoptotic process	TP53	tumor protein p53	0.0011844081416860874
GO:0043065: positive regulation of apoptotic process	WNT10B	wingless-type MMTV integration site family, member 10B	-0.001397479739969258
GO:0043065: positive regulation of apoptotic process	WT1	Wilms tumor 1	-0.0005105571750694809
GO:0043116: negative regulation of vascular permeability	ADM	adrenomedullin	0.002240060658406547
GO:0043116: negative regulation of vascular permeability	ANGPT1	angiopoietin 1	0.0009015850685944628
GO:0043116: negative regulation of vascular permeability	PTPRJ	protein tyrosine phosphatase, receptor type, J	-0.00033895407554470367
GO:0043116: negative regulation of vascular permeability	SLIT2	slit homolog 2 (Drosophila)	-0.0016217891238139062
GO:0045906: negative regulation of vasoconstriction	ADM	adrenomedullin	0.002266932607821474
GO:0045906: negative regulation of vasoconstriction	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021518927541464596
GO:0045906: negative regulation of vasoconstriction	LEP	leptin	0.0032405431344564328
GO:0045909: positive regulation of vasodilation	ADM	adrenomedullin	0.002244362996869002
GO:0045909: positive regulation of vasodilation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011387460881769524
GO:0045909: positive regulation of vasodilation	ALOX12	arachidonate 12-lipoxygenase	-0.0019597816912600816
GO:0045909: positive regulation of vasodilation	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016429640094642507
GO:0045909: positive regulation of vasodilation	HMOX1	heme oxygenase (decycling) 1	-0.0002185043869496952
GO:0046879: hormone secretion	ADM	adrenomedullin	0.002257456012228351
GO:0048589: developmental growth	ADM	adrenomedullin	0.002248287318382844
GO:0048589: developmental growth	ASPM	asp (abnormal spindle) homolog, microcephaly associated (Drosophila)	1.8428209697634396e-5
GO:0048589: developmental growth	GATA3	GATA binding protein 3	-4.186639102464021e-5
GO:0048589: developmental growth	GLI2	GLI family zinc finger 2	0.001862347567809895
GO:0048589: developmental growth	GLI3	GLI family zinc finger 3	-0.0021647469411024607
GO:0048589: developmental growth	SOX10	SRY (sex determining region Y)-box 10	0.00019614568829672105
GO:0048589: developmental growth	STRA6	stimulated by retinoic acid 6	-0.0016890001525057105
GO:0048589: developmental growth	TYMS	thymidylate synthetase	0.0015724753015463396
GO:0050829: defense response to Gram-negative bacterium	ADM	adrenomedullin	0.002229597701253051
GO:0050829: defense response to Gram-negative bacterium	AZU1	azurocidin 1	0.0001971389329927299
GO:0050829: defense response to Gram-negative bacterium	HMGB2	high mobility group box 2	0.0003034666997796715
GO:0050829: defense response to Gram-negative bacterium	IL12B	interleukin 12B	0.0012732256978753315
GO:0050829: defense response to Gram-negative bacterium	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.000424219585316062
GO:0050829: defense response to Gram-negative bacterium	S100A7	S100 calcium binding protein A7	0.0015833155525608468
GO:0050829: defense response to Gram-negative bacterium	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.0001128146421674076
GO:0050830: defense response to Gram-positive bacterium	ADM	adrenomedullin	0.002225749123551416
GO:0050830: defense response to Gram-positive bacterium	HMGB2	high mobility group box 2	0.0003023446602309771
GO:0050830: defense response to Gram-positive bacterium	IL27RA	interleukin 27 receptor, alpha	-0.00048179484270530535
GO:0050830: defense response to Gram-positive bacterium	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042389702871016116
GO:0050830: defense response to Gram-positive bacterium	SEH1L	SEH1-like (S. cerevisiae)	-0.0007290475215124665
GO:0051384: response to glucocorticoid	ADM	adrenomedullin	0.002254255245069568
GO:0051384: response to glucocorticoid	AREG	amphiregulin	0.002475830499200363
GO:0051384: response to glucocorticoid	BCHE	butyrylcholinesterase	-8.878500389435762e-6
GO:0051384: response to glucocorticoid	BCL2	B-cell CLL/lymphoma 2	-4.979173179272818e-6
GO:0051384: response to glucocorticoid	BMP4	bone morphogenetic protein 4	-0.0003251113367670448
GO:0051384: response to glucocorticoid	C3	complement component 3	0.0020405027069869425
GO:0051384: response to glucocorticoid	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005380439279837384
GO:0051384: response to glucocorticoid	CTSV	cathepsin V	0.0006611152623379377
GO:0051384: response to glucocorticoid	FAS	Fas cell surface death receptor	-3.358561388999551e-5
GO:0051384: response to glucocorticoid	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.0001467815782874012
GO:0051384: response to glucocorticoid	MDK	midkine (neurite growth-promoting factor 2)	0.0016839739478617475
GO:0051384: response to glucocorticoid	PDX1	pancreatic and duodenal homeobox 1	0.0002605598001965565
GO:0051384: response to glucocorticoid	RXRA	retinoid X receptor, alpha	0.0011231159560783003
GO:0051384: response to glucocorticoid	S100B	S100 calcium binding protein B	0.005228628183890329
GO:0051384: response to glucocorticoid	TAT	tyrosine aminotransferase	0.0010617844211096926
GO:0051384: response to glucocorticoid	TYMS	thymidylate synthetase	0.0015774144106664018
GO:0060670: branching involved in labyrinthine layer morphogenesis	ADM	adrenomedullin	0.0022358403364742168
GO:0060670: branching involved in labyrinthine layer morphogenesis	FGFR2	fibroblast growth factor receptor 2	0.0007620538491925124
GO:0060670: branching involved in labyrinthine layer morphogenesis	GRB2	growth factor receptor-bound protein 2	0.00042949293077006683
GO:0060712: spongiotrophoblast layer development	ADM	adrenomedullin	0.0022633438948317297
GO:0060712: spongiotrophoblast layer development	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028542660545164576
GO:0097084: vascular smooth muscle cell development	ADM	adrenomedullin	0.0022597339534806207
GO:0097084: vascular smooth muscle cell development	HES1	hes family bHLH transcription factor 1	-0.0009206495187076087
GO:0097084: vascular smooth muscle cell development	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.002731260827130097
GO:2001214: positive regulation of vasculogenesis	ADM	adrenomedullin	0.002257456012228351
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	AES	amino-terminal enhancer of split	0.0013551182258712232
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ALX1	ALX homeobox 1	0.0022943594153471175
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014341810788094532
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	AURKB	aurora kinase B	0.0003510242537475112
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	BACH1	BTB and CNC homology 1, basic leucine zipper transcription factor 1	0.0004858791321776831
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	BCL11A	B-cell CLL/lymphoma 11A (zinc finger protein)	-0.0009778037521593697
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	BMP4	bone morphogenetic protein 4	-0.00032291665541893806
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005358515151663144
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	CCND1	cyclin D1	-0.0026361696113495962
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011707202416043355
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DACH1	dachshund family transcription factor 1	0.0020906120418930354
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DAXX	death-domain associated protein	0.0008926760602729519
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DICER1	dicer 1, ribonuclease type III	-1.6085242419160012e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DKK1	dickkopf WNT signaling pathway inhibitor 1	-0.00018086280764588054
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	DMRT1	doublesex and mab-3 related transcription factor 1	0.0015062826956418274
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E2F1	E2F transcription factor 1	0.002099951910367531
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E2F6	E2F transcription factor 6	0.0007183936207001569
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E2F8	E2F transcription factor 8	0.0017125554910919414
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	E4F1	E4F transcription factor 1	0.0014829497580189299
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EFNA1	ephrin-A1	-0.0005211819739195806
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EGR1	early growth response 1	0.0010942465833379373
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EN1	engrailed homeobox 1	-1.560490572607656e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ENG	endoglin	0.0008276634707962909
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010168219306386026
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013652193455570443
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FGFR2	fibroblast growth factor receptor 2	0.000764087648215591
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FGFR3	fibroblast growth factor receptor 3	0.00022303140380648304
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.0017500454485836895
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXM1	forkhead box M1	0.00019738474514374848
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXO1	forkhead box O1	0.0018021228107439756
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	FOXO3	forkhead box O3	0.0012014358019426352
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GATA2	GATA binding protein 2	-0.00045206280840751496
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GATA3	GATA binding protein 3	-3.899696096053615e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GATA6	GATA binding protein 6	-2.8164220902766884e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GFI1	growth factor independent 1 transcription repressor	0.0016660985531133789
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GLI2	GLI family zinc finger 2	0.0018555577160233197
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	GLI3	GLI family zinc finger 3	-0.0021540253164459874
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HDAC2	histone deacetylase 2	-0.0012083777929821995
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HES1	hes family bHLH transcription factor 1	-0.0009119510641972799
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015296059642953407
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.002702102519300041
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HINFP	histone H4 transcription factor	0.0009935279983226885
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HIPK2	homeodomain interacting protein kinase 2	0.0007715493022325742
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HMGA2	high mobility group AT-hook 2	0.0015105061269616294
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	HMGB1	high mobility group box 1	-0.0007770585873115469
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.010272536522293e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	IFNG	interferon, gamma	-4.893079540085307e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	IGBP1	immunoglobulin (CD79A) binding protein 1	0.002852166382103166
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	IRF7	interferon regulatory factor 7	-0.0013078823059719275
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ISL1	ISL LIM homeobox 1	7.89183587710498e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	KLF11	Kruppel-like factor 11	0.0006176055842431096
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	LEF1	lymphoid enhancer-binding factor 1	-0.00010024651916415763
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	LEP	leptin	0.00319471534879105
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.000932766265972705
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MED1	mediator complex subunit 1	0.0011306282915268357
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MEF2C	myocyte enhancer factor 2C	0.000974529168039577
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MSX1	msh homeobox 1	-0.002772207992396804
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001137664461376058
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NFIB	nuclear factor I/B	0.0029227627622900347
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NFX1	nuclear transcription factor, X-box binding 1	-6.977924080879201e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NOC2L	nucleolar complex associated 2 homolog (S. cerevisiae)	-0.00015122390490234468
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NOTCH1	notch 1	0.0005193083282218356
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0008015691707731485
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.002977969715828964
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	NRIP1	nuclear receptor interacting protein 1	0.0010722096159011536
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ORC2	origin recognition complex, subunit 2	-0.0006128708749429621
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PAX3	paired box 3	-0.0029482489937430593
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PAX6	paired box 6	0.0019377480187608102
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PDX1	pancreatic and duodenal homeobox 1	0.00025767106892919667
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PER2	period circadian clock 2	0.0012395282488476763
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PHF14	PHD finger protein 14	0.0032282891775884653
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PITX2	paired-like homeodomain 2	0.002178479479224185
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PLK1	polo-like kinase 1	0.0010189579927959976
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PLK3	polo-like kinase 3	0.002566737133402384
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	POU1F1	POU class 1 homeobox 1	0.00013762064483145773
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PPP1R13L	protein phosphatase 1, regulatory subunit 13 like	-0.0014753783279936275
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PROX1	prospero homeobox 1	0.0011228040046543475
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	PTCH1	patched 1	-6.59036004855409e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RARG	retinoic acid receptor, gamma	-0.0023218968713357023
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009823683903396022
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RREB1	ras responsive element binding protein 1	-0.00198364302717205
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	RXRA	retinoid X receptor, alpha	0.001116294931667694
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	S100A1	S100 calcium binding protein A1	0.0015870872871171671
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SALL1	spalt-like transcription factor 1	-0.002440445299273784
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SHH	sonic hedgehog	0.0006007415421319319
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SIRT1	sirtuin 1	-1.5243308058533988e-6
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SIRT2	sirtuin 2	-0.000853211656384486
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SIX1	SIX homeobox 1	-0.0018719885232860087
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SKI	SKI proto-oncogene	-0.0006711169904449969
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SMO	smoothened, frizzled class receptor	0.002141537306566368
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SOX11	SRY (sex determining region Y)-box 11	-0.00020923557087659572
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SOX18	SRY (sex determining region Y)-box 18	0.0012897248055904994
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SOX9	SRY (sex determining region Y)-box 9	-0.0005192689492928108
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031401075821517353
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TBX3	T-box 3	0.0012274167587069324
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005743624922343587
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004803589178179183
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010616603099897152
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TFCP2L1	transcription factor CP2-like 1	0.0004495484372106239
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TGFB1	transforming growth factor, beta 1	-7.309557659658685e-5
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	THRB	thyroid hormone receptor, beta	0.0019459537768192
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TP53	tumor protein p53	0.0011771957338800394
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TP73	tumor protein p73	0.0010290644601768273
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TPR	translocated promoter region, nuclear basket protein	-0.0006977416686542846
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TRPS1	trichorhinophalangeal syndrome I	-0.00017814533556740548
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	TWIST1	twist family bHLH transcription factor 1	-0.001343126696650634
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005640252179659062
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VEGFA	vascular endothelial growth factor A	0.0005957531111647731
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VLDLR	very low density lipoprotein receptor	0.0009540857561877539
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	VPS72	vacuolar protein sorting 72 homolog (S. cerevisiae)	0.0005591059954160047
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WFS1	Wolfram syndrome 1 (wolframin)	0.0005773100865995264
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013901551851193846
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WT1	Wilms tumor 1	-0.0005075491450663939
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009581368781906835
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	WWTR1	WW domain containing transcription regulator 1	0.0009016010907040486
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	XBP1	X-box binding protein 1	0.0002675704031140033
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	YBX1	Y box binding protein 1	-0.0009146851717373777
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	YY1	YY1 transcription factor	0.0013417771859454133
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ZBTB18	zinc finger and BTB domain containing 18	0.0012733151134221913
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ZNF148	zinc finger protein 148	0.002106336098087779
GO:0000122: negative regulation of transcription from RNA polymerase II promoter	ZNF205	zinc finger protein 205	0.00059647807618495
GO:0009887: organ morphogenesis	AES	amino-terminal enhancer of split	0.0013551700108189611
GO:0009887: organ morphogenesis	CCL2	chemokine (C-C motif) ligand 2	0.0008169353018639718
GO:0009887: organ morphogenesis	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023475824803697344
GO:0009887: organ morphogenesis	EVL	Enah/Vasp-like	0.0019399869451577245
GO:0009887: organ morphogenesis	FGFR2	fibroblast growth factor receptor 2	0.0007636188960153763
GO:0009887: organ morphogenesis	GATA2	GATA binding protein 2	-0.0004513740507206313
GO:0009887: organ morphogenesis	GATA3	GATA binding protein 3	-3.812156262349585e-5
GO:0009887: organ morphogenesis	GSK3B	glycogen synthase kinase 3 beta	0.0015504609697309835
GO:0009887: organ morphogenesis	IL7	interleukin 7	0.0008715709758289295
GO:0009887: organ morphogenesis	LHX1	LIM homeobox 1	-0.000759297118267382
GO:0009887: organ morphogenesis	NRP1	neuropilin 1	-0.0006436307598317071
GO:0009887: organ morphogenesis	PAX3	paired box 3	-0.002947608275728009
GO:0009887: organ morphogenesis	PAX6	paired box 6	0.0019368754649154141
GO:0009887: organ morphogenesis	PDX1	pancreatic and duodenal homeobox 1	0.000257362135378043
GO:0009887: organ morphogenesis	PTCH1	patched 1	-6.626513105950119e-5
GO:0009887: organ morphogenesis	STX2	syntaxin 2	0.0003084483722568697
GO:0009887: organ morphogenesis	TBX3	T-box 3	0.0012278099074311084
GO:0009887: organ morphogenesis	TH	tyrosine hydroxylase	-0.0003424167802420946
GO:0009887: organ morphogenesis	THRB	thyroid hormone receptor, beta	0.001945790211936134
GO:0009887: organ morphogenesis	TRPS1	trichorhinophalangeal syndrome I	-0.00017755481586765774
GO:0009887: organ morphogenesis	VEGFC	vascular endothelial growth factor C	-0.0033664713901675604
GO:0010629: negative regulation of gene expression	AES	amino-terminal enhancer of split	0.001351914001093741
GO:0010629: negative regulation of gene expression	BAK1	BCL2-antagonist/killer 1	-0.0018730431728721153
GO:0010629: negative regulation of gene expression	BBS4	Bardet-Biedl syndrome 4	-0.0005090853651926169
GO:0010629: negative regulation of gene expression	C1QTNF3	C1q and tumor necrosis factor related protein 3	0.00013892932752127414
GO:0010629: negative regulation of gene expression	CCNB1	cyclin B1	-0.0008809332885227916
GO:0010629: negative regulation of gene expression	CDC42	cell division cycle 42	0.0012382897889685947
GO:0010629: negative regulation of gene expression	CRYAB	crystallin, alpha B	0.0009830222652376511
GO:0010629: negative regulation of gene expression	ESR1	estrogen receptor 1	-0.0009468039846844984
GO:0010629: negative regulation of gene expression	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016121412881582491
GO:0010629: negative regulation of gene expression	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0026944214350133095
GO:0010629: negative regulation of gene expression	HINFP	histone H4 transcription factor	0.0009911689595940656
GO:0010629: negative regulation of gene expression	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.0115906696229e-5
GO:0010629: negative regulation of gene expression	IFNA2	interferon, alpha 2	-0.0017146287008386835
GO:0010629: negative regulation of gene expression	IFNG	interferon, gamma	-4.8832332093856425e-5
GO:0010629: negative regulation of gene expression	LGALS9	lectin, galactoside-binding, soluble, 9	-0.0001167821634247675
GO:0010629: negative regulation of gene expression	MEF2C	myocyte enhancer factor 2C	0.0009717040659472455
GO:0010629: negative regulation of gene expression	PGR	progesterone receptor	0.00035122284772455575
GO:0010629: negative regulation of gene expression	RNASEH2B	ribonuclease H2, subunit B	-4.3467780817131366e-5
GO:0010629: negative regulation of gene expression	SFRP1	secreted frizzled-related protein 1	0.0012794387325746075
GO:0010629: negative regulation of gene expression	SIRT1	sirtuin 1	-1.7852213432195324e-6
GO:0010629: negative regulation of gene expression	SLIT2	slit homolog 2 (Drosophila)	-0.0016175920743850966
GO:0010629: negative regulation of gene expression	SMO	smoothened, frizzled class receptor	0.0021359331492284035
GO:0010629: negative regulation of gene expression	SOX11	SRY (sex determining region Y)-box 11	-0.00020867327667661596
GO:0010629: negative regulation of gene expression	STC2	stanniocalcin 2	-0.001395134547043584
GO:0010629: negative regulation of gene expression	TGFB1	transforming growth factor, beta 1	-7.294610457040549e-5
GO:0010629: negative regulation of gene expression	WNT4	wingless-type MMTV integration site family, member 4	-0.00025154255592146993
GO:0010629: negative regulation of gene expression	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009557896463014895
GO:0010629: negative regulation of gene expression	YY1	YY1 transcription factor	0.001337878804402302
GO:0010629: negative regulation of gene expression	ZNF148	zinc finger protein 148	0.0021006780488864877
GO:0016055: Wnt signaling pathway	AES	amino-terminal enhancer of split	0.001352739516603842
GO:0016055: Wnt signaling pathway	CCNE1	cyclin E1	0.0003708117127280416
GO:0016055: Wnt signaling pathway	CD24	CD24 molecule	0.0010707816370809052
GO:0016055: Wnt signaling pathway	CELSR2	cadherin, EGF LAG seven-pass G-type receptor 2	-0.0011340597826993827
GO:0016055: Wnt signaling pathway	CPE	carboxypeptidase E	-0.002542231312610131
GO:0016055: Wnt signaling pathway	CSNK2B	casein kinase 2, beta polypeptide	0.0015273538504854435
GO:0016055: Wnt signaling pathway	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.0001167708523579361
GO:0016055: Wnt signaling pathway	CTNNBIP1	catenin, beta interacting protein 1	0.0005851476176684198
GO:0016055: Wnt signaling pathway	DRD2	dopamine receptor D2	-0.00023390629743860666
GO:0016055: Wnt signaling pathway	LEF1	lymphoid enhancer-binding factor 1	-0.00010035972892575307
GO:0016055: Wnt signaling pathway	LRP5	low density lipoprotein receptor-related protein 5	3.044552848159954e-5
GO:0016055: Wnt signaling pathway	LRP6	low density lipoprotein receptor-related protein 6	0.00014952042784598308
GO:0016055: Wnt signaling pathway	NDRG2	NDRG family member 2	0.002171520000971102
GO:0016055: Wnt signaling pathway	PITX2	paired-like homeodomain 2	0.0021740623016134673
GO:0016055: Wnt signaling pathway	SOSTDC1	sclerostin domain containing 1	-0.0015229194321765066
GO:0016055: Wnt signaling pathway	WNT1	wingless-type MMTV integration site family, member 1	0.0007862487173985866
GO:0016055: Wnt signaling pathway	WNT10B	wingless-type MMTV integration site family, member 10B	-0.001387212062097238
GO:0016055: Wnt signaling pathway	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006668920517706578
GO:0032091: negative regulation of protein binding	AES	amino-terminal enhancer of split	0.0013463307260487636
GO:0032091: negative regulation of protein binding	AURKA	aurora kinase A	0.0009991882076638278
GO:0032091: negative regulation of protein binding	AURKB	aurora kinase B	0.00034603235179610995
GO:0032091: negative regulation of protein binding	BAX	BCL2-associated X protein	-0.0004228922884857202
GO:0032091: negative regulation of protein binding	CAV1	caveolin 1, caveolae protein, 22kDa	-0.000532948143787745
GO:0032091: negative regulation of protein binding	CTNNBIP1	catenin, beta interacting protein 1	0.0005811182393533246
GO:0032091: negative regulation of protein binding	GOLGA2	golgin A2	0.00016704976704624974
GO:0032091: negative regulation of protein binding	GSK3B	glycogen synthase kinase 3 beta	0.0015382435686406635
GO:0032091: negative regulation of protein binding	NES	nestin	0.0013608046463423498
GO:0032091: negative regulation of protein binding	PRKCD	protein kinase C, delta	-0.0011190671462786529
GO:0032091: negative regulation of protein binding	TEX14	testis expressed 14	0.001715361155260679
GO:0032091: negative regulation of protein binding	TMBIM6	transmembrane BAX inhibitor motif containing 6	-0.00014697587107788512
GO:0045892: negative regulation of transcription, DNA-templated	AES	amino-terminal enhancer of split	0.0013517847305740713
GO:0045892: negative regulation of transcription, DNA-templated	ASCL1	achaete-scute family bHLH transcription factor 1	-0.001429550917306822
GO:0045892: negative regulation of transcription, DNA-templated	ATF5	activating transcription factor 5	-0.0027301283776263673
GO:0045892: negative regulation of transcription, DNA-templated	BASP1	brain abundant, membrane attached signal protein 1	0.00047759315356880677
GO:0045892: negative regulation of transcription, DNA-templated	BIRC5	baculoviral IAP repeat containing 5	-0.00026031859065165524
GO:0045892: negative regulation of transcription, DNA-templated	BMP4	bone morphogenetic protein 4	-0.0003219902464734651
GO:0045892: negative regulation of transcription, DNA-templated	BMP7	bone morphogenetic protein 7	0.0008543523023319432
GO:0045892: negative regulation of transcription, DNA-templated	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017543369588370779
GO:0045892: negative regulation of transcription, DNA-templated	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.00027351788268845735
GO:0045892: negative regulation of transcription, DNA-templated	CHMP1A	charged multivesicular body protein 1A	-0.000778374826890948
GO:0045892: negative regulation of transcription, DNA-templated	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028126282879064957
GO:0045892: negative regulation of transcription, DNA-templated	CLOCK	clock circadian regulator	0.00020017165830075873
GO:0045892: negative regulation of transcription, DNA-templated	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011686077626024051
GO:0045892: negative regulation of transcription, DNA-templated	DACH1	dachshund family transcription factor 1	0.002085597153487455
GO:0045892: negative regulation of transcription, DNA-templated	DAXX	death-domain associated protein	0.0008895562116497329
GO:0045892: negative regulation of transcription, DNA-templated	E2F1	E2F transcription factor 1	0.0020936531362438786
GO:0045892: negative regulation of transcription, DNA-templated	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013672358495650793
GO:0045892: negative regulation of transcription, DNA-templated	FOXM1	forkhead box M1	0.00019648954157836887
GO:0045892: negative regulation of transcription, DNA-templated	FOXO1	forkhead box O1	0.001796959348610165
GO:0045892: negative regulation of transcription, DNA-templated	GATA3	GATA binding protein 3	-3.864292371758225e-5
GO:0045892: negative regulation of transcription, DNA-templated	GATA6	GATA binding protein 6	-2.8335332695295215e-5
GO:0045892: negative regulation of transcription, DNA-templated	GFI1	growth factor independent 1 transcription repressor	0.0016618497178077425
GO:0045892: negative regulation of transcription, DNA-templated	GLI3	GLI family zinc finger 3	-0.00214719295005175
GO:0045892: negative regulation of transcription, DNA-templated	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008252087915197294
GO:0045892: negative regulation of transcription, DNA-templated	HDAC2	histone deacetylase 2	-0.0012055610861570986
GO:0045892: negative regulation of transcription, DNA-templated	HES1	hes family bHLH transcription factor 1	-0.0009092210165938036
GO:0045892: negative regulation of transcription, DNA-templated	HEXIM1	hexamethylene bis-acetamide inducible 1	0.00015247737052206324
GO:0045892: negative regulation of transcription, DNA-templated	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0026931776015174783
GO:0045892: negative regulation of transcription, DNA-templated	HEYL	hes-related family bHLH transcription factor with YRPW motif-like	0.0006763193724865659
GO:0045892: negative regulation of transcription, DNA-templated	HINFP	histone H4 transcription factor	0.000990620591567639
GO:0045892: negative regulation of transcription, DNA-templated	HMGA1	high mobility group AT-hook 1	-0.0003182893538899947
GO:0045892: negative regulation of transcription, DNA-templated	HMGA2	high mobility group AT-hook 2	0.0015063009276919841
GO:0045892: negative regulation of transcription, DNA-templated	HMGB2	high mobility group box 2	0.0003055442002599931
GO:0045892: negative regulation of transcription, DNA-templated	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.017573893963396e-5
GO:0045892: negative regulation of transcription, DNA-templated	IFNA2	interferon, alpha 2	-0.0017141527027006902
GO:0045892: negative regulation of transcription, DNA-templated	IL4	interleukin 4	0.00025942611213629265
GO:0045892: negative regulation of transcription, DNA-templated	LANCL2	LanC lantibiotic synthetase component C-like 2 (bacterial)	0.0011831124860059632
GO:0045892: negative regulation of transcription, DNA-templated	LEF1	lymphoid enhancer-binding factor 1	-0.0001002886489495772
GO:0045892: negative regulation of transcription, DNA-templated	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.00030794274591630817
GO:0045892: negative regulation of transcription, DNA-templated	LHX1	LIM homeobox 1	-0.000757199167502307
GO:0045892: negative regulation of transcription, DNA-templated	NOTCH1	notch 1	0.0005177525193474505
GO:0045892: negative regulation of transcription, DNA-templated	PAX2	paired box 2	-0.0016108116357009877
GO:0045892: negative regulation of transcription, DNA-templated	PER2	period circadian clock 2	0.0012358609273226844
GO:0045892: negative regulation of transcription, DNA-templated	PHB2	prohibitin 2	-0.0007348650885099741
GO:0045892: negative regulation of transcription, DNA-templated	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001531790128339127
GO:0045892: negative regulation of transcription, DNA-templated	PML	promyelocytic leukemia	-0.0006791444323532431
GO:0045892: negative regulation of transcription, DNA-templated	PROX1	prospero homeobox 1	0.0011191792502334788
GO:0045892: negative regulation of transcription, DNA-templated	PURA	purine-rich element binding protein A	-0.00016995048969449853
GO:0045892: negative regulation of transcription, DNA-templated	RB1	retinoblastoma 1	-0.0014911611868604362
GO:0045892: negative regulation of transcription, DNA-templated	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.000979978886459979
GO:0045892: negative regulation of transcription, DNA-templated	SALL1	spalt-like transcription factor 1	-0.0024318228424323627
GO:0045892: negative regulation of transcription, DNA-templated	SFRP1	secreted frizzled-related protein 1	0.0012780594497327003
GO:0045892: negative regulation of transcription, DNA-templated	SIRT1	sirtuin 1	-1.929106670448838e-6
GO:0045892: negative regulation of transcription, DNA-templated	SIRT2	sirtuin 2	-0.0008505944997300519
GO:0045892: negative regulation of transcription, DNA-templated	SIX3	SIX homeobox 3	0.00203299871522317
GO:0045892: negative regulation of transcription, DNA-templated	SOX10	SRY (sex determining region Y)-box 10	0.0001891290302973603
GO:0045892: negative regulation of transcription, DNA-templated	SOX18	SRY (sex determining region Y)-box 18	0.001286436170074658
GO:0045892: negative regulation of transcription, DNA-templated	SOX9	SRY (sex determining region Y)-box 9	-0.0005176144539026879
GO:0045892: negative regulation of transcription, DNA-templated	TBX3	T-box 3	0.0012245786504059765
GO:0045892: negative regulation of transcription, DNA-templated	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005723457182564314
GO:0045892: negative regulation of transcription, DNA-templated	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00047917332791790176
GO:0045892: negative regulation of transcription, DNA-templated	TGFB1	transforming growth factor, beta 1	-7.275729444127832e-5
GO:0045892: negative regulation of transcription, DNA-templated	THRA	thyroid hormone receptor, alpha	0.0007619017160781878
GO:0045892: negative regulation of transcription, DNA-templated	TP53	tumor protein p53	0.0011729599534958284
GO:0045892: negative regulation of transcription, DNA-templated	TWIST1	twist family bHLH transcription factor 1	-0.0013387171121337445
GO:0045892: negative regulation of transcription, DNA-templated	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.000562819871141773
GO:0045892: negative regulation of transcription, DNA-templated	WNT4	wingless-type MMTV integration site family, member 4	-0.00025106657156398265
GO:0045892: negative regulation of transcription, DNA-templated	WNT5A	wingless-type MMTV integration site family, member 5A	-0.000666078026005567
GO:0045892: negative regulation of transcription, DNA-templated	WT1	Wilms tumor 1	-0.000505715828353918
GO:0045892: negative regulation of transcription, DNA-templated	WWP2	WW domain containing E3 ubiquitin protein ligase 2	-0.0009555623803290936
GO:0045892: negative regulation of transcription, DNA-templated	ZBTB18	zinc finger and BTB domain containing 18	0.0012698825729290392
GO:0045892: negative regulation of transcription, DNA-templated	ZNF148	zinc finger protein 148	0.0021000348961236655
GO:0045892: negative regulation of transcription, DNA-templated	ZNF24	zinc finger protein 24	0.0012894295712332705
GO:0060761: negative regulation of response to cytokine stimulus	AES	amino-terminal enhancer of split	0.0013463150483353043
GO:0070555: response to interleukin-1	AES	amino-terminal enhancer of split	0.001362914370680271
GO:0070555: response to interleukin-1	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002841623051359837
GO:0070555: response to interleukin-1	IGBP1	immunoglobulin (CD79A) binding protein 1	0.0028698158549162107
GO:0070555: response to interleukin-1	IRAK1	interleukin-1 receptor-associated kinase 1	-0.001622894614721152
GO:0070555: response to interleukin-1	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011664804654304977
GO:0070555: response to interleukin-1	PRKCA	protein kinase C, alpha	-6.143989571451952e-6
GO:0070555: response to interleukin-1	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.0027976703073307307
GO:0090090: negative regulation of canonical Wnt signaling pathway	AES	amino-terminal enhancer of split	0.001344629599789903
GO:0090090: negative regulation of canonical Wnt signaling pathway	APC	adenomatous polyposis coli	0.0006405561210755342
GO:0090090: negative regulation of canonical Wnt signaling pathway	AXIN1	axin 1	-0.0007259334725522165
GO:0090090: negative regulation of canonical Wnt signaling pathway	CAV1	caveolin 1, caveolae protein, 22kDa	-0.000532305282418228
GO:0090090: negative regulation of canonical Wnt signaling pathway	CDH2	cadherin 2, type 1, N-cadherin (neuronal)	-0.0006365518356656021
GO:0090090: negative regulation of canonical Wnt signaling pathway	DKK1	dickkopf WNT signaling pathway inhibitor 1	-0.00017965341722346974
GO:0090090: negative regulation of canonical Wnt signaling pathway	EGR1	early growth response 1	0.0010843701458420835
GO:0090090: negative regulation of canonical Wnt signaling pathway	FOXO1	forkhead box O1	0.0017858973853553534
GO:0090090: negative regulation of canonical Wnt signaling pathway	FOXO3	forkhead box O3	0.0011896221452105985
GO:0090090: negative regulation of canonical Wnt signaling pathway	GLI1	GLI family zinc finger 1	-0.0012874867377596442
GO:0090090: negative regulation of canonical Wnt signaling pathway	GLI3	GLI family zinc finger 3	-0.0021327514766360874
GO:0090090: negative regulation of canonical Wnt signaling pathway	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008181393414796466
GO:0090090: negative regulation of canonical Wnt signaling pathway	GSK3B	glycogen synthase kinase 3 beta	0.0015363067664930818
GO:0090090: negative regulation of canonical Wnt signaling pathway	ISL1	ISL LIM homeobox 1	7.974583911044465e-5
GO:0090090: negative regulation of canonical Wnt signaling pathway	LEF1	lymphoid enhancer-binding factor 1	-0.00010044236999972488
GO:0090090: negative regulation of canonical Wnt signaling pathway	LRP6	low density lipoprotein receptor-related protein 6	0.0001482222870848294
GO:0090090: negative regulation of canonical Wnt signaling pathway	NOTCH1	notch 1	0.0005145056565424624
GO:0090090: negative regulation of canonical Wnt signaling pathway	PPP2R3A	protein phosphatase 2, regulatory subunit B'', alpha	-3.4017234566317836e-5
GO:0090090: negative regulation of canonical Wnt signaling pathway	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.00032907316658832087
GO:0090090: negative regulation of canonical Wnt signaling pathway	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.0010879595894439224
GO:0090090: negative regulation of canonical Wnt signaling pathway	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.047868398404931e-5
GO:0090090: negative regulation of canonical Wnt signaling pathway	SFRP1	secreted frizzled-related protein 1	0.0012664764144225055
GO:0090090: negative regulation of canonical Wnt signaling pathway	SHH	sonic hedgehog	0.0005936221018870157
GO:0090090: negative regulation of canonical Wnt signaling pathway	SOSTDC1	sclerostin domain containing 1	-0.0015163835930333243
GO:0090090: negative regulation of canonical Wnt signaling pathway	SOX10	SRY (sex determining region Y)-box 10	0.0001853021654686113
GO:0090090: negative regulation of canonical Wnt signaling pathway	SOX9	SRY (sex determining region Y)-box 9	-0.0005139641789025873
GO:0090090: negative regulation of canonical Wnt signaling pathway	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005681147050651932
GO:0090090: negative regulation of canonical Wnt signaling pathway	WNT4	wingless-type MMTV integration site family, member 4	-0.00024806568642926863
GO:0090090: negative regulation of canonical Wnt signaling pathway	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006616863540872484
GO:0090090: negative regulation of canonical Wnt signaling pathway	WWTR1	WW domain containing transcription regulator 1	0.0008909372223944111
GO:2000210: positive regulation of anoikis	AES	amino-terminal enhancer of split	0.0013463150483353043
GO:0051180: vitamin transport	AFM	afamin	-0.0016939199422974886
GO:0001933: negative regulation of protein phosphorylation	AGER	advanced glycosylation end product-specific receptor	-0.00017358060487045516
GO:0001933: negative regulation of protein phosphorylation	ANGPT1	angiopoietin 1	0.0008942613539592709
GO:0001933: negative regulation of protein phosphorylation	CCNB1	cyclin B1	-0.0008789843383837512
GO:0001933: negative regulation of protein phosphorylation	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.001130476766689401
GO:0001933: negative regulation of protein phosphorylation	CIB1	calcium and integrin binding 1 (calmyrin)	5.769625484162517e-5
GO:0001933: negative regulation of protein phosphorylation	IGFBP3	insulin-like growth factor binding protein 3	0.0008324809561600392
GO:0001933: negative regulation of protein phosphorylation	LRP6	low density lipoprotein receptor-related protein 6	0.0001475907933059751
GO:0001933: negative regulation of protein phosphorylation	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014095478897937033
GO:0001933: negative regulation of protein phosphorylation	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029366596779349213
GO:0001933: negative regulation of protein phosphorylation	PAX6	paired box 6	0.001919329255687809
GO:0001933: negative regulation of protein phosphorylation	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018424092921994436
GO:0001933: negative regulation of protein phosphorylation	PTEN	phosphatase and tensin homolog	1.984896351515497e-5
GO:0001933: negative regulation of protein phosphorylation	SLIT2	slit homolog 2 (Drosophila)	-0.0016053719849884746
GO:0001933: negative regulation of protein phosphorylation	TGFB1	transforming growth factor, beta 1	-7.162701065306357e-5
GO:0001933: negative regulation of protein phosphorylation	WWTR1	WW domain containing transcription regulator 1	0.000889352331997396
GO:0006954: inflammatory response	AGER	advanced glycosylation end product-specific receptor	-0.00017416051933252466
GO:0006954: inflammatory response	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007293226205558226
GO:0006954: inflammatory response	AZU1	azurocidin 1	0.0001977002419233025
GO:0006954: inflammatory response	C3	complement component 3	0.002021493529410979
GO:0006954: inflammatory response	CAMK1D	calcium/calmodulin-dependent protein kinase ID	-0.002583584837867055
GO:0006954: inflammatory response	CCL2	chemokine (C-C motif) ligand 2	0.0008151701822056872
GO:0006954: inflammatory response	CCL7	chemokine (C-C motif) ligand 7	-0.0024000209296410925
GO:0006954: inflammatory response	CCL8	chemokine (C-C motif) ligand 8	-0.0005901406027813145
GO:0006954: inflammatory response	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.00027383613982190477
GO:0006954: inflammatory response	CXCL10	chemokine (C-X-C motif) ligand 10	6.18546325484613e-5
GO:0006954: inflammatory response	CXCL13	chemokine (C-X-C motif) ligand 13	0.002988368130941916
GO:0006954: inflammatory response	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007930653805844548
GO:0006954: inflammatory response	ECM1	extracellular matrix protein 1	-0.0015538446464899176
GO:0006954: inflammatory response	HMGB1	high mobility group box 1	-0.0007758328482250262
GO:0006954: inflammatory response	IFNA2	interferon, alpha 2	-0.0017147744852922709
GO:0006954: inflammatory response	IGFBP4	insulin-like growth factor binding protein 4	-0.0012759153273434406
GO:0006954: inflammatory response	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027329672935830104
GO:0006954: inflammatory response	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011702440917983027
GO:0006954: inflammatory response	LIAS	lipoic acid synthetase	-0.0005533963804851619
GO:0006954: inflammatory response	NFX1	nuclear transcription factor, X-box binding 1	-7.071783108679604e-5
GO:0006954: inflammatory response	ORM1	orosomucoid 1	-0.0004722964838708866
GO:0006954: inflammatory response	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007796206153916812
GO:0006954: inflammatory response	PRKCZ	protein kinase C, zeta	-0.0015985844588706393
GO:0006954: inflammatory response	RXRA	retinoid X receptor, alpha	0.001113596739953144
GO:0006954: inflammatory response	SPHK1	sphingosine kinase 1	0.0018079082150883497
GO:0006954: inflammatory response	TGFB1	transforming growth factor, beta 1	-7.265089659943394e-5
GO:0006954: inflammatory response	THBS1	thrombospondin 1	-0.0010339970738101817
GO:0006954: inflammatory response	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011147675776687195
GO:0006954: inflammatory response	TP73	tumor protein p73	0.001026395025305485
GO:0007166: cell surface receptor signaling pathway	AGER	advanced glycosylation end product-specific receptor	-0.00017473212348881833
GO:0007166: cell surface receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001140948402837924
GO:0007166: cell surface receptor signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.0008207016857744452
GO:0007166: cell surface receptor signaling pathway	CD9	CD9 molecule	-0.0025985720497186987
GO:0007166: cell surface receptor signaling pathway	CXCL10	chemokine (C-X-C motif) ligand 10	6.367702381689467e-5
GO:0007166: cell surface receptor signaling pathway	CXCL13	chemokine (C-X-C motif) ligand 13	0.003008506048786532
GO:0007166: cell surface receptor signaling pathway	EGFR	epidermal growth factor receptor	0.0006904557236067011
GO:0007166: cell surface receptor signaling pathway	EVL	Enah/Vasp-like	0.0019458134711758197
GO:0007166: cell surface receptor signaling pathway	FAS	Fas cell surface death receptor	-3.35125234508947e-5
GO:0007166: cell surface receptor signaling pathway	IFNA2	interferon, alpha 2	-0.0017255790808465058
GO:0007166: cell surface receptor signaling pathway	IFNG	interferon, gamma	-4.8943590677429456e-5
GO:0007166: cell surface receptor signaling pathway	IL27RA	interleukin 27 receptor, alpha	-0.000485823611399738
GO:0007166: cell surface receptor signaling pathway	INHA	inhibin, alpha	0.0002117948921175706
GO:0007166: cell surface receptor signaling pathway	INHBA	inhibin, beta A	-0.00136251394857146
GO:0007166: cell surface receptor signaling pathway	JMJD6	jumonji domain containing 6	0.0036071729847609803
GO:0007166: cell surface receptor signaling pathway	PRLR	prolactin receptor	0.0021934715255802865
GO:0007166: cell surface receptor signaling pathway	TACSTD2	tumor-associated calcium signal transducer 2	-0.002270967381742542
GO:0007166: cell surface receptor signaling pathway	TSPAN6	tetraspanin 6	0.0013747101455425757
GO:0007259: JAK-STAT cascade	AGER	advanced glycosylation end product-specific receptor	-0.000172341741706043
GO:0007259: JAK-STAT cascade	CCL2	chemokine (C-C motif) ligand 2	0.0007961782341408855
GO:0007259: JAK-STAT cascade	FGFR3	fibroblast growth factor receptor 3	0.0002148664894982137
GO:0007259: JAK-STAT cascade	JAK2	Janus kinase 2	-3.807257164588727e-5
GO:0007259: JAK-STAT cascade	STAMBP	STAM binding protein	-0.00016823482695193606
GO:0007259: JAK-STAT cascade	STAT5A	signal transducer and activator of transcription 5A	0.0015624547873845593
GO:0007420: brain development	AGER	advanced glycosylation end product-specific receptor	-0.00017446850428290962
GO:0007420: brain development	APOD	apolipoprotein D	0.0026341666368316268
GO:0007420: brain development	BAK1	BCL2-antagonist/killer 1	-0.0018801523234930591
GO:0007420: brain development	BBS7	Bardet-Biedl syndrome 7	-0.0009791393949996829
GO:0007420: brain development	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007761402150657471
GO:0007420: brain development	BRCA2	breast cancer 2, early onset	-1.0011110254309242e-5
GO:0007420: brain development	CAST	calpastatin	-0.003040365683747042
GO:0007420: brain development	CD9	CD9 molecule	-0.0025917006430470953
GO:0007420: brain development	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011403608568741012
GO:0007420: brain development	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002824766377807454
GO:0007420: brain development	CST3	cystatin C	-7.082053828187317e-5
GO:0007420: brain development	EGR2	early growth response 2	0.001442978107336196
GO:0007420: brain development	FOXC1	forkhead box C1	-2.190496884133549e-5
GO:0007420: brain development	GRHL2	grainyhead-like 2 (Drosophila)	0.0010086452618165895
GO:0007420: brain development	IGF1R	insulin-like growth factor 1 receptor	0.001073753351488752
GO:0007420: brain development	MAP1S	microtubule-associated protein 1S	0.0005311389918535143
GO:0007420: brain development	MAPT	microtubule-associated protein tau	0.0015541305624082933
GO:0007420: brain development	MED1	mediator complex subunit 1	0.0011322471481942742
GO:0007420: brain development	NES	nestin	0.0013775043968719625
GO:0007420: brain development	PHGDH	phosphoglycerate dehydrogenase	0.0002939475576920374
GO:0007420: brain development	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.001859400060288439
GO:0007420: brain development	PROX1	prospero homeobox 1	0.001124256151056211
GO:0007420: brain development	PTCH1	patched 1	-6.575980054019742e-5
GO:0007420: brain development	RELN	reelin	0.001541238104328384
GO:0007420: brain development	SHROOM2	shroom family member 2	0.0011148750556103648
GO:0007420: brain development	SIX3	SIX homeobox 3	0.0020422795242461167
GO:0007420: brain development	SPHK1	sphingosine kinase 1	0.001814880238310092
GO:0007420: brain development	STAR	steroidogenic acute regulatory protein	0.0008967393806491163
GO:0007420: brain development	STMN1	stathmin 1	0.0005610502424353877
GO:0007420: brain development	THRA	thyroid hormone receptor, alpha	0.0007648297005168202
GO:0007420: brain development	TULP3	tubby like protein 3	0.0009584191021333231
GO:0007420: brain development	ZNF335	zinc finger protein 335	-0.00036552832501872797
GO:0009100: glycoprotein metabolic process	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886415
GO:0009750: response to fructose	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886415
GO:0010508: positive regulation of autophagy	AGER	advanced glycosylation end product-specific receptor	-0.00017480707487236733
GO:0010508: positive regulation of autophagy	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029297983611412813
GO:0010508: positive regulation of autophagy	FOXO1	forkhead box O1	0.0018100350428352072
GO:0010508: positive regulation of autophagy	XBP1	X-box binding protein 1	0.0002673288898503278
GO:0010718: positive regulation of epithelial to mesenchymal transition	AGER	advanced glycosylation end product-specific receptor	-0.00017412770780643645
GO:0010718: positive regulation of epithelial to mesenchymal transition	ALX1	ALX homeobox 1	0.0022896753805271286
GO:0010718: positive regulation of epithelial to mesenchymal transition	COL1A1	collagen, type I, alpha 1	-0.0005260914185390755
GO:0010718: positive regulation of epithelial to mesenchymal transition	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011654993116169163
GO:0010718: positive regulation of epithelial to mesenchymal transition	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.000135672209378002
GO:0010718: positive regulation of epithelial to mesenchymal transition	GCNT2	glucosaminyl (N-acetyl) transferase 2, I-branching enzyme (I blood group)	0.002429429356678354
GO:0010718: positive regulation of epithelial to mesenchymal transition	HDAC2	histone deacetylase 2	-0.0012052943575696278
GO:0010718: positive regulation of epithelial to mesenchymal transition	LEF1	lymphoid enhancer-binding factor 1	-0.00010043258594003537
GO:0010718: positive regulation of epithelial to mesenchymal transition	NOTCH1	notch 1	0.0005185453371369047
GO:0010718: positive regulation of epithelial to mesenchymal transition	TGFB1	transforming growth factor, beta 1	-7.313794013420122e-5
GO:0010718: positive regulation of epithelial to mesenchymal transition	TGFB2	transforming growth factor, beta 2	-0.0010581970171750204
GO:0010718: positive regulation of epithelial to mesenchymal transition	TGFB3	transforming growth factor, beta 3	-0.0018222936478021797
GO:0010718: positive regulation of epithelial to mesenchymal transition	TWIST1	twist family bHLH transcription factor 1	-0.0013400894025703233
GO:0010718: positive regulation of epithelial to mesenchymal transition	WWTR1	WW domain containing transcription regulator 1	0.0009000166833594053
GO:0010763: positive regulation of fibroblast migration	AGER	advanced glycosylation end product-specific receptor	-0.00017177467981926528
GO:0010763: positive regulation of fibroblast migration	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007084604504139822
GO:0010763: positive regulation of fibroblast migration	TGFB1	transforming growth factor, beta 1	-6.900388222676306e-5
GO:0010763: positive regulation of fibroblast migration	THBS1	thrombospondin 1	-0.0010069743726467085
GO:0014823: response to activity	AGER	advanced glycosylation end product-specific receptor	-0.00017291152542450695
GO:0014823: response to activity	CCL2	chemokine (C-C motif) ligand 2	0.0008024190714658063
GO:0014823: response to activity	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.0002958420061752993
GO:0014823: response to activity	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018321034931001407
GO:0014823: response to activity	PTN	pleiotrophin	0.00029075271927588584
GO:0014823: response to activity	STAR	steroidogenic acute regulatory protein	0.0008786070466180653
GO:0014823: response to activity	TH	tyrosine hydroxylase	-0.000339160978269231
GO:0014911: positive regulation of smooth muscle cell migration	AGER	advanced glycosylation end product-specific receptor	-0.00016892625099548166
GO:0014911: positive regulation of smooth muscle cell migration	BCL2	B-cell CLL/lymphoma 2	-6.2535302081431035e-6
GO:0014911: positive regulation of smooth muscle cell migration	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001165659189234085
GO:0014911: positive regulation of smooth muscle cell migration	NRP1	neuropilin 1	-0.0006070586606722711
GO:0014911: positive regulation of smooth muscle cell migration	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00033108739397606237
GO:0030324: lung development	AGER	advanced glycosylation end product-specific receptor	-0.00017443942649393208
GO:0030324: lung development	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.00302381046331798
GO:0030324: lung development	DICER1	dicer 1, ribonuclease type III	-1.5985082876827786e-5
GO:0030324: lung development	FGFR2	fibroblast growth factor receptor 2	0.0007644304721028299
GO:0030324: lung development	GLI1	GLI family zinc finger 1	-0.0012985894525954199
GO:0030324: lung development	GLI2	GLI family zinc finger 2	0.0018565882658731474
GO:0030324: lung development	GLI3	GLI family zinc finger 3	-0.0021548768134108712
GO:0030324: lung development	HES1	hes family bHLH transcription factor 1	-0.0009123871332894154
GO:0030324: lung development	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.001402227817880689
GO:0030324: lung development	JMJD6	jumonji domain containing 6	0.0035962538803079075
GO:0030324: lung development	LOX	lysyl oxidase	-0.0005774279246892743
GO:0030324: lung development	NOTCH1	notch 1	0.000519432642496605
GO:0030324: lung development	PROX1	prospero homeobox 1	0.0011233759559207202
GO:0030324: lung development	PTN	pleiotrophin	0.00030253182270621634
GO:0030324: lung development	SHH	sonic hedgehog	0.000601079743806589
GO:0030324: lung development	STRA6	stimulated by retinoic acid 6	-0.001683118619888543
GO:0030324: lung development	TMBIM6	transmembrane BAX inhibitor motif containing 6	-0.00014760836380781393
GO:0030324: lung development	VEGFA	vascular endothelial growth factor A	0.000595900729728088
GO:0030324: lung development	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006684151812011537
GO:0031175: neuron projection development	AGER	advanced glycosylation end product-specific receptor	-0.00017444118644246637
GO:0031175: neuron projection development	AREG	amphiregulin	0.002460118829753564
GO:0031175: neuron projection development	GDNF	glial cell derived neurotrophic factor	0.00044549446832151335
GO:0031175: neuron projection development	HMGB1	high mobility group box 1	-0.0007779385934992564
GO:0031175: neuron projection development	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014223060883479435
GO:0031175: neuron projection development	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.002266197344863409
GO:0031175: neuron projection development	PHGDH	phosphoglycerate dehydrogenase	0.00029135468481888613
GO:0031175: neuron projection development	RB1	retinoblastoma 1	-0.0014955249723514234
GO:0031175: neuron projection development	STMN1	stathmin 1	0.0005586829782879245
GO:0031175: neuron projection development	STMN2	stathmin 2	-0.0019494785260562404
GO:0031175: neuron projection development	STMN3	stathmin-like 3	0.0025934341869785103
GO:0031175: neuron projection development	STMN4	stathmin-like 4	0.0003485622681119767
GO:0032966: negative regulation of collagen biosynthetic process	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886415
GO:0033189: response to vitamin A	AGER	advanced glycosylation end product-specific receptor	-0.00017482761798466028
GO:0033189: response to vitamin A	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030371512431999165
GO:0033189: response to vitamin A	GATA4	GATA binding protein 4	-0.001101936753420912
GO:0033189: response to vitamin A	PITX2	paired-like homeodomain 2	0.0021901196203252256
GO:0033189: response to vitamin A	RXRA	retinoid X receptor, alpha	0.0011218503108525503
GO:0033189: response to vitamin A	TYMS	thymidylate synthetase	0.0015738413411606836
GO:0033595: response to genistein	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886415
GO:0033689: negative regulation of osteoblast proliferation	AGER	advanced glycosylation end product-specific receptor	-0.00017376064785373042
GO:0033689: negative regulation of osteoblast proliferation	BCL2	B-cell CLL/lymphoma 2	-5.531878170583709e-6
GO:0033689: negative regulation of osteoblast proliferation	GREM1	gremlin 1, DAN family BMP antagonist	-0.00082541900778904
GO:0033689: negative regulation of osteoblast proliferation	NELL1	NEL-like 1 (chicken)	0.001528246646504543
GO:0033689: negative regulation of osteoblast proliferation	SFRP1	secreted frizzled-related protein 1	0.0012792945079847491
GO:0035690: cellular response to drug	AGER	advanced glycosylation end product-specific receptor	-0.00017404904762181105
GO:0035690: cellular response to drug	CCL2	chemokine (C-C motif) ligand 2	0.0008138434299684035
GO:0035690: cellular response to drug	EGR1	early growth response 1	0.001090024476089523
GO:0035690: cellular response to drug	KCNE2	potassium voltage-gated channel, Isk-related family, member 2	-0.0005740932946616278
GO:0035690: cellular response to drug	MEF2C	myocyte enhancer factor 2C	0.0009698909105021102
GO:0035690: cellular response to drug	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011344313889561496
GO:0035690: cellular response to drug	QDPR	quinoid dihydropteridine reductase	-0.0028475046788878407
GO:0035690: cellular response to drug	TFRC	transferrin receptor	0.001081740301690953
GO:0035690: cellular response to drug	TH	tyrosine hydroxylase	-0.0003415885475994224
GO:0035690: cellular response to drug	TP53	tumor protein p53	0.0011707613367156176
GO:0043507: positive regulation of JUN kinase activity	AGER	advanced glycosylation end product-specific receptor	-0.00017483046779262425
GO:0043507: positive regulation of JUN kinase activity	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.00034513897915360785
GO:0043507: positive regulation of JUN kinase activity	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0022036882015784493
GO:0043507: positive regulation of JUN kinase activity	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.0027958343078884366
GO:0043525: positive regulation of neuron apoptotic process	AGER	advanced glycosylation end product-specific receptor	-0.00017316224415798748
GO:0043525: positive regulation of neuron apoptotic process	ASCL1	achaete-scute family bHLH transcription factor 1	-0.0014125259486000288
GO:0043525: positive regulation of neuron apoptotic process	BAX	BCL2-associated X protein	-0.00042247701907483404
GO:0043525: positive regulation of neuron apoptotic process	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007689878285913828
GO:0043525: positive regulation of neuron apoptotic process	CDC34	cell division cycle 34	-0.00016003391003193684
GO:0043525: positive regulation of neuron apoptotic process	CDC42	cell division cycle 42	0.001225843617413236
GO:0043525: positive regulation of neuron apoptotic process	EGR1	early growth response 1	0.0010810191041238104
GO:0043525: positive regulation of neuron apoptotic process	FGFR3	fibroblast growth factor receptor 3	0.00021964963809514138
GO:0043525: positive regulation of neuron apoptotic process	FOXO3	forkhead box O3	0.001184820023921314
GO:0043525: positive regulation of neuron apoptotic process	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.00023169200191268334
GO:0043525: positive regulation of neuron apoptotic process	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.0012475001292670779
GO:0043525: positive regulation of neuron apoptotic process	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.0004763184137753914
GO:0043525: positive regulation of neuron apoptotic process	TGFB2	transforming growth factor, beta 2	-0.0010453288708284095
GO:0043525: positive regulation of neuron apoptotic process	TP53	tumor protein p53	0.0011571306736293347
GO:0048146: positive regulation of fibroblast proliferation	AGER	advanced glycosylation end product-specific receptor	-0.0001737589078074863
GO:0048146: positive regulation of fibroblast proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011236518161791577
GO:0048146: positive regulation of fibroblast proliferation	CCNB1	cyclin B1	-0.0008795881028420066
GO:0048146: positive regulation of fibroblast proliferation	E2F1	E2F transcription factor 1	0.0020851488695950425
GO:0048146: positive regulation of fibroblast proliferation	EGFR	epidermal growth factor receptor	0.0006800807786013379
GO:0048146: positive regulation of fibroblast proliferation	ESR1	estrogen receptor 1	-0.0009415233693240736
GO:0048146: positive regulation of fibroblast proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012893953284377695
GO:0048146: positive regulation of fibroblast proliferation	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011312139237075823
GO:0048146: positive regulation of fibroblast proliferation	PML	promyelocytic leukemia	-0.0006776744080157948
GO:0048146: positive regulation of fibroblast proliferation	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018460968198891936
GO:0048146: positive regulation of fibroblast proliferation	RNASEH2B	ribonuclease H2, subunit B	-4.266250341677256e-5
GO:0048146: positive regulation of fibroblast proliferation	SPHK1	sphingosine kinase 1	0.0018002259895043599
GO:0048146: positive regulation of fibroblast proliferation	TGFB1	transforming growth factor, beta 1	-7.21400493849188e-5
GO:0048146: positive regulation of fibroblast proliferation	WNT1	wingless-type MMTV integration site family, member 1	0.0007827611742660041
GO:0048146: positive regulation of fibroblast proliferation	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006631535226664454
GO:0048661: positive regulation of smooth muscle cell proliferation	AGER	advanced glycosylation end product-specific receptor	-0.00017361690863334616
GO:0048661: positive regulation of smooth muscle cell proliferation	ALOX12	arachidonate 12-lipoxygenase	-0.0019405398748443714
GO:0048661: positive regulation of smooth muscle cell proliferation	BMP4	bone morphogenetic protein 4	-0.0003204751497244803
GO:0048661: positive regulation of smooth muscle cell proliferation	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.002100798079705573
GO:0048661: positive regulation of smooth muscle cell proliferation	FGFR2	fibroblast growth factor receptor 2	0.00075776608380576
GO:0048661: positive regulation of smooth muscle cell proliferation	HMOX1	heme oxygenase (decycling) 1	-0.00021587041829301994
GO:0048661: positive regulation of smooth muscle cell proliferation	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.034193068601444e-5
GO:0048661: positive regulation of smooth muscle cell proliferation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012889561004382206
GO:0048661: positive regulation of smooth muscle cell proliferation	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0015978646104060357
GO:0048661: positive regulation of smooth muscle cell proliferation	ORC1	origin recognition complex, subunit 1	-0.0007351319920685375
GO:0048661: positive regulation of smooth muscle cell proliferation	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00035670154597099596
GO:0048661: positive regulation of smooth muscle cell proliferation	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006549047756364496
GO:0048661: positive regulation of smooth muscle cell proliferation	SKP2	S-phase kinase-associated protein 2, E3 ubiquitin protein ligase	-0.0005360494011624169
GO:0050729: positive regulation of inflammatory response	AGER	advanced glycosylation end product-specific receptor	-0.00017368653090787863
GO:0050729: positive regulation of inflammatory response	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011252073986677223
GO:0050729: positive regulation of inflammatory response	AGTR1	angiotensin II receptor, type 1	0.0003474740820156129
GO:0050729: positive regulation of inflammatory response	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.0021041179405726623
GO:0050729: positive regulation of inflammatory response	IL12B	interleukin 12B	0.0012714695973251734
GO:0050729: positive regulation of inflammatory response	JAK2	Janus kinase 2	-3.257799514377629e-5
GO:0050729: positive regulation of inflammatory response	PRKCA	protein kinase C, alpha	-5.925663619042928e-6
GO:0050729: positive regulation of inflammatory response	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011261607376992458
GO:0050729: positive regulation of inflammatory response	STAT5A	signal transducer and activator of transcription 5A	0.001588238638304995
GO:0050729: positive regulation of inflammatory response	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006636463894865772
GO:0050930: induction of positive chemotaxis	AGER	advanced glycosylation end product-specific receptor	-0.0001744705746370809
GO:0050930: induction of positive chemotaxis	AZU1	azurocidin 1	0.00019835981167533619
GO:0050930: induction of positive chemotaxis	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012109384003218438
GO:0050930: induction of positive chemotaxis	PRKCA	protein kinase C, alpha	-5.875526875742694e-6
GO:0050930: induction of positive chemotaxis	VEGFA	vascular endothelial growth factor A	0.0005965945992619952
GO:0050930: induction of positive chemotaxis	VEGFC	vascular endothelial growth factor C	-0.0033707730129195765
GO:0051092: positive regulation of NF-kappaB transcription factor activity	AGER	advanced glycosylation end product-specific receptor	-0.00017432335669368253
GO:0051092: positive regulation of NF-kappaB transcription factor activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011337690988374243
GO:0051092: positive regulation of NF-kappaB transcription factor activity	AR	androgen receptor	0.002640686880619494
GO:0051092: positive regulation of NF-kappaB transcription factor activity	CIB1	calcium and integrin binding 1 (calmyrin)	5.5042442386581915e-5
GO:0051092: positive regulation of NF-kappaB transcription factor activity	CLOCK	clock circadian regulator	0.00020029395010825267
GO:0051092: positive regulation of NF-kappaB transcription factor activity	CTH	cystathionine gamma-lyase	0.0017494893888893995
GO:0051092: positive regulation of NF-kappaB transcription factor activity	EDA	ectodysplasin A	-0.0008150419386035184
GO:0051092: positive regulation of NF-kappaB transcription factor activity	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008278792419378843
GO:0051092: positive regulation of NF-kappaB transcription factor activity	ICAM1	intercellular adhesion molecule 1	0.0007295545166121157
GO:0051092: positive regulation of NF-kappaB transcription factor activity	IRAK1	interleukin-1 receptor-associated kinase 1	-0.001610292102245564
GO:0051092: positive regulation of NF-kappaB transcription factor activity	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011687984728779956
GO:0051092: positive regulation of NF-kappaB transcription factor activity	PRKCZ	protein kinase C, zeta	-0.001601959442858893
GO:0051092: positive regulation of NF-kappaB transcription factor activity	SPHK1	sphingosine kinase 1	0.001811821086001211
GO:0051092: positive regulation of NF-kappaB transcription factor activity	TGFB1	transforming growth factor, beta 1	-7.288180145474257e-5
GO:0051092: positive regulation of NF-kappaB transcription factor activity	TNFRSF11A	tumor necrosis factor receptor superfamily, member 11a, NFKB activator	0.002777704844494479
GO:0051092: positive regulation of NF-kappaB transcription factor activity	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006677078796261202
GO:0051101: regulation of DNA binding	AGER	advanced glycosylation end product-specific receptor	-0.00017282634813972492
GO:0051101: regulation of DNA binding	CSNK2B	casein kinase 2, beta polypeptide	0.0015049502358291907
GO:0051101: regulation of DNA binding	HJURP	Holliday junction recognition protein	-7.69283800500539e-5
GO:0051101: regulation of DNA binding	TGFB1	transforming growth factor, beta 1	-7.144391121537724e-5
GO:0051595: response to methylglyoxal	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886415
GO:0055074: calcium ion homeostasis	AGER	advanced glycosylation end product-specific receptor	-0.00017381943443857043
GO:0055074: calcium ion homeostasis	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005338583631218383
GO:0055074: calcium ion homeostasis	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.0004686574635031665
GO:0055074: calcium ion homeostasis	S100A14	S100 calcium binding protein A14	-0.0021505132543200908
GO:0055074: calcium ion homeostasis	WFS1	Wolfram syndrome 1 (wolframin)	0.0005753734761084317
GO:0055093: response to hyperoxia	AGER	advanced glycosylation end product-specific receptor	-0.0001744937618179712
GO:0055093: response to hyperoxia	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029210754344249153
GO:0055093: response to hyperoxia	COL1A1	collagen, type I, alpha 1	-0.0005294384627999855
GO:0055093: response to hyperoxia	HDAC2	histone deacetylase 2	-0.0012086430895868056
GO:0055093: response to hyperoxia	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036376425484009497
GO:0060100: positive regulation of phagocytosis, engulfment	AGER	advanced glycosylation end product-specific receptor	-0.00017437269042957552
GO:0060100: positive regulation of phagocytosis, engulfment	GATA2	GATA binding protein 2	-0.0004513906883960617
GO:0060100: positive regulation of phagocytosis, engulfment	STAP1	signal transducing adaptor family member 1	0.00244564877336297
GO:0060290: transdifferentiation	AGER	advanced glycosylation end product-specific receptor	-0.0001718688689624252
GO:0060290: transdifferentiation	GATA4	GATA binding protein 4	-0.001065068360554505
GO:0060290: transdifferentiation	PDX1	pancreatic and duodenal homeobox 1	0.00024676608728110676
GO:0070301: cellular response to hydrogen peroxide	AGER	advanced glycosylation end product-specific receptor	-0.00017398449921313607
GO:0070301: cellular response to hydrogen peroxide	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.00290176859723207
GO:0070301: cellular response to hydrogen peroxide	CST3	cystatin C	-6.895543295744783e-5
GO:0070301: cellular response to hydrogen peroxide	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003967770016374729
GO:0070301: cellular response to hydrogen peroxide	ECT2	epithelial cell transforming 2	0.0010582300901999433
GO:0070301: cellular response to hydrogen peroxide	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013681638465076697
GO:0070301: cellular response to hydrogen peroxide	HDAC2	histone deacetylase 2	-0.0012039100219929334
GO:0070301: cellular response to hydrogen peroxide	KLF2	Kruppel-like factor 2	-0.0012287365066860787
GO:0070301: cellular response to hydrogen peroxide	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.0003410789784105755
GO:0070301: cellular response to hydrogen peroxide	PAX2	paired box 2	-0.001607723892580603
GO:0070301: cellular response to hydrogen peroxide	SIRT1	sirtuin 1	-2.3537799167040527e-6
GO:0070301: cellular response to hydrogen peroxide	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011126139106054412
GO:0071333: cellular response to glucose stimulus	AGER	advanced glycosylation end product-specific receptor	-0.00017279936772989388
GO:0071333: cellular response to glucose stimulus	GATA4	GATA binding protein 4	-0.0010778050662791766
GO:0071333: cellular response to glucose stimulus	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.00023142460422644496
GO:0071333: cellular response to glucose stimulus	ICAM1	intercellular adhesion molecule 1	0.0007224109980621388
GO:0071333: cellular response to glucose stimulus	PAX2	paired box 2	-0.0015880765090634653
GO:0071333: cellular response to glucose stimulus	PDK3	pyruvate dehydrogenase kinase, isozyme 3	0.0007545067307062336
GO:0071333: cellular response to glucose stimulus	SOX4	SRY (sex determining region Y)-box 4	-4.0989990021899364e-5
GO:0071333: cellular response to glucose stimulus	STAR	steroidogenic acute regulatory protein	0.0008794869527143408
GO:0071333: cellular response to glucose stimulus	TH	tyrosine hydroxylase	-0.0003388087754680805
GO:0071333: cellular response to glucose stimulus	XBP1	X-box binding protein 1	0.00026540600671913327
GO:0071398: cellular response to fatty acid	AGER	advanced glycosylation end product-specific receptor	-0.00017403648752573972
GO:0071398: cellular response to fatty acid	CCNB1	cyclin B1	-0.0008811124135056451
GO:0071398: cellular response to fatty acid	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012703301162785697
GO:0071398: cellular response to fatty acid	E2F1	E2F transcription factor 1	0.0020919373161603742
GO:0071398: cellular response to fatty acid	PDK3	pyruvate dehydrogenase kinase, isozyme 3	0.0007692072096432323
GO:0071407: cellular response to organic cyclic compound	AGER	advanced glycosylation end product-specific receptor	-0.00017355911864847437
GO:0071407: cellular response to organic cyclic compound	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007233967173948212
GO:0071407: cellular response to organic cyclic compound	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006222397836267631
GO:0071407: cellular response to organic cyclic compound	AXIN1	axin 1	-0.0007244654666458464
GO:0071407: cellular response to organic cyclic compound	CCL2	chemokine (C-C motif) ligand 2	0.0008079755974389152
GO:0071407: cellular response to organic cyclic compound	CCNB1	cyclin B1	-0.0008807212614018305
GO:0071407: cellular response to organic cyclic compound	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039486470563334183
GO:0071407: cellular response to organic cyclic compound	GLI2	GLI family zinc finger 2	0.0018375816077707459
GO:0071407: cellular response to organic cyclic compound	MGMT	O-6-methylguanine-DNA methyltransferase	0.00040810796283312546
GO:0071407: cellular response to organic cyclic compound	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0021684321580586093
GO:0071407: cellular response to organic cyclic compound	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.0012506631005173511
GO:0071407: cellular response to organic cyclic compound	TGFB1	transforming growth factor, beta 1	-7.08730989928488e-5
GO:0072657: protein localization to membrane	AGER	advanced glycosylation end product-specific receptor	-0.00017484498155257284
GO:0072657: protein localization to membrane	CPE	carboxypeptidase E	-0.002559902518296101
GO:0072714: response to selenite ion	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886415
GO:1901018: positive regulation of potassium ion transmembrane transporter activity	AGER	advanced glycosylation end product-specific receptor	-0.00017284645634956528
GO:1901018: positive regulation of potassium ion transmembrane transporter activity	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0014828321350051446
GO:2000353: positive regulation of endothelial cell apoptotic process	AGER	advanced glycosylation end product-specific receptor	-0.00017100918134362427
GO:2000353: positive regulation of endothelial cell apoptotic process	BMP4	bone morphogenetic protein 4	-0.0003112667840613703
GO:2000353: positive regulation of endothelial cell apoptotic process	THBS1	thrombospondin 1	-0.000998148501082753
GO:2000353: positive regulation of endothelial cell apoptotic process	XBP1	X-box binding protein 1	0.00026196720470203884
GO:2000379: positive regulation of reactive oxygen species metabolic process	AGER	advanced glycosylation end product-specific receptor	-0.0001744571595647961
GO:2000379: positive regulation of reactive oxygen species metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011398484349049044
GO:2000379: positive regulation of reactive oxygen species metabolic process	AGTR1	angiotensin II receptor, type 1	0.0003468076530572347
GO:2000379: positive regulation of reactive oxygen species metabolic process	GRB2	growth factor receptor-bound protein 2	0.00043099356827873105
GO:2000379: positive regulation of reactive oxygen species metabolic process	LEP	leptin	0.0032042520517062507
GO:2000379: positive regulation of reactive oxygen species metabolic process	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003644626908305292
GO:2000379: positive regulation of reactive oxygen species metabolic process	THBS1	thrombospondin 1	-0.0010398131143783797
GO:2000379: positive regulation of reactive oxygen species metabolic process	TP53	tumor protein p53	0.0011816822614750901
GO:2000676: positive regulation of type B pancreatic cell apoptotic process	AGER	advanced glycosylation end product-specific receptor	-0.00014834649160886415
GO:0010628: positive regulation of gene expression	AGR2	anterior gradient 2	0.0016310258540125505
GO:0010628: positive regulation of gene expression	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.0030214035597184888
GO:0010628: positive regulation of gene expression	ALOX12	arachidonate 12-lipoxygenase	-0.0019549918846050434
GO:0010628: positive regulation of gene expression	ANK3	ankyrin 3, node of Ranvier (ankyrin G)	0.0007006326936388544
GO:0010628: positive regulation of gene expression	AR	androgen receptor	0.002641307027378681
GO:0010628: positive regulation of gene expression	AVP	arginine vasopressin	-0.0009377555621954946
GO:0010628: positive regulation of gene expression	AZU1	azurocidin 1	0.00019825339451055334
GO:0010628: positive regulation of gene expression	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005358314464250328
GO:0010628: positive regulation of gene expression	CDC42	cell division cycle 42	0.0012414180909225774
GO:0010628: positive regulation of gene expression	CDH3	cadherin 3, type 1, P-cadherin (placental)	-0.0012325089245543424
GO:0010628: positive regulation of gene expression	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.002820644403418464
GO:0010628: positive regulation of gene expression	DICER1	dicer 1, ribonuclease type III	-1.5939035530301192e-5
GO:0010628: positive regulation of gene expression	E2F1	E2F transcription factor 1	0.002098926028093333
GO:0010628: positive regulation of gene expression	FGF8	fibroblast growth factor 8 (androgen-induced)	0.000984587459185798
GO:0010628: positive regulation of gene expression	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016104021761663865
GO:0010628: positive regulation of gene expression	HINFP	histone H4 transcription factor	0.0009927224392016236
GO:0010628: positive regulation of gene expression	HMGA2	high mobility group AT-hook 2	0.001510370069653839
GO:0010628: positive regulation of gene expression	HPN	hepsin	0.0031614623473557807
GO:0010628: positive regulation of gene expression	ID2	inhibitor of DNA binding 2, dominant negative helix-loop-helix protein	6.01873104352623e-5
GO:0010628: positive regulation of gene expression	IFNG	interferon, gamma	-4.904218204604571e-5
GO:0010628: positive regulation of gene expression	INHBA	inhibin, beta A	-0.0013537125209557633
GO:0010628: positive regulation of gene expression	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.001401477696653707
GO:0010628: positive regulation of gene expression	LEF1	lymphoid enhancer-binding factor 1	-0.00010009965043653988
GO:0010628: positive regulation of gene expression	MED1	mediator complex subunit 1	0.0011297923713243702
GO:0010628: positive regulation of gene expression	MEF2C	myocyte enhancer factor 2C	0.0009740408352369694
GO:0010628: positive regulation of gene expression	PAX6	paired box 6	0.0019366682096019548
GO:0010628: positive regulation of gene expression	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007814128934088679
GO:0010628: positive regulation of gene expression	SMO	smoothened, frizzled class receptor	0.002140706813498219
GO:0010628: positive regulation of gene expression	SOX11	SRY (sex determining region Y)-box 11	-0.00021004944823715377
GO:0010628: positive regulation of gene expression	STAP1	signal transducing adaptor family member 1	0.0024454884414603626
GO:0010628: positive regulation of gene expression	STAR	steroidogenic acute regulatory protein	0.0008950555723609029
GO:0010628: positive regulation of gene expression	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00048047176610611453
GO:0010628: positive regulation of gene expression	TGFB1	transforming growth factor, beta 1	-7.277166689019995e-5
GO:0010628: positive regulation of gene expression	TGFB2	transforming growth factor, beta 2	-0.001060160127169235
GO:0010628: positive regulation of gene expression	TGFBR1	transforming growth factor, beta receptor 1	0.0003400085653103005
GO:0010628: positive regulation of gene expression	TNC	tenascin C	0.0007351709405452432
GO:0010628: positive regulation of gene expression	TP53	tumor protein p53	0.0011762529207385664
GO:0010628: positive regulation of gene expression	TWIST1	twist family bHLH transcription factor 1	-0.0013424544095350138
GO:0010628: positive regulation of gene expression	VDR	vitamin D (1,25- dihydroxyvitamin D3) receptor	0.0005641977550405359
GO:0010628: positive regulation of gene expression	VEGFA	vascular endothelial growth factor A	0.0005948186584939898
GO:0010628: positive regulation of gene expression	ZPR1	ZPR1 zinc finger	-0.0002100850547252754
GO:0010811: positive regulation of cell-substrate adhesion	AGR2	anterior gradient 2	0.00161605940672248
GO:0010811: positive regulation of cell-substrate adhesion	EGFL6	EGF-like-domain, multiple 6	0.00013387785099819056
GO:0010811: positive regulation of cell-substrate adhesion	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0013851329370988387
GO:0010811: positive regulation of cell-substrate adhesion	JAK2	Janus kinase 2	-3.541443613321721e-5
GO:0010811: positive regulation of cell-substrate adhesion	PTN	pleiotrophin	0.00029182850013118435
GO:0010811: positive regulation of cell-substrate adhesion	THBS1	thrombospondin 1	-0.0010220888368528103
GO:0045742: positive regulation of epidermal growth factor receptor signaling pathway	AGR2	anterior gradient 2	0.0016287095961735924
GO:0045742: positive regulation of epidermal growth factor receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011385117083971212
GO:0048546: digestive tract morphogenesis	AGR2	anterior gradient 2	0.0016204944302982802
GO:0048546: digestive tract morphogenesis	BBS7	Bardet-Biedl syndrome 7	-0.0009711614268199314
GO:0048546: digestive tract morphogenesis	BCL2	B-cell CLL/lymphoma 2	-5.614563355390728e-6
GO:0048546: digestive tract morphogenesis	EGFR	epidermal growth factor receptor	0.0006825754042497428
GO:0048546: digestive tract morphogenesis	EPHB3	EPH receptor B3	0.0008813007896211691
GO:0048546: digestive tract morphogenesis	FGFR3	fibroblast growth factor receptor 3	0.00022079933406833196
GO:0048546: digestive tract morphogenesis	GLI1	GLI family zinc finger 1	-0.0012917663020571226
GO:0048546: digestive tract morphogenesis	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006434311090543015
GO:0048546: digestive tract morphogenesis	SFRP1	secreted frizzled-related protein 1	0.0012754926175704382
GO:0048546: digestive tract morphogenesis	SOX10	SRY (sex determining region Y)-box 10	0.00018939330145281613
GO:0048546: digestive tract morphogenesis	STRA6	stimulated by retinoic acid 6	-0.001672998914703113
GO:0048546: digestive tract morphogenesis	STX2	syntaxin 2	0.0003062489153723766
GO:0048546: digestive tract morphogenesis	TP73	tumor protein p73	0.0010229919354482915
GO:0048639: positive regulation of developmental growth	AGR2	anterior gradient 2	0.001637915018435805
GO:0048639: positive regulation of developmental growth	C3	complement component 3	0.0020417287878284718
GO:0048639: positive regulation of developmental growth	INSR	insulin receptor	-0.0013755111282643963
GO:0048639: positive regulation of developmental growth	LEP	leptin	0.0032210207512611147
GO:0048639: positive regulation of developmental growth	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015698768375104608
GO:0048639: positive regulation of developmental growth	PRKDC	protein kinase, DNA-activated, catalytic polypeptide	-0.0018694495197106365
GO:0060480: lung goblet cell differentiation	AGR2	anterior gradient 2	0.0016381287197342286
GO:0060480: lung goblet cell differentiation	HOXA5	homeobox A5	0.0010735335675550145
GO:0060480: lung goblet cell differentiation	SPDEF	SAM pointed domain containing ETS transcription factor	0.0031559374562677043
GO:0060548: negative regulation of cell death	AGR2	anterior gradient 2	0.0015923902205138096
GO:0060548: negative regulation of cell death	BMP4	bone morphogenetic protein 4	-0.0003125633803041753
GO:0060548: negative regulation of cell death	BMP7	bone morphogenetic protein 7	0.0008343654848161873
GO:0060548: negative regulation of cell death	CST3	cystatin C	-5.692310563403824e-5
GO:0060548: negative regulation of cell death	MGMT	O-6-methylguanine-DNA methyltransferase	0.0004086293854645372
GO:0060548: negative regulation of cell death	NCK1	NCK adaptor protein 1	-0.0007719424766182611
GO:0060548: negative regulation of cell death	SOX11	SRY (sex determining region Y)-box 11	-0.00021052977470417659
GO:0060548: negative regulation of cell death	SOX4	SRY (sex determining region Y)-box 4	-4.63571517620397e-5
GO:0070254: mucus secretion	AGR2	anterior gradient 2	0.0016165599671771641
GO:0070254: mucus secretion	VAMP8	vesicle-associated membrane protein 8	-5.739824683197596e-5
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	AGR2	anterior gradient 2	0.0016314391645785957
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007330372891685904
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	CIB1	calcium and integrin binding 1 (calmyrin)	5.371600698006668e-5
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.00140338412056467
GO:0090004: positive regulation of establishment of protein localization to plasma membrane	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002434774046461785
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	AGR2	anterior gradient 2	0.0016261012102319816
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	BAK1	BCL2-antagonist/killer 1	-0.001867430370060812
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	BAX	BCL2-associated X protein	-0.00042453229102661875
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007730341545850334
GO:1903896: positive regulation of IRE1-mediated unfolded protein response	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.0010358127098714788
GO:1903899: positive regulation of PERK-mediated unfolded protein response	AGR2	anterior gradient 2	0.001615409903912476
GO:1903899: positive regulation of PERK-mediated unfolded protein response	PTPN2	protein tyrosine phosphatase, non-receptor type 2	-0.00032766327631981367
KEGG:04920: Adipocytokine signaling pathway	AGRP	agouti related protein homolog (mouse)	-0.0025845829348576095
KEGG:04920: Adipocytokine signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007355932430650508
KEGG:04920: Adipocytokine signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006290229838738281
KEGG:04920: Adipocytokine signaling pathway	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.001278522340571779
KEGG:04920: Adipocytokine signaling pathway	JAK2	Janus kinase 2	-3.113227062993065e-5
KEGG:04920: Adipocytokine signaling pathway	LEP	leptin	0.0032118289187881366
KEGG:04920: Adipocytokine signaling pathway	RXRA	retinoid X receptor, alpha	0.0011217176846465625
GO:0007218: neuropeptide signaling pathway	AGRP	agouti related protein homolog (mouse)	-0.0025980799544318947
GO:0007218: neuropeptide signaling pathway	CPE	carboxypeptidase E	-0.0025727351448356552
GO:0007218: neuropeptide signaling pathway	NMU	neuromedin U	0.0018733421957252024
GO:0007623: circadian rhythm	AGRP	agouti related protein homolog (mouse)	-0.0025814852074817173
GO:0007623: circadian rhythm	ATF5	activating transcription factor 5	-0.0027469170643408215
GO:0007623: circadian rhythm	AVP	arginine vasopressin	-0.0009420770898513261
GO:0007623: circadian rhythm	CLOCK	clock circadian regulator	0.00019997548570510742
GO:0007623: circadian rhythm	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012770387922196999
GO:0007623: circadian rhythm	CREB1	cAMP responsive element binding protein 1	0.0006623944954809945
GO:0007623: circadian rhythm	DRD4	dopamine receptor D4	-0.0019527946500199065
GO:0007623: circadian rhythm	EGR1	early growth response 1	0.001097860031630588
GO:0007623: circadian rhythm	FAS	Fas cell surface death receptor	-3.3604114984690666e-5
GO:0007623: circadian rhythm	GSK3B	glycogen synthase kinase 3 beta	0.0015561253915316105
GO:0007623: circadian rhythm	LEP	leptin	0.003207028097573989
GO:0007623: circadian rhythm	NRIP1	nuclear receptor interacting protein 1	0.0010756727878886594
GO:0007623: circadian rhythm	PER2	period circadian clock 2	0.0012439650648792555
GO:0007623: circadian rhythm	PROX1	prospero homeobox 1	0.001126948966941315
GO:0007623: circadian rhythm	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011194746317624239
GO:0007623: circadian rhythm	TYMS	thymidylate synthetase	0.0015696074884617003
GO:0007631: feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.002576312040367614
GO:0007631: feeding behavior	DRD2	dopamine receptor D2	-0.0002343580740898576
GO:0007631: feeding behavior	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005261961742939731
GO:0007631: feeding behavior	STRA6	stimulated by retinoic acid 6	-0.0016843392582535418
GO:0008343: adult feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.002606870165580467
GO:0008343: adult feeding behavior	LEP	leptin	0.0032441430554579808
GO:0009648: photoperiodism	AGRP	agouti related protein homolog (mouse)	-0.0025868273977543554
GO:0009648: photoperiodism	CLOCK	clock circadian regulator	0.00019957366041762514
GO:0009648: photoperiodism	DRD4	dopamine receptor D4	-0.0019562601533895537
GO:0009648: photoperiodism	NMU	neuromedin U	0.0018635970788099961
GO:0009755: hormone-mediated signaling pathway	AGRP	agouti related protein homolog (mouse)	-0.0025752002813014103
GO:0009755: hormone-mediated signaling pathway	JAK2	Janus kinase 2	-3.209043029876434e-5
GO:0009755: hormone-mediated signaling pathway	THRA	thyroid hormone receptor, alpha	0.0007650744811826134
GO:0042755: eating behavior	AGRP	agouti related protein homolog (mouse)	-0.002594858428084233
GO:0042755: eating behavior	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.0012815928713301441
GO:0042755: eating behavior	LEP	leptin	0.0032263055093409328
GO:0042755: eating behavior	NMU	neuromedin U	0.0018697811514943202
GO:0042755: eating behavior	TCF15	transcription factor 15 (basic helix-loop-helix)	-0.0026763268812153925
GO:0042755: eating behavior	TH	tyrosine hydroxylase	-0.000344178260329221
GO:0060135: maternal process involved in female pregnancy	AGRP	agouti related protein homolog (mouse)	-0.002571362204035076
GO:0060135: maternal process involved in female pregnancy	CCL2	chemokine (C-C motif) ligand 2	0.0008167085215575097
GO:0060135: maternal process involved in female pregnancy	DSG2	desmoglein 2	1.6629764802001612e-5
GO:0060135: maternal process involved in female pregnancy	IHH	indian hedgehog	-0.0020411997218876187
GO:0060135: maternal process involved in female pregnancy	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014006125361972633
GO:0060135: maternal process involved in female pregnancy	LGALS9	lectin, galactoside-binding, soluble, 9	-0.00011694111963838879
GO:0060135: maternal process involved in female pregnancy	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004253568499009937
GO:0060259: regulation of feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.002599469545330022
GO:2000253: positive regulation of feeding behavior	AGRP	agouti related protein homolog (mouse)	-0.002599469545330022
KEGG:04614: Renin-angiotensin system	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011169922119025704
KEGG:04614: Renin-angiotensin system	AGTR1	angiotensin II receptor, type 1	0.00034521637758961563
KEGG:04614: Renin-angiotensin system	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029097664979938224
KEGG:04924: Renin secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011139206084095313
KEGG:04924: Renin secretion	AGTR1	angiotensin II receptor, type 1	0.00034539412973386157
KEGG:04924: Renin secretion	CREB1	cAMP responsive element binding protein 1	0.0006467805974784756
KEGG:04924: Renin secretion	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007686695942128233
KEGG:04924: Renin secretion	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007667497713812751
KEGG:04924: Renin secretion	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006468055333396448
KEGG:04924: Renin secretion	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.0001499432919174857
KEGG:04924: Renin secretion	PRKX	protein kinase, X-linked	0.0003880034855906032
GO:0001543: ovarian follicle rupture	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011335364167528723
GO:0001543: ovarian follicle rupture	NRIP1	nuclear receptor interacting protein 1	0.00106908393781542
GO:0001558: regulation of cell growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011239591957926942
GO:0001558: regulation of cell growth	AGTR1	angiotensin II receptor, type 1	0.00034646295979797045
GO:0001558: regulation of cell growth	FOXM1	forkhead box M1	0.00019628552953102413
GO:0001558: regulation of cell growth	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.0001426537525805146
GO:0001558: regulation of cell growth	IGFBP3	insulin-like growth factor binding protein 3	0.000832722931490762
GO:0001558: regulation of cell growth	IGFBP4	insulin-like growth factor binding protein 4	-0.0012706687737660475
GO:0001558: regulation of cell growth	IGFBP6	insulin-like growth factor binding protein 6	-0.0020158103178430824
GO:0001558: regulation of cell growth	KIF14	kinesin family member 14	0.0004840104428949068
GO:0001568: blood vessel development	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011386435333327549
GO:0001568: blood vessel development	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003028229487703539
GO:0001568: blood vessel development	COL1A1	collagen, type I, alpha 1	-0.0005294449881268177
GO:0001568: blood vessel development	COL5A1	collagen, type V, alpha 1	-5.199023414011703e-5
GO:0001568: blood vessel development	FOXO1	forkhead box O1	0.0018057365213942017
GO:0001568: blood vessel development	LOX	lysyl oxidase	-0.0005785892056026907
GO:0001568: blood vessel development	MEF2C	myocyte enhancer factor 2C	0.0009770104438555636
GO:0001568: blood vessel development	PAX6	paired box 6	0.001942126309831866
GO:0001568: blood vessel development	SPHK1	sphingosine kinase 1	0.0018168231948020308
GO:0001568: blood vessel development	STRA6	stimulated by retinoic acid 6	-0.001686052197201494
GO:0001568: blood vessel development	TBX3	T-box 3	0.0012289109230176059
GO:0001568: blood vessel development	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005761762234375019
GO:0001658: branching involved in ureteric bud morphogenesis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011324215955683154
GO:0001658: branching involved in ureteric bud morphogenesis	BCL2	B-cell CLL/lymphoma 2	-4.783028522101573e-6
GO:0001658: branching involved in ureteric bud morphogenesis	BMP4	bone morphogenetic protein 4	-0.0003223100774521652
GO:0001658: branching involved in ureteric bud morphogenesis	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028166717397520523
GO:0001658: branching involved in ureteric bud morphogenesis	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011696429615207505
GO:0001658: branching involved in ureteric bud morphogenesis	CTNNBIP1	catenin, beta interacting protein 1	0.0005853909251136399
GO:0001658: branching involved in ureteric bud morphogenesis	EYA1	EYA transcriptional coactivator and phosphatase 1	5.310144828986277e-5
GO:0001658: branching involved in ureteric bud morphogenesis	FGF8	fibroblast growth factor 8 (androgen-induced)	0.000983333490772944
GO:0001658: branching involved in ureteric bud morphogenesis	GDNF	glial cell derived neurotrophic factor	0.00044452855817307506
GO:0001658: branching involved in ureteric bud morphogenesis	GLI3	GLI family zinc finger 3	-0.002150071239082692
GO:0001658: branching involved in ureteric bud morphogenesis	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008268716043978847
GO:0001658: branching involved in ureteric bud morphogenesis	LHX1	LIM homeobox 1	-0.0007582861704903152
GO:0001658: branching involved in ureteric bud morphogenesis	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001136094777048415
GO:0001658: branching involved in ureteric bud morphogenesis	PAX2	paired box 2	-0.001612960546383164
GO:0001658: branching involved in ureteric bud morphogenesis	PAX8	paired box 8	0.0009476322499311978
GO:0001658: branching involved in ureteric bud morphogenesis	PTCH1	patched 1	-6.59691787954293e-5
GO:0001658: branching involved in ureteric bud morphogenesis	SALL1	spalt-like transcription factor 1	-0.002435919383253874
GO:0001658: branching involved in ureteric bud morphogenesis	SHH	sonic hedgehog	0.0005995941296707862
GO:0001658: branching involved in ureteric bud morphogenesis	SIX1	SIX homeobox 1	-0.0018688091832661283
GO:0001658: branching involved in ureteric bud morphogenesis	SOX9	SRY (sex determining region Y)-box 9	-0.0005185016850486459
GO:0001658: branching involved in ureteric bud morphogenesis	WNT1	wingless-type MMTV integration site family, member 1	0.0007864630843607673
GO:0001658: branching involved in ureteric bud morphogenesis	WNT4	wingless-type MMTV integration site family, member 4	-0.0002517234722073028
GO:0001658: branching involved in ureteric bud morphogenesis	WT1	Wilms tumor 1	-0.0005066333996672471
GO:0001819: positive regulation of cytokine production	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011514506577944975
GO:0001819: positive regulation of cytokine production	FLOT1	flotillin 1	-0.0007700431463739405
GO:0001819: positive regulation of cytokine production	LEP	leptin	0.003230302030180371
GO:0001822: kidney development	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011322885087761368
GO:0001822: kidney development	AGTR1	angiotensin II receptor, type 1	0.0003476434851386546
GO:0001822: kidney development	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003017440452369914
GO:0001822: kidney development	APC	adenomatous polyposis coli	0.0006435382371252014
GO:0001822: kidney development	ARL3	ADP-ribosylation factor-like 3	-0.0011802692847468807
GO:0001822: kidney development	ASS1	argininosuccinate synthase 1	0.0001423666715683509
GO:0001822: kidney development	BAX	BCL2-associated X protein	-0.000424955731574654
GO:0001822: kidney development	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007744094988060543
GO:0001822: kidney development	BMP4	bone morphogenetic protein 4	-0.0003224151679729273
GO:0001822: kidney development	GATA3	GATA binding protein 3	-3.8969050880196885e-5
GO:0001822: kidney development	GLI2	GLI family zinc finger 2	0.0018523887542204842
GO:0001822: kidney development	JMJD6	jumonji domain containing 6	0.003588983878481649
GO:0001822: kidney development	LEF1	lymphoid enhancer-binding factor 1	-0.00010030675272366718
GO:0001822: kidney development	LHX1	LIM homeobox 1	-0.0007582482598129826
GO:0001822: kidney development	ODC1	ornithine decarboxylase 1	0.0008248122290811507
GO:0001822: kidney development	PAX8	paired box 8	0.0009477606784070616
GO:0001822: kidney development	PROX1	prospero homeobox 1	0.001120769548385456
GO:0001822: kidney development	SALL1	spalt-like transcription factor 1	-0.0024356065514120366
GO:0001822: kidney development	SIX1	SIX homeobox 1	-0.001868872554158794
GO:0001822: kidney development	SOX11	SRY (sex determining region Y)-box 11	-0.0002090406384749123
GO:0001822: kidney development	STRA6	stimulated by retinoic acid 6	-0.0016794296292797033
GO:0001822: kidney development	SULF1	sulfatase 1	-0.0008049564743280625
GO:0001822: kidney development	TFAP2A	transcription factor AP-2 alpha (activating enhancer binding protein 2 alpha)	0.00047965538095742153
GO:0001822: kidney development	TGFBR1	transforming growth factor, beta receptor 1	0.00033964589359753404
GO:0001822: kidney development	THRA	thyroid hormone receptor, alpha	0.0007627917589666248
GO:0001822: kidney development	TP73	tumor protein p73	0.0010272788843812654
GO:0001822: kidney development	VEGFA	vascular endothelial growth factor A	0.0005944993942240999
GO:0001822: kidney development	WFS1	Wolfram syndrome 1 (wolframin)	0.000576583569760183
GO:0001822: kidney development	WNT4	wingless-type MMTV integration site family, member 4	-0.0002517607146785744
GO:0001822: kidney development	WT1	Wilms tumor 1	-0.0005065112946419222
GO:0001998: angiotensin mediated vasoconstriction involved in regulation of systemic arterial blood pressure	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0001999: renal response to blood flow involved in circulatory renin-angiotensin regulation of systemic arterial blood pressure	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0002003: angiotensin maturation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0002016: regulation of blood volume by renin-angiotensin	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0002018: renin-angiotensin regulation of aldosterone production	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0002018: renin-angiotensin regulation of aldosterone production	AGTR1	angiotensin II receptor, type 1	0.0003451843215497578
GO:0002019: regulation of renal output by angiotensin	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0002027: regulation of heart rate	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001119020788800717
GO:0002027: regulation of heart rate	DRD2	dopamine receptor D2	-0.00023222127721904366
GO:0002027: regulation of heart rate	GPD1L	glycerol-3-phosphate dehydrogenase 1-like	0.0005611155218810466
GO:0002034: regulation of blood vessel size by renin-angiotensin	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011197730280088998
GO:0002034: regulation of blood vessel size by renin-angiotensin	AGTR1	angiotensin II receptor, type 1	0.00034590288283904474
GO:0002034: regulation of blood vessel size by renin-angiotensin	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006525904449321853
GO:0003014: renal system process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011242494876576783
GO:0003014: renal system process	BCL2	B-cell CLL/lymphoma 2	-4.809622110100769e-6
GO:0003014: renal system process	BMP4	bone morphogenetic protein 4	-0.0003206529527613249
GO:0003014: renal system process	FAS	Fas cell surface death receptor	-3.312797888114499e-5
GO:0003014: renal system process	PKN1	protein kinase N1	-0.001892313990609454
GO:0003051: angiotensin-mediated drinking behavior	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0003331: positive regulation of extracellular matrix constituent secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0006883: cellular sodium ion homeostasis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001137812587929324
GO:0006883: cellular sodium ion homeostasis	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0015001052654050248
GO:0007160: cell-matrix adhesion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011379943618682912
GO:0007160: cell-matrix adhesion	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.0007757746956300358
GO:0007160: cell-matrix adhesion	CD63	CD63 molecule	-0.0010646265330701348
GO:0007160: cell-matrix adhesion	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011670494850022758
GO:0007160: cell-matrix adhesion	EDA	ectodysplasin A	-0.0008172001685629275
GO:0007160: cell-matrix adhesion	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.001402302578569276
GO:0007160: cell-matrix adhesion	ITGA6	integrin, alpha 6	0.001675856995409526
GO:0007160: cell-matrix adhesion	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002433633248060729
GO:0007160: cell-matrix adhesion	ITGB4	integrin, beta 4	0.000582838890882171
GO:0007160: cell-matrix adhesion	THBS3	thrombospondin 3	0.0016203013163478292
GO:0007186: G-protein coupled receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011356818867707846
GO:0007186: G-protein coupled receptor signaling pathway	AGTR1	angiotensin II receptor, type 1	0.0003472775024194788
GO:0007186: G-protein coupled receptor signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007317522629380933
GO:0007186: G-protein coupled receptor signaling pathway	AREG	amphiregulin	0.002460091285627331
GO:0007186: G-protein coupled receptor signaling pathway	C3	complement component 3	0.002027451858856666
GO:0007186: G-protein coupled receptor signaling pathway	CCL2	chemokine (C-C motif) ligand 2	0.0008179630959293955
GO:0007186: G-protein coupled receptor signaling pathway	CCL7	chemokine (C-C motif) ligand 7	-0.0024049453512226576
GO:0007186: G-protein coupled receptor signaling pathway	CCL8	chemokine (C-C motif) ligand 8	-0.0005905841499930062
GO:0007186: G-protein coupled receptor signaling pathway	CELSR2	cadherin, EGF LAG seven-pass G-type receptor 2	-0.0011365478355988014
GO:0007186: G-protein coupled receptor signaling pathway	CX3CL1	chemokine (C-X3-C motif) ligand 1	0.00212059621953148
GO:0007186: G-protein coupled receptor signaling pathway	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008580729258881207
GO:0007186: G-protein coupled receptor signaling pathway	CXCL10	chemokine (C-X-C motif) ligand 10	6.319419337399708e-5
GO:0007186: G-protein coupled receptor signaling pathway	CXCL12	chemokine (C-X-C motif) ligand 12	-0.001210327385113833
GO:0007186: G-protein coupled receptor signaling pathway	CXCL13	chemokine (C-X-C motif) ligand 13	0.0029976064731152066
GO:0007186: G-protein coupled receptor signaling pathway	CXCR4	chemokine (C-X-C motif) receptor 4	0.00079619018158836
GO:0007186: G-protein coupled receptor signaling pathway	FRS2	fibroblast growth factor receptor substrate 2	0.0009311209785255437
GO:0007186: G-protein coupled receptor signaling pathway	FZD3	frizzled class receptor 3	0.0003795844270815237
GO:0007186: G-protein coupled receptor signaling pathway	FZD7	frizzled class receptor 7	0.0010725725389893162
GO:0007186: G-protein coupled receptor signaling pathway	GNRHR	gonadotropin-releasing hormone receptor	0.000741472295812031
GO:0007186: G-protein coupled receptor signaling pathway	GPR87	G protein-coupled receptor 87	-2.497251587351032e-5
GO:0007186: G-protein coupled receptor signaling pathway	GPSM2	G-protein signaling modulator 2	0.0017753013506732122
GO:0007186: G-protein coupled receptor signaling pathway	INSR	insulin receptor	-0.0013653012317385404
GO:0007186: G-protein coupled receptor signaling pathway	JAK2	Janus kinase 2	-3.12941578204863e-5
GO:0007186: G-protein coupled receptor signaling pathway	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.00030888653092908897
GO:0007186: G-protein coupled receptor signaling pathway	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029110400707595417
GO:0007186: G-protein coupled receptor signaling pathway	NMU	neuromedin U	0.0018534748234731637
GO:0007186: G-protein coupled receptor signaling pathway	OR5I1	olfactory receptor, family 5, subfamily I, member 1	0.0018843550241663886
GO:0007186: G-protein coupled receptor signaling pathway	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036247782309439125
GO:0007186: G-protein coupled receptor signaling pathway	SMO	smoothened, frizzled class receptor	0.0021421930109414007
GO:0007186: G-protein coupled receptor signaling pathway	TULP3	tubby like protein 3	0.0009579090710494537
GO:0007199: G-protein coupled receptor signaling pathway coupled to cGMP nucleotide second messenger	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011148533931377084
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	AGTR1	angiotensin II receptor, type 1	0.0003456715919302293
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	ESR1	estrogen receptor 1	-0.0009352668420446904
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005181719878916909
GO:0007200: phospholipase C-activating G-protein coupled receptor signaling pathway	TGM2	transglutaminase 2	-0.00017696815049185737
GO:0007202: activation of phospholipase C activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001123689453306151
GO:0007202: activation of phospholipase C activity	CREB1	cAMP responsive element binding protein 1	0.0006526255386096972
GO:0007202: activation of phospholipase C activity	EGFR	epidermal growth factor receptor	0.0006800670113925342
GO:0007202: activation of phospholipase C activity	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007744885115874012
GO:0007202: activation of phospholipase C activity	PRKCA	protein kinase C, alpha	-5.831505823373642e-6
GO:0007202: activation of phospholipase C activity	PRKCD	protein kinase C, delta	-0.0011195788348135893
GO:0007250: activation of NF-kappaB-inducing kinase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001134244358973163
GO:0007250: activation of NF-kappaB-inducing kinase activity	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016090896509274907
GO:0007250: activation of NF-kappaB-inducing kinase activity	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.0002907531420779391
GO:0007263: nitric oxide mediated signal transduction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011272561800915574
GO:0007263: nitric oxide mediated signal transduction	PDX1	pancreatic and duodenal homeobox 1	0.0002558342245161701
GO:0007588: excretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011194164532164908
GO:0007588: excretion	HMOX1	heme oxygenase (decycling) 1	-0.00021522995210703457
GO:0007588: excretion	SLC22A18	solute carrier family 22, member 18	0.0007274064541036468
GO:0008065: establishment of blood-nerve barrier	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001136418554814798
GO:0008065: establishment of blood-nerve barrier	GSTM3	glutathione S-transferase mu 3 (brain)	-0.001290451010455394
GO:0009651: response to salt stress	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001125037157788183
GO:0009651: response to salt stress	BAX	BCL2-associated X protein	-0.0004226123959726208
GO:0009651: response to salt stress	TH	tyrosine hydroxylase	-0.00034049874484744767
GO:0009651: response to salt stress	TP53	tumor protein p53	0.001167663479412042
GO:0010535: positive regulation of activation of JAK2 kinase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011340970972180376
GO:0010535: positive regulation of activation of JAK2 kinase activity	IL12B	interleukin 12B	0.0012764517062932867
GO:0010595: positive regulation of endothelial cell migration	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001122026980096562
GO:0010595: positive regulation of endothelial cell migration	ALOX12	arachidonate 12-lipoxygenase	-0.0019394077472052163
GO:0010595: positive regulation of endothelial cell migration	ANGPT1	angiopoietin 1	0.0008950471683722529
GO:0010595: positive regulation of endothelial cell migration	BMP4	bone morphogenetic protein 4	-0.0003203270222288023
GO:0010595: positive regulation of endothelial cell migration	FOXC2	forkhead box C2 (MFH-1, mesenchyme forkhead 1)	0.001736344833359962
GO:0010595: positive regulation of endothelial cell migration	GATA3	GATA binding protein 3	-3.7663198222700334e-5
GO:0010595: positive regulation of endothelial cell migration	NRP1	neuropilin 1	-0.0006378237944011302
GO:0010595: positive regulation of endothelial cell migration	PRKCA	protein kinase C, alpha	-5.936449221386042e-6
GO:0010595: positive regulation of endothelial cell migration	PROX1	prospero homeobox 1	0.0011126813719566882
GO:0010595: positive regulation of endothelial cell migration	THBS1	thrombospondin 1	-0.0010283456165712285
GO:0010595: positive regulation of endothelial cell migration	VEGFA	vascular endothelial growth factor A	0.0005889216945167235
GO:0010595: positive regulation of endothelial cell migration	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006622910120876479
GO:0010595: positive regulation of endothelial cell migration	WNT7A	wingless-type MMTV integration site family, member 7A	1.984883657709688e-5
GO:0010613: positive regulation of cardiac muscle hypertrophy	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001127706138226641
GO:0010613: positive regulation of cardiac muscle hypertrophy	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001299906142537369
GO:0010613: positive regulation of cardiac muscle hypertrophy	IL6ST	interleukin 6 signal transducer	0.0018700966561512513
GO:0010613: positive regulation of cardiac muscle hypertrophy	PRKCA	protein kinase C, alpha	-5.95284133227469e-6
GO:0010744: positive regulation of macrophage derived foam cell differentiation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0010744: positive regulation of macrophage derived foam cell differentiation	AGTR1	angiotensin II receptor, type 1	0.0003451843215497578
GO:0010873: positive regulation of cholesterol esterification	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0010873: positive regulation of cholesterol esterification	AGTR1	angiotensin II receptor, type 1	0.0003451843215497578
GO:0010951: negative regulation of endopeptidase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011427867962670619
GO:0010951: negative regulation of endopeptidase activity	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007357118999286487
GO:0010951: negative regulation of endopeptidase activity	C3	complement component 3	0.0020373302511453085
GO:0010951: negative regulation of endopeptidase activity	CAST	calpastatin	-0.003052321195622298
GO:0010951: negative regulation of endopeptidase activity	CST3	cystatin C	-7.225017747036887e-5
GO:0010951: negative regulation of endopeptidase activity	PI3	peptidase inhibitor 3, skin-derived	-0.0010467915172388362
GO:0010951: negative regulation of endopeptidase activity	PTTG1	pituitary tumor-transforming 1	-0.00036217313646242245
GO:0010951: negative regulation of endopeptidase activity	SERPINA5	serpin peptidase inhibitor, clade A (alpha-1 antiproteinase, antitrypsin), member 5	-0.0007139125929340427
GO:0010951: negative regulation of endopeptidase activity	SERPINB5	serpin peptidase inhibitor, clade B (ovalbumin), member 5	-0.004556683309996608
GO:0010951: negative regulation of endopeptidase activity	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.00011187084480742907
GO:0010951: negative regulation of endopeptidase activity	SERPINE2	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 2	0.002517990175649597
GO:0010951: negative regulation of endopeptidase activity	SERPINF2	serpin peptidase inhibitor, clade F (alpha-2 antiplasmin, pigment epithelium derived factor), member 2	0.0006623869558177234
GO:0010951: negative regulation of endopeptidase activity	SERPINH1	serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1)	-0.001095508441864501
GO:0014061: regulation of norepinephrine secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011254763501075064
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	ANGPT1	angiopoietin 1	0.0008966105857940089
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	FLT3	fms-related tyrosine kinase 3	-0.0006772422850948268
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012950036429621632
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	JAK2	Janus kinase 2	-3.26256433509484e-5
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027163259255019294
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.002252824626825657
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00035789127939507104
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	RELN	reelin	0.0015284506475392245
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	SOX9	SRY (sex determining region Y)-box 9	-0.0005160082523193128
GO:0014068: positive regulation of phosphatidylinositol 3-kinase signaling	TGFB2	transforming growth factor, beta 2	-0.0010534663100429142
GO:0014824: artery smooth muscle contraction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0014873: response to muscle activity involved in regulation of muscle adaptation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0016525: negative regulation of angiogenesis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011142345282872878
GO:0016525: negative regulation of angiogenesis	CCL2	chemokine (C-C motif) ligand 2	0.0008062675702981251
GO:0016525: negative regulation of angiogenesis	CX3CR1	chemokine (C-X3-C motif) receptor 1	-0.0008474072551148822
GO:0016525: negative regulation of angiogenesis	CXCL10	chemokine (C-X-C motif) ligand 10	6.037374343293458e-5
GO:0016525: negative regulation of angiogenesis	FOXC1	forkhead box C1	-2.3138581521752635e-5
GO:0016525: negative regulation of angiogenesis	HOXA5	homeobox A5	0.0010503760111728365
GO:0016525: negative regulation of angiogenesis	PML	promyelocytic leukemia	-0.0006733407439434915
GO:0016525: negative regulation of angiogenesis	SULF1	sulfatase 1	-0.0007903565640150293
GO:0016525: negative regulation of angiogenesis	THBS1	thrombospondin 1	-0.0010227421262162888
GO:0016525: negative regulation of angiogenesis	THBS4	thrombospondin 4	-0.00044121451627804207
GO:0016525: negative regulation of angiogenesis	VASH1	vasohibin 1	0.0005917174396845661
GO:0019229: regulation of vasoconstriction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001137722248867072
GO:0019229: regulation of vasoconstriction	AGTR1	angiotensin II receptor, type 1	0.0003476617451183314
GO:0019229: regulation of vasoconstriction	ASIC2	acid-sensing (proton-gated) ion channel 2	0.0022858783346506187
GO:0019229: regulation of vasoconstriction	PER2	period circadian clock 2	0.0012416736147635248
GO:0030198: extracellular matrix organization	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011353962802214247
GO:0030198: extracellular matrix organization	BMP4	bone morphogenetic protein 4	-0.00032300417784592283
GO:0030198: extracellular matrix organization	BMP7	bone morphogenetic protein 7	0.0008564480838143903
GO:0030198: extracellular matrix organization	COL11A1	collagen, type XI, alpha 1	-0.0004423323769293621
GO:0030198: extracellular matrix organization	COL1A1	collagen, type I, alpha 1	-0.000527577233248182
GO:0030198: extracellular matrix organization	COL5A1	collagen, type V, alpha 1	-5.065125200106474e-5
GO:0030198: extracellular matrix organization	COL5A2	collagen, type V, alpha 2	-0.00034659497924633445
GO:0030198: extracellular matrix organization	CTSK	cathepsin K	-0.00036403213030256103
GO:0030198: extracellular matrix organization	CTSV	cathepsin V	0.0006550577223109956
GO:0030198: extracellular matrix organization	DAG1	dystroglycan 1 (dystrophin-associated glycoprotein 1)	0.00036204445568169274
GO:0030198: extracellular matrix organization	DSPP	dentin sialophosphoprotein	0.0008306362325807081
GO:0030198: extracellular matrix organization	EGFL6	EGF-like-domain, multiple 6	0.00013687380078647766
GO:0030198: extracellular matrix organization	FBN2	fibrillin 2	-0.0007423944454956596
GO:0030198: extracellular matrix organization	ICAM1	intercellular adhesion molecule 1	0.0007296354396173888
GO:0030198: extracellular matrix organization	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014011452838385522
GO:0030198: extracellular matrix organization	ITGA6	integrin, alpha 6	0.001672187776254125
GO:0030198: extracellular matrix organization	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002430008993952343
GO:0030198: extracellular matrix organization	ITGB4	integrin, beta 4	0.0005814874489974711
GO:0030198: extracellular matrix organization	KLK7	kallikrein-related peptidase 7	0.001628000375796593
GO:0030198: extracellular matrix organization	LAMB2	laminin, beta 2 (laminin S)	-0.0013108738780589944
GO:0030198: extracellular matrix organization	LOX	lysyl oxidase	-0.000577234932308948
GO:0030198: extracellular matrix organization	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011332886696424163
GO:0030198: extracellular matrix organization	MMP20	matrix metallopeptidase 20	-0.0024346693987929782
GO:0030198: extracellular matrix organization	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042591564956760957
GO:0030198: extracellular matrix organization	NR2E1	nuclear receptor subfamily 2, group E, member 1	-0.0029780332048168334
GO:0030198: extracellular matrix organization	PRDX4	peroxiredoxin 4	0.0015264475327929482
GO:0030198: extracellular matrix organization	PRKCA	protein kinase C, alpha	-5.839797129212154e-6
GO:0030198: extracellular matrix organization	SERPINB5	serpin peptidase inhibitor, clade B (ovalbumin), member 5	-0.004536539408318589
GO:0030198: extracellular matrix organization	SERPINE1	serpin peptidase inhibitor, clade E (nexin, plasminogen activator inhibitor type 1), member 1	0.0001121322413896657
GO:0030198: extracellular matrix organization	SERPINH1	serpin peptidase inhibitor, clade H (heat shock protein 47), member 1, (collagen binding protein 1)	-0.0010902762951661928
GO:0030198: extracellular matrix organization	SOX9	SRY (sex determining region Y)-box 9	-0.0005191319035850546
GO:0030198: extracellular matrix organization	TGFB1	transforming growth factor, beta 1	-7.326144857069027e-5
GO:0030198: extracellular matrix organization	TGFB2	transforming growth factor, beta 2	-0.0010608832620807032
GO:0030198: extracellular matrix organization	TGFB3	transforming growth factor, beta 3	-0.0018265300195037515
GO:0030198: extracellular matrix organization	THBS1	thrombospondin 1	-0.0010372329481276885
GO:0030198: extracellular matrix organization	TNC	tenascin C	0.0007352193829639208
GO:0030432: peristalsis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011158610057580539
GO:0030432: peristalsis	DRD2	dopamine receptor D2	-0.00023187057536279692
GO:0030432: peristalsis	GDNF	glial cell derived neurotrophic factor	0.0004402006314804401
GO:0032270: positive regulation of cellular protein metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011252869951244595
GO:0032270: positive regulation of cellular protein metabolic process	AGTR1	angiotensin II receptor, type 1	0.00034650337001358993
GO:0032270: positive regulation of cellular protein metabolic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007258870202631819
GO:0032270: positive regulation of cellular protein metabolic process	INHBA	inhibin, beta A	-0.0013433361947508913
GO:0032270: positive regulation of cellular protein metabolic process	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007965623366097778
GO:0032270: positive regulation of cellular protein metabolic process	TGFB1	transforming growth factor, beta 1	-7.252275201797457e-5
GO:0032930: positive regulation of superoxide anion generation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011230354599038475
GO:0032930: positive regulation of superoxide anion generation	GSTP1	glutathione S-transferase pi 1	0.00023020869859851015
GO:0032930: positive regulation of superoxide anion generation	PRKCD	protein kinase C, delta	-0.0011189176103720967
GO:0032930: positive regulation of superoxide anion generation	TGFB1	transforming growth factor, beta 1	-7.253484562525231e-5
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011282006662961485
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007282841687977955
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006244734032888667
GO:0033138: positive regulation of peptidyl-serine phosphorylation	ANGPT1	angiopoietin 1	0.0008983012903031153
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AVP	arginine vasopressin	-0.0009339310067446518
GO:0033138: positive regulation of peptidyl-serine phosphorylation	AXIN1	axin 1	-0.0007304631354543684
GO:0033138: positive regulation of peptidyl-serine phosphorylation	BCL2	B-cell CLL/lymphoma 2	-4.701486539407982e-6
GO:0033138: positive regulation of peptidyl-serine phosphorylation	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005343319103674757
GO:0033138: positive regulation of peptidyl-serine phosphorylation	CDC42	cell division cycle 42	0.0012366886409960764
GO:0033138: positive regulation of peptidyl-serine phosphorylation	GSK3B	glycogen synthase kinase 3 beta	0.0015446040341675611
GO:0033138: positive regulation of peptidyl-serine phosphorylation	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002181236255591259
GO:0033138: positive regulation of peptidyl-serine phosphorylation	PFN2	profilin 2	0.0019989673366821257
GO:0033138: positive regulation of peptidyl-serine phosphorylation	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001494459029090121
GO:0033138: positive regulation of peptidyl-serine phosphorylation	TGFB1	transforming growth factor, beta 1	-7.240759311739789e-5
GO:0033138: positive regulation of peptidyl-serine phosphorylation	VEGFA	vascular endothelial growth factor A	0.0005920034529647971
GO:0033138: positive regulation of peptidyl-serine phosphorylation	WNT5A	wingless-type MMTV integration site family, member 5A	-0.000665089819957993
GO:0033864: positive regulation of NAD(P)H oxidase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011273061613599603
GO:0033864: positive regulation of NAD(P)H oxidase activity	AGTR1	angiotensin II receptor, type 1	0.0003451843215497578
GO:0034104: negative regulation of tissue remodeling	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0035411: catenin import into nucleus	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0035813: regulation of renal sodium excretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011266866601655772
GO:0035813: regulation of renal sodium excretion	AGTR1	angiotensin II receptor, type 1	0.0003457120126052985
GO:0035813: regulation of renal sodium excretion	AVP	arginine vasopressin	-0.0009321890790038753
GO:0035815: positive regulation of renal sodium excretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011260364256689736
GO:0035815: positive regulation of renal sodium excretion	DRD2	dopamine receptor D2	-0.00023290838230142062
GO:0040018: positive regulation of multicellular organism growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001125341647488298
GO:0040018: positive regulation of multicellular organism growth	BBS4	Bardet-Biedl syndrome 4	-0.0005073218178665524
GO:0040018: positive regulation of multicellular organism growth	BCL2	B-cell CLL/lymphoma 2	-4.803184511103251e-6
GO:0040018: positive regulation of multicellular organism growth	CREB1	cAMP responsive element binding protein 1	0.0006538172107678811
GO:0040018: positive regulation of multicellular organism growth	DRD2	dopamine receptor D2	-0.00023319793886676703
GO:0040018: positive regulation of multicellular organism growth	POU1F1	POU class 1 homeobox 1	0.00013657207900539262
GO:0040018: positive regulation of multicellular organism growth	SMO	smoothened, frizzled class receptor	0.002128862632710565
GO:0040018: positive regulation of multicellular organism growth	STAT5A	signal transducer and activator of transcription 5A	0.0015892017426617899
GO:0042127: regulation of cell proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011341826209634676
GO:0042127: regulation of cell proliferation	AGTR1	angiotensin II receptor, type 1	0.00034719940364801266
GO:0042127: regulation of cell proliferation	CHEK1	checkpoint kinase 1	0.0009009769811606011
GO:0042127: regulation of cell proliferation	CIB1	calcium and integrin binding 1 (calmyrin)	5.4114351718589777e-5
GO:0042127: regulation of cell proliferation	CXCL10	chemokine (C-X-C motif) ligand 10	6.302211511482052e-5
GO:0042127: regulation of cell proliferation	CXCL13	chemokine (C-X-C motif) ligand 13	0.0029945756728374942
GO:0042127: regulation of cell proliferation	E2F4	E2F transcription factor 4, p107/p130-binding	-0.0023463311704491627
GO:0042127: regulation of cell proliferation	ENG	endoglin	0.0008269777790662977
GO:0042127: regulation of cell proliferation	EZH2	enhancer of zeste 2 polycomb repressive complex 2 subunit	-0.00013584486316601648
GO:0042127: regulation of cell proliferation	FOXM1	forkhead box M1	0.00019783273086723812
GO:0042127: regulation of cell proliferation	GUCY2C	guanylate cyclase 2C (heat stable enterotoxin receptor)	-0.0016341243245748664
GO:0042127: regulation of cell proliferation	HOXD13	homeobox D13	-0.0005924310398957533
GO:0042127: regulation of cell proliferation	INHA	inhibin, alpha	0.0002114948402304595
GO:0042127: regulation of cell proliferation	JAG1	jagged 1	0.0017568436223542349
GO:0042127: regulation of cell proliferation	JAG2	jagged 2	-5.598829809758418e-6
GO:0042127: regulation of cell proliferation	JAK2	Janus kinase 2	-3.144520313963052e-5
GO:0042127: regulation of cell proliferation	JUP	junction plakoglobin	-0.0014794855839294588
GO:0042127: regulation of cell proliferation	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027555034989152976
GO:0042127: regulation of cell proliferation	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.00042579835018756473
GO:0042127: regulation of cell proliferation	RPA3	replication protein A3, 14kDa	0.0031381711793049254
GO:0042127: regulation of cell proliferation	SHH	sonic hedgehog	0.0006002971515527103
GO:0042127: regulation of cell proliferation	SIRT1	sirtuin 1	-1.51838247899561e-6
GO:0042127: regulation of cell proliferation	SIX3	SIX homeobox 3	0.0020385109905892208
GO:0042127: regulation of cell proliferation	SOX9	SRY (sex determining region Y)-box 9	-0.0005185173871042268
GO:0042127: regulation of cell proliferation	TFAP2C	transcription factor AP-2 gamma (activating enhancer binding protein 2 gamma)	0.0010611623802875966
GO:0042127: regulation of cell proliferation	TGFB3	transforming growth factor, beta 3	-0.0018249526898884542
GO:0042311: vasodilation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011265381176853433
GO:0042311: vasodilation	GPX1	glutathione peroxidase 1	0.0003857047065419783
GO:0043410: positive regulation of MAPK cascade	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011327409337338343
GO:0043410: positive regulation of MAPK cascade	CDH2	cadherin 2, type 1, N-cadherin (neuronal)	-0.0006448969576984281
GO:0043410: positive regulation of MAPK cascade	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011675481917323444
GO:0043410: positive regulation of MAPK cascade	FGFR2	fibroblast growth factor receptor 2	0.000762806861838605
GO:0043410: positive regulation of MAPK cascade	FGFR3	fibroblast growth factor receptor 3	0.00022251376683993435
GO:0043410: positive regulation of MAPK cascade	FLT3	fms-related tyrosine kinase 3	-0.0006811615422099966
GO:0043410: positive regulation of MAPK cascade	HMGB1	high mobility group box 1	-0.0007756731930923222
GO:0043410: positive regulation of MAPK cascade	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001309116690577524
GO:0043410: positive regulation of MAPK cascade	IGF1R	insulin-like growth factor 1 receptor	0.0010710913076569985
GO:0043410: positive regulation of MAPK cascade	IGFBP3	insulin-like growth factor binding protein 3	0.0008360134930686311
GO:0043410: positive regulation of MAPK cascade	IGFBP4	insulin-like growth factor binding protein 4	-0.0012776354032527763
GO:0043410: positive regulation of MAPK cascade	INSR	insulin receptor	-0.0013623665436417677
GO:0043410: positive regulation of MAPK cascade	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027491895017797
GO:0043410: positive regulation of MAPK cascade	LEP	leptin	0.0031889836225433912
GO:0043524: negative regulation of neuron apoptotic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011332376252700875
GO:0043524: negative regulation of neuron apoptotic process	ANGPT1	angiopoietin 1	0.000900635825464509
GO:0043524: negative regulation of neuron apoptotic process	BAX	BCL2-associated X protein	-0.00042516345503466034
GO:0043524: negative regulation of neuron apoptotic process	BCL2	B-cell CLL/lymphoma 2	-4.953281541930749e-6
GO:0043524: negative regulation of neuron apoptotic process	CCL2	chemokine (C-C motif) ligand 2	0.00081653700332012
GO:0043524: negative regulation of neuron apoptotic process	CEBPB	CCAAT/enhancer binding protein (C/EBP), beta	-0.00027400391778237303
GO:0043524: negative regulation of neuron apoptotic process	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028181002469272443
GO:0043524: negative regulation of neuron apoptotic process	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009839431073587381
GO:0043524: negative regulation of neuron apoptotic process	GCLM	glutamate-cysteine ligase, modifier subunit	-0.0037613093741005097
GO:0043524: negative regulation of neuron apoptotic process	GDNF	glial cell derived neurotrophic factor	0.000444719054348969
GO:0043524: negative regulation of neuron apoptotic process	HIPK2	homeodomain interacting protein kinase 2	0.0007707519811739051
GO:0043524: negative regulation of neuron apoptotic process	HMOX1	heme oxygenase (decycling) 1	-0.00021760405086036677
GO:0043524: negative regulation of neuron apoptotic process	HTT	huntingtin	-0.0009715676832402417
GO:0043524: negative regulation of neuron apoptotic process	ISL1	ISL LIM homeobox 1	7.892673650974063e-5
GO:0043524: negative regulation of neuron apoptotic process	JAK2	Janus kinase 2	-3.171008687526428e-5
GO:0043524: negative regulation of neuron apoptotic process	KIF14	kinesin family member 14	0.0004859938372606601
GO:0043524: negative regulation of neuron apoptotic process	MDK	midkine (neurite growth-promoting factor 2)	0.0016652841063607658
GO:0043524: negative regulation of neuron apoptotic process	MEF2C	myocyte enhancer factor 2C	0.0009733500044987469
GO:0043524: negative regulation of neuron apoptotic process	MSH2	mutS homolog 2	0.0013922790619047265
GO:0043524: negative regulation of neuron apoptotic process	NES	nestin	0.0013735926438886215
GO:0043524: negative regulation of neuron apoptotic process	NRP1	neuropilin 1	-0.0006432072180678689
GO:0043524: negative regulation of neuron apoptotic process	RASA1	RAS p21 protein activator (GTPase activating protein) 1	-0.0003490480491911306
GO:0043524: negative regulation of neuron apoptotic process	SIX1	SIX homeobox 1	-0.001869884356182417
GO:0043524: negative regulation of neuron apoptotic process	STAMBP	STAM binding protein	-0.00017040826720829682
GO:0043524: negative regulation of neuron apoptotic process	STAR	steroidogenic acute regulatory protein	0.0008945065528124637
GO:0043524: negative regulation of neuron apoptotic process	TGFB3	transforming growth factor, beta 3	-0.0018236566560317178
GO:0043524: negative regulation of neuron apoptotic process	TP73	tumor protein p73	0.0010278837325965117
GO:0043524: negative regulation of neuron apoptotic process	WFS1	Wolfram syndrome 1 (wolframin)	0.000576775225110592
GO:0044267: cellular protein metabolic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001129864686643366
GO:0044267: cellular protein metabolic process	BCHE	butyrylcholinesterase	-6.363623417655818e-6
GO:0044267: cellular protein metabolic process	BLM	Bloom syndrome, RecQ helicase-like	0.0005233192652441639
GO:0044267: cellular protein metabolic process	CCL2	chemokine (C-C motif) ligand 2	0.0008150974570626104
GO:0044267: cellular protein metabolic process	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017540359393327825
GO:0044267: cellular protein metabolic process	CPE	carboxypeptidase E	-0.0025393514208383334
GO:0044267: cellular protein metabolic process	CUL7	cullin 7	-0.00011849200300347657
GO:0044267: cellular protein metabolic process	EIF4G1	eukaryotic translation initiation factor 4 gamma, 1	0.0007410971874029055
GO:0044267: cellular protein metabolic process	GALNT6	polypeptide N-acetylgalactosaminyltransferase 6	-0.0017719174850972363
GO:0044267: cellular protein metabolic process	GCNT1	glucosaminyl (N-acetyl) transferase 1, core 2	0.0006921481954517552
GO:0044267: cellular protein metabolic process	GCNT3	glucosaminyl (N-acetyl) transferase 3, mucin type	-0.0023071710945766865
GO:0044267: cellular protein metabolic process	GCNT4	glucosaminyl (N-acetyl) transferase 4, core 2	0.00045128242337401684
GO:0044267: cellular protein metabolic process	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00012999108687664665
GO:0044267: cellular protein metabolic process	IGFBP1	insulin-like growth factor binding protein 1	0.00038737283713590815
GO:0044267: cellular protein metabolic process	IGFBP2	insulin-like growth factor binding protein 2, 36kDa	0.0001441149318450231
GO:0044267: cellular protein metabolic process	IGFBP3	insulin-like growth factor binding protein 3	0.0008356939504056863
GO:0044267: cellular protein metabolic process	IGFBP4	insulin-like growth factor binding protein 4	-0.0012758392785670852
GO:0044267: cellular protein metabolic process	IGFBP6	insulin-like growth factor binding protein 6	-0.0020241788444113123
GO:0044267: cellular protein metabolic process	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.0011283739831991328
GO:0044267: cellular protein metabolic process	MUC1	mucin 1, cell surface associated	0.0012824971077652503
GO:0044267: cellular protein metabolic process	MUC7	mucin 7, secreted	-0.003154680300308304
GO:0044267: cellular protein metabolic process	NUP153	nucleoporin 153kDa	0.0008231568379220471
GO:0044267: cellular protein metabolic process	PCSK2	proprotein convertase subtilisin/kexin type 2	0.0006041548261440688
GO:0044267: cellular protein metabolic process	PGM3	phosphoglucomutase 3	0.00198326723008385
GO:0044267: cellular protein metabolic process	PML	promyelocytic leukemia	-0.0006790064186019183
GO:0044267: cellular protein metabolic process	RAD21	RAD21 homolog (S. pombe)	-0.00010208722922996503
GO:0044267: cellular protein metabolic process	RPA1	replication protein A1, 70kDa	0.0004376611291702861
GO:0044267: cellular protein metabolic process	SEH1L	SEH1-like (S. cerevisiae)	-0.000731199769659184
GO:0044267: cellular protein metabolic process	SMC1A	structural maintenance of chromosomes 1A	-0.0010182806749436466
GO:0044267: cellular protein metabolic process	SMC5	structural maintenance of chromosomes 5	-0.0007013261910983888
GO:0044267: cellular protein metabolic process	SMC6	structural maintenance of chromosomes 6	-0.0017478535236534368
GO:0044267: cellular protein metabolic process	SPHK1	sphingosine kinase 1	0.001807209072782821
GO:0044267: cellular protein metabolic process	THBS1	thrombospondin 1	-0.0010338199462024342
GO:0044267: cellular protein metabolic process	TPR	translocated promoter region, nuclear basket protein	-0.0006956505200481422
GO:0044267: cellular protein metabolic process	WFS1	Wolfram syndrome 1 (wolframin)	0.0005760037162688469
GO:0044267: cellular protein metabolic process	XBP1	X-box binding protein 1	0.00026666778204140917
GO:0045429: positive regulation of nitric oxide biosynthetic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011140948995178078
GO:0045429: positive regulation of nitric oxide biosynthetic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007201755139836965
GO:0045429: positive regulation of nitric oxide biosynthetic process	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006189648298377472
GO:0045429: positive regulation of nitric oxide biosynthetic process	ASS1	argininosuccinate synthase 1	0.0001379700842304554
GO:0045429: positive regulation of nitric oxide biosynthetic process	EGFR	epidermal growth factor receptor	0.000674296670191276
GO:0045429: positive regulation of nitric oxide biosynthetic process	ESR1	estrogen receptor 1	-0.0009346559442157988
GO:0045429: positive regulation of nitric oxide biosynthetic process	ICAM1	intercellular adhesion molecule 1	0.0007229834608800636
GO:0045429: positive regulation of nitric oxide biosynthetic process	IFNG	interferon, gamma	-4.871539041186921e-5
GO:0045429: positive regulation of nitric oxide biosynthetic process	INSR	insulin receptor	-0.0013447000675839106
GO:0045429: positive regulation of nitric oxide biosynthetic process	JAK2	Janus kinase 2	-3.36323847778102e-5
GO:0045723: positive regulation of fatty acid biosynthetic process	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001129525416396521
GO:0045723: positive regulation of fatty acid biosynthetic process	NR1H3	nuclear receptor subfamily 1, group H, member 3	0.0007982188691035323
GO:0046622: positive regulation of organ growth	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011348383041610301
GO:0046622: positive regulation of organ growth	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009848521483020666
GO:0046622: positive regulation of organ growth	IL7	interleukin 7	0.0008721384041544567
GO:0046622: positive regulation of organ growth	SMO	smoothened, frizzled class receptor	0.002140592949770094
GO:0046622: positive regulation of organ growth	YAP1	Yes-associated protein 1	-0.0001642044590206486
GO:0048143: astrocyte activation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011464001484450563
GO:0048143: astrocyte activation	SMO	smoothened, frizzled class receptor	0.002155616885929775
GO:0048144: fibroblast proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0048169: regulation of long-term neuronal synaptic plasticity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.001124766421243505
GO:0048169: regulation of long-term neuronal synaptic plasticity	DRD2	dopamine receptor D2	-0.00023294888617112793
GO:0048169: regulation of long-term neuronal synaptic plasticity	EGR1	early growth response 1	0.0010866701092259233
GO:0048659: smooth muscle cell proliferation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0050663: cytokine secretion	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011379983167102842
GO:0050663: cytokine secretion	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.001423508579175651
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011283689576810588
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	ANGPT1	angiopoietin 1	0.0008983233655464458
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	EFNA1	ephrin-A1	-0.000519714684684735
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	FGF7	fibroblast growth factor 7	0.0006320722858868139
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	ICAM1	intercellular adhesion molecule 1	0.0007278150678050746
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001301851036259578
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	JAK2	Janus kinase 2	-3.246110063992828e-5
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009298787235284282
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	NRP1	neuropilin 1	-0.0006410515846548172
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	RELN	reelin	0.0015320091530040387
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	TGFB1	transforming growth factor, beta 1	-7.24702904650187e-5
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	THBS4	thrombospondin 4	-0.00044362526692384285
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	TP53	tumor protein p53	0.0011712953670444943
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	VEGFA	vascular endothelial growth factor A	0.0005921379831008292
GO:0050731: positive regulation of peptidyl-tyrosine phosphorylation	VEGFC	vascular endothelial growth factor C	-0.0033543365913086013
GO:0051145: smooth muscle cell differentiation	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011385839497855875
GO:0051145: smooth muscle cell differentiation	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.0001166925282289397
GO:0051145: smooth muscle cell differentiation	GATA6	GATA binding protein 6	-2.74480381997768e-5
GO:0051145: smooth muscle cell differentiation	HEY2	hes-related family bHLH transcription factor with YRPW motif 2	0.0027079462603562827
GO:0051145: smooth muscle cell differentiation	MEF2C	myocyte enhancer factor 2C	0.0009766005189961666
GO:0051145: smooth muscle cell differentiation	WNT4	wingless-type MMTV integration site family, member 4	-0.0002541690884966173
GO:0051387: negative regulation of neurotrophin TRK receptor signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0051403: stress-activated MAPK cascade	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011381000621126763
GO:0051403: stress-activated MAPK cascade	CREB1	cAMP responsive element binding protein 1	0.0006612426418666483
GO:0051403: stress-activated MAPK cascade	CRYAB	crystallin, alpha B	0.0009881431402928248
GO:0051403: stress-activated MAPK cascade	IRAK1	interleukin-1 receptor-associated kinase 1	-0.001613837805829681
GO:0051403: stress-activated MAPK cascade	MAP3K19	mitogen-activated protein kinase kinase kinase 19	-0.0016542761039534373
GO:0051403: stress-activated MAPK cascade	MEF2C	myocyte enhancer factor 2C	0.0009767451355542313
GO:0051403: stress-activated MAPK cascade	RPS6KA1	ribosomal protein S6 kinase, 90kDa, polypeptide 1	-0.0025209549577330007
GO:0051924: regulation of calcium ion transport	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011194082351256931
GO:0051924: regulation of calcium ion transport	BCL2	B-cell CLL/lymphoma 2	-5.881241212492391e-6
GO:0051924: regulation of calcium ion transport	GJA1	gap junction protein, alpha 1, 43kDa	-0.00015850971419528745
GO:0051969: regulation of transmission of nerve impulse	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0061049: cell growth involved in cardiac muscle cell development	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011356652797173752
GO:0061049: cell growth involved in cardiac muscle cell development	GATA4	GATA binding protein 4	-0.0010955738267244865
GO:0061098: positive regulation of protein tyrosine kinase activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011336556975768699
GO:0061098: positive regulation of protein tyrosine kinase activity	CD24	CD24 molecule	0.0010716397024626808
GO:0061098: positive regulation of protein tyrosine kinase activity	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008277527067870903
GO:0061098: positive regulation of protein tyrosine kinase activity	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009308798552369753
GO:0061098: positive regulation of protein tyrosine kinase activity	PTPN1	protein tyrosine phosphatase, non-receptor type 1	-0.0010418241030069751
GO:0061098: positive regulation of protein tyrosine kinase activity	RELN	reelin	0.0015369846024346167
GO:0070371: ERK1 and ERK2 cascade	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011245650318756969
GO:0070371: ERK1 and ERK2 cascade	AVP	arginine vasopressin	-0.0009309082047241992
GO:0070371: ERK1 and ERK2 cascade	IGF1	insulin-like growth factor 1 (somatomedin C)	0.000129329580212819
GO:0070371: ERK1 and ERK2 cascade	MED1	mediator complex subunit 1	0.0011212181192247921
GO:0070371: ERK1 and ERK2 cascade	SOX9	SRY (sex determining region Y)-box 9	-0.0005150462600783928
GO:0070471: uterine smooth muscle contraction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:0071260: cellular response to mechanical stimulus	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011308490019734615
GO:0071260: cellular response to mechanical stimulus	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007290802436596669
GO:0071260: cellular response to mechanical stimulus	BAK1	BCL2-antagonist/killer 1	-0.001872236108850714
GO:0071260: cellular response to mechanical stimulus	BMP4	bone morphogenetic protein 4	-0.0003220266518879278
GO:0071260: cellular response to mechanical stimulus	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.0029070189298056157
GO:0071260: cellular response to mechanical stimulus	CASP8AP2	caspase 8 associated protein 2	0.0012695237955783517
GO:0071260: cellular response to mechanical stimulus	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005345261633046915
GO:0071260: cellular response to mechanical stimulus	CHEK1	checkpoint kinase 1	0.0008983420885444516
GO:0071260: cellular response to mechanical stimulus	COL1A1	collagen, type I, alpha 1	-0.000525206645263559
GO:0071260: cellular response to mechanical stimulus	EGR1	early growth response 1	0.0010909384885159697
GO:0071260: cellular response to mechanical stimulus	FAS	Fas cell surface death receptor	-3.315298479412217e-5
GO:0071260: cellular response to mechanical stimulus	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016123313902588997
GO:0071260: cellular response to mechanical stimulus	KCNJ2	potassium inwardly-rectifying channel, subfamily J, member 2	-0.0007752898729378257
GO:0071260: cellular response to mechanical stimulus	MMP7	matrix metallopeptidase 7 (matrilysin, uterine)	0.0004249327201853577
GO:0071260: cellular response to mechanical stimulus	SOX9	SRY (sex determining region Y)-box 9	-0.0005172766424310747
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011358793941080557
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	GDNF	glial cell derived neurotrophic factor	0.0004451213142344933
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	GREM1	gremlin 1, DAN family BMP antagonist	-0.0008294600210623038
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	LGR4	leucine-rich repeat containing G protein-coupled receptor 4	0.0003088071821391137
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	LHX1	LIM homeobox 1	-0.0007599456780626497
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	PAX2	paired box 2	-0.0016165706499387548
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	PAX8	paired box 8	0.0009488374160705638
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SALL1	spalt-like transcription factor 1	-0.002442120875766333
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SIX1	SIX homeobox 1	-0.001872528142639171
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SMO	smoothened, frizzled class receptor	0.0021421752555515613
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	SOX9	SRY (sex determining region Y)-box 9	-0.0005194276940881326
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	TGFB1	transforming growth factor, beta 1	-7.324219900892425e-5
GO:0090190: positive regulation of branching involved in ureteric bud morphogenesis	VEGFA	vascular endothelial growth factor A	0.0005962983015804184
GO:1900020: positive regulation of protein kinase C activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011306837922656992
GO:1900020: positive regulation of protein kinase C activity	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006657721693316115
GO:1901201: regulation of extracellular matrix assembly	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011289600098693799
GO:1901201: regulation of extracellular matrix assembly	NOTCH1	notch 1	0.000517008315785537
GO:1902632: positive regulation of membrane hyperpolarization	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:1903598: positive regulation of gap junction assembly	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011274210960150425
GO:1903598: positive regulation of gap junction assembly	CAV1	caveolin 1, caveolae protein, 22kDa	-0.000533000302787689
GO:1903779: regulation of cardiac conduction	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011413244618989529
GO:2000650: negative regulation of sodium ion transmembrane transporter activity	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011440163609418423
GO:2000650: negative regulation of sodium ion transmembrane transporter activity	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.0022756847164011945
GO:2001238: positive regulation of extrinsic apoptotic signaling pathway	AGT	angiotensinogen (serpin peptidase inhibitor, clade A, member 8)	-0.0011188591065510768
GO:2001238: positive regulation of extrinsic apoptotic signaling pathway	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005313378843129163
GO:2001238: positive regulation of extrinsic apoptotic signaling pathway	PML	promyelocytic leukemia	-0.0006749960214677706
KEGG:04080: Neuroactive ligand-receptor interaction	AGTR1	angiotensin II receptor, type 1	0.00035059797124114064
KEGG:04080: Neuroactive ligand-receptor interaction	CHRNB1	cholinergic receptor, nicotinic, beta 1 (muscle)	-7.4441822803153376e-6
KEGG:04080: Neuroactive ligand-receptor interaction	CHRNB2	cholinergic receptor, nicotinic, beta 2 (neuronal)	-0.0007775952737220377
KEGG:04080: Neuroactive ligand-receptor interaction	CSH1	chorionic somatomammotropin hormone 1 (placental lactogen)	-0.0002574152848051912
KEGG:04080: Neuroactive ligand-receptor interaction	DRD2	dopamine receptor D2	-0.00023368620618888984
KEGG:04080: Neuroactive ligand-receptor interaction	DRD4	dopamine receptor D4	-0.001943584985792012
KEGG:04080: Neuroactive ligand-receptor interaction	GABRA4	gamma-aminobutyric acid (GABA) A receptor, alpha 4	-0.0014826296661433033
KEGG:04080: Neuroactive ligand-receptor interaction	GNRHR	gonadotropin-releasing hormone receptor	0.0007407863776446288
KEGG:04080: Neuroactive ligand-receptor interaction	GRIK5	glutamate receptor, ionotropic, kainate 5	-0.0002329090563643156
KEGG:04080: Neuroactive ligand-receptor interaction	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005246970516044354
KEGG:04080: Neuroactive ligand-receptor interaction	HTR6	5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled	-0.0010813633042108214
KEGG:04080: Neuroactive ligand-receptor interaction	LEP	leptin	0.0031865997634206895
KEGG:04080: Neuroactive ligand-receptor interaction	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00029318047410087497
KEGG:04080: Neuroactive ligand-receptor interaction	PRLR	prolactin receptor	0.0021826627020479807
KEGG:04080: Neuroactive ligand-receptor interaction	THRA	thyroid hormone receptor, alpha	0.0007633707382364813
KEGG:04080: Neuroactive ligand-receptor interaction	THRB	thyroid hormone receptor, beta	0.0019430701777553027
KEGG:04270: Vascular smooth muscle contraction	AGTR1	angiotensin II receptor, type 1	0.00034777176244726323
KEGG:04270: Vascular smooth muscle contraction	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007726285830895634
KEGG:04270: Vascular smooth muscle contraction	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006502154596969324
KEGG:04270: Vascular smooth muscle contraction	PLA2G5	phospholipase A2, group V	0.0020634400017439875
KEGG:04270: Vascular smooth muscle contraction	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015076845374553357
KEGG:04270: Vascular smooth muscle contraction	PRKCA	protein kinase C, alpha	-5.9074796526255695e-6
KEGG:04270: Vascular smooth muscle contraction	PRKCD	protein kinase C, delta	-0.0011175627256523007
KEGG:04270: Vascular smooth muscle contraction	PRKX	protein kinase, X-linked	0.00038938186318328007
KEGG:04270: Vascular smooth muscle contraction	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014867845994448318
KEGG:04270: Vascular smooth muscle contraction	RHOA	ras homolog family member A	0.0006644111183773568
KEGG:05200: Pathways in cancer	AGTR1	angiotensin II receptor, type 1	0.00034753532408598174
KEGG:05200: Pathways in cancer	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007292479628088175
KEGG:05200: Pathways in cancer	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.000624955052681974
KEGG:05200: Pathways in cancer	APC	adenomatous polyposis coli	0.0006430765155879745
KEGG:05200: Pathways in cancer	AR	androgen receptor	0.002634242820837509
KEGG:05200: Pathways in cancer	AXIN1	axin 1	-0.0007317074748467242
KEGG:05200: Pathways in cancer	BAX	BCL2-associated X protein	-0.00042452127231799186
KEGG:05200: Pathways in cancer	BCL2	B-cell CLL/lymphoma 2	-5.116964969240771e-6
KEGG:05200: Pathways in cancer	BIRC5	baculoviral IAP repeat containing 5	-0.00026018397063388385
KEGG:05200: Pathways in cancer	BMP4	bone morphogenetic protein 4	-0.00032207511799027863
KEGG:05200: Pathways in cancer	BRCA2	breast cancer 2, early onset	-1.0177525361501938e-5
KEGG:05200: Pathways in cancer	CCNA1	cyclin A1	-0.0017566511546665902
KEGG:05200: Pathways in cancer	CCND1	cyclin D1	-0.002627716223086892
KEGG:05200: Pathways in cancer	CCNE1	cyclin E1	0.00037025602622588845
KEGG:05200: Pathways in cancer	CCNE2	cyclin E2	0.0011049610661534755
KEGG:05200: Pathways in cancer	CDC42	cell division cycle 42	0.0012381436869618632
KEGG:05200: Pathways in cancer	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017548340934393533
KEGG:05200: Pathways in cancer	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018324229590384975
KEGG:05200: Pathways in cancer	CKS2	CDC28 protein kinase regulatory subunit 2	-4.828990952743844e-5
KEGG:05200: Pathways in cancer	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.285031067242047e-5
KEGG:05200: Pathways in cancer	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011680281936528781
KEGG:05200: Pathways in cancer	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012063082190449047
KEGG:05200: Pathways in cancer	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007932901940236522
KEGG:05200: Pathways in cancer	E2F1	E2F transcription factor 1	0.0020940947519646176
KEGG:05200: Pathways in cancer	E2F3	E2F transcription factor 3	0.0021585216052612214
KEGG:05200: Pathways in cancer	EGFR	epidermal growth factor receptor	0.0006843054887895296
KEGG:05200: Pathways in cancer	FAS	Fas cell surface death receptor	-3.318796770827808e-5
KEGG:05200: Pathways in cancer	FGF3	fibroblast growth factor 3	0.0015583623166298712
KEGG:05200: Pathways in cancer	FGF5	fibroblast growth factor 5	-0.0010922603319737506
KEGG:05200: Pathways in cancer	FGF7	fibroblast growth factor 7	0.0006326358006618654
KEGG:05200: Pathways in cancer	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009820564825246728
KEGG:05200: Pathways in cancer	FGFR2	fibroblast growth factor receptor 2	0.0007618709844360252
KEGG:05200: Pathways in cancer	FGFR3	fibroblast growth factor receptor 3	0.0002219821041618055
KEGG:05200: Pathways in cancer	FLT3	fms-related tyrosine kinase 3	-0.0006801293417308777
KEGG:05200: Pathways in cancer	FOXO1	forkhead box O1	0.0017972413502108655
KEGG:05200: Pathways in cancer	FZD3	frizzled class receptor 3	0.00037754096218346343
KEGG:05200: Pathways in cancer	FZD7	frizzled class receptor 7	0.0010684524267841437
KEGG:05200: Pathways in cancer	GLI1	GLI family zinc finger 1	-0.0012948875572445205
KEGG:05200: Pathways in cancer	GLI2	GLI family zinc finger 2	0.0018503085215558056
KEGG:05200: Pathways in cancer	GLI3	GLI family zinc finger 3	-0.0021477857995334184
KEGG:05200: Pathways in cancer	GRB2	growth factor receptor-bound protein 2	0.00042890537229290824
KEGG:05200: Pathways in cancer	GSK3B	glycogen synthase kinase 3 beta	0.0015464803123016698
KEGG:05200: Pathways in cancer	GSTP1	glutathione S-transferase pi 1	0.00023115625791369788
KEGG:05200: Pathways in cancer	HDAC2	histone deacetylase 2	-0.0012055335931622567
KEGG:05200: Pathways in cancer	HIF1A	hypoxia inducible factor 1, alpha subunit (basic helix-loop-helix transcription factor)	-0.0006455051398532947
KEGG:05200: Pathways in cancer	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013034899531345475
KEGG:05200: Pathways in cancer	IGF1R	insulin-like growth factor 1 receptor	0.0010705675369078605
KEGG:05200: Pathways in cancer	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.001397573457982593
KEGG:05200: Pathways in cancer	ITGA6	integrin, alpha 6	0.0016654431816611522
KEGG:05200: Pathways in cancer	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.0024220572218738795
KEGG:05200: Pathways in cancer	JUP	junction plakoglobin	-0.001476930825441092
KEGG:05200: Pathways in cancer	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.0002738835427770115
KEGG:05200: Pathways in cancer	LAMB2	laminin, beta 2 (laminin S)	-0.0013066990581547021
KEGG:05200: Pathways in cancer	LEF1	lymphoid enhancer-binding factor 1	-0.00010032595847838259
KEGG:05200: Pathways in cancer	MLH1	mutL homolog 1	0.002332503326640001
KEGG:05200: Pathways in cancer	MMP2	matrix metallopeptidase 2 (gelatinase A, 72kDa gelatinase, 72kDa type IV collagenase)	-0.001129030532031635
KEGG:05200: Pathways in cancer	MSH2	mutS homolog 2	0.0013896006625862998
KEGG:05200: Pathways in cancer	MSH3	mutS homolog 3	-0.0005297582184598427
KEGG:05200: Pathways in cancer	MSH6	mutS homolog 6	0.0010758355738002222
KEGG:05200: Pathways in cancer	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011346829922679578
KEGG:05200: Pathways in cancer	PAX8	paired box 8	0.0009469430853739512
KEGG:05200: Pathways in cancer	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.000360204801062746
KEGG:05200: Pathways in cancer	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007795017904443304
KEGG:05200: Pathways in cancer	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015327982703546258
KEGG:05200: Pathways in cancer	PML	promyelocytic leukemia	-0.0006791343357943939
KEGG:05200: Pathways in cancer	PRKCA	protein kinase C, alpha	-5.8679865999253985e-6
KEGG:05200: Pathways in cancer	PRKX	protein kinase, X-linked	0.00039379988542872666
KEGG:05200: Pathways in cancer	PTCH1	patched 1	-6.599530310629089e-5
KEGG:05200: Pathways in cancer	PTEN	phosphatase and tensin homolog	1.7445182939432994e-5
KEGG:05200: Pathways in cancer	RAD51	RAD51 recombinase	-0.0018582796598198695
KEGG:05200: Pathways in cancer	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.001496329930930697
KEGG:05200: Pathways in cancer	RB1	retinoblastoma 1	-0.0014914358284641802
KEGG:05200: Pathways in cancer	RET	ret proto-oncogene	-0.0004905200765679358
KEGG:05200: Pathways in cancer	RHOA	ras homolog family member A	0.0006686522994744405
KEGG:05200: Pathways in cancer	RXRA	retinoid X receptor, alpha	0.0011132437576497677
KEGG:05200: Pathways in cancer	SHH	sonic hedgehog	0.0005986343010761837
KEGG:05200: Pathways in cancer	SKP2	S-phase kinase-associated protein 2, E3 ubiquitin protein ligase	-0.0005362216081415751
KEGG:05200: Pathways in cancer	SMO	smoothened, frizzled class receptor	0.002135621711913838
KEGG:05200: Pathways in cancer	STAT5A	signal transducer and activator of transcription 5A	0.001593730884057201
KEGG:05200: Pathways in cancer	TCF7L2	transcription factor 7-like 2 (T-cell specific, HMG-box)	0.0005725618128288141
KEGG:05200: Pathways in cancer	TGFB1	transforming growth factor, beta 1	-7.283372914293475e-5
KEGG:05200: Pathways in cancer	TGFB2	transforming growth factor, beta 2	-0.001057378518212652
KEGG:05200: Pathways in cancer	TGFB3	transforming growth factor, beta 3	-0.0018203254005380478
KEGG:05200: Pathways in cancer	TGFBR1	transforming growth factor, beta receptor 1	0.0003391849923124031
KEGG:05200: Pathways in cancer	TP53	tumor protein p53	0.0011732916887733885
KEGG:05200: Pathways in cancer	TPR	translocated promoter region, nuclear basket protein	-0.0006959176399215369
KEGG:05200: Pathways in cancer	VEGFA	vascular endothelial growth factor A	0.0005936513709879255
KEGG:05200: Pathways in cancer	VEGFC	vascular endothelial growth factor C	-0.003358503626733516
KEGG:05200: Pathways in cancer	WNT1	wingless-type MMTV integration site family, member 1	0.0007856803371034066
KEGG:05200: Pathways in cancer	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013859491656375256
KEGG:05200: Pathways in cancer	WNT4	wingless-type MMTV integration site family, member 4	-0.00025125883013474786
KEGG:05200: Pathways in cancer	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006662623515509103
KEGG:05200: Pathways in cancer	WNT7A	wingless-type MMTV integration site family, member 7A	1.9609304101290968e-5
KEGG:04022: cGMP-PKG signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00034859268948493204
KEGG:04022: cGMP-PKG signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007225817719238703
KEGG:04022: cGMP-PKG signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006210979171807569
KEGG:04022: cGMP-PKG signaling pathway	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0014853337829943084
KEGG:04022: cGMP-PKG signaling pathway	CREB1	cAMP responsive element binding protein 1	0.000648961978164158
KEGG:04022: cGMP-PKG signaling pathway	GATA4	GATA binding protein 4	-0.0010834492017024245
KEGG:04022: cGMP-PKG signaling pathway	INSR	insulin receptor	-0.0013487715813365352
KEGG:04022: cGMP-PKG signaling pathway	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007704561243640074
KEGG:04022: cGMP-PKG signaling pathway	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006479979619600898
KEGG:04022: cGMP-PKG signaling pathway	MEF2C	myocyte enhancer factor 2C	0.0009623584081566342
KEGG:04022: cGMP-PKG signaling pathway	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007731994922275434
KEGG:04022: cGMP-PKG signaling pathway	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00015005615254737382
KEGG:04022: cGMP-PKG signaling pathway	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014845086216911882
KEGG:04022: cGMP-PKG signaling pathway	RHOA	ras homolog family member A	0.0006635702649900567
KEGG:04261: Adrenergic signaling in cardiomyocytes	AGTR1	angiotensin II receptor, type 1	0.00034856672119127637
KEGG:04261: Adrenergic signaling in cardiomyocytes	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007080662896574123
KEGG:04261: Adrenergic signaling in cardiomyocytes	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006121077292545787
KEGG:04261: Adrenergic signaling in cardiomyocytes	ATP1B3	ATPase, Na+/K+ transporting, beta 3 polypeptide	-0.0014621576289393064
KEGG:04261: Adrenergic signaling in cardiomyocytes	BCL2	B-cell CLL/lymphoma 2	-5.544687975874962e-6
KEGG:04261: Adrenergic signaling in cardiomyocytes	CACNB3	calcium channel, voltage-dependent, beta 3 subunit	0.00020853217890244742
KEGG:04261: Adrenergic signaling in cardiomyocytes	CREB1	cAMP responsive element binding protein 1	0.0006326820546893797
KEGG:04261: Adrenergic signaling in cardiomyocytes	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007594704790757688
KEGG:04261: Adrenergic signaling in cardiomyocytes	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00014373582046099716
KEGG:04261: Adrenergic signaling in cardiomyocytes	PPP2R3A	protein phosphatase 2, regulatory subunit B'', alpha	-4.216054407415235e-5
KEGG:04261: Adrenergic signaling in cardiomyocytes	PRKCA	protein kinase C, alpha	-6.153864745554966e-6
KEGG:04261: Adrenergic signaling in cardiomyocytes	PRKX	protein kinase, X-linked	0.00037626611359626954
KEGG:04020: Calcium signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00034661024807399355
KEGG:04020: Calcium signaling pathway	EGFR	epidermal growth factor receptor	0.0006719619679738325
KEGG:04020: Calcium signaling pathway	ERBB4	v-erb-b2 avian erythroblastic leukemia viral oncogene homolog 4	-0.00017706689218756339
KEGG:04020: Calcium signaling pathway	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0005172444913433183
KEGG:04020: Calcium signaling pathway	HTR6	5-hydroxytryptamine (serotonin) receptor 6, G protein-coupled	-0.0010658225355745844
KEGG:04020: Calcium signaling pathway	ITPR1	inositol 1,4,5-trisphosphate receptor, type 1	-0.0007666911504247498
KEGG:04020: Calcium signaling pathway	ORAI2	ORAI calcium release-activated calcium modulator 2	0.0007224552284418561
KEGG:04020: Calcium signaling pathway	ORAI3	ORAI calcium release-activated calcium modulator 3	-0.0008751577028992488
KEGG:04020: Calcium signaling pathway	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00035189275728375835
KEGG:04020: Calcium signaling pathway	PLCB1	phospholipase C, beta 1 (phosphoinositide-specific)	0.00014868911896114464
KEGG:04020: Calcium signaling pathway	PRKCA	protein kinase C, alpha	-5.844379105646513e-6
KEGG:04020: Calcium signaling pathway	PRKX	protein kinase, X-linked	0.0003859988348092517
KEGG:04020: Calcium signaling pathway	SPHK1	sphingosine kinase 1	0.001783148414863169
GO:0003081: regulation of systemic arterial blood pressure by renin-angiotensin	AGTR1	angiotensin II receptor, type 1	0.0003408727207204732
GO:0007266: Rho protein signal transduction	AGTR1	angiotensin II receptor, type 1	0.00034745936097046196
GO:0007266: Rho protein signal transduction	CFL1	cofilin 1 (non-muscle)	-0.0011751921834503032
GO:0007266: Rho protein signal transduction	CNKSR1	connector enhancer of kinase suppressor of Ras 1	-0.0011061531138089678
GO:0007266: Rho protein signal transduction	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0021878464033907876
GO:0007266: Rho protein signal transduction	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.0012586585921412234
GO:0007266: Rho protein signal transduction	PHACTR4	phosphatase and actin regulator 4	-0.0017909589800796195
GO:0007266: Rho protein signal transduction	RHOA	ras homolog family member A	0.0006697706205168873
GO:0007266: Rho protein signal transduction	ROPN1B	rhophilin associated tail protein 1B	0.0005978015550404628
GO:0019722: calcium-mediated signaling	AGTR1	angiotensin II receptor, type 1	0.0003470865204972392
GO:0019722: calcium-mediated signaling	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007919562854707342
GO:0019722: calcium-mediated signaling	SPHK1	sphingosine kinase 1	0.0018046616123086462
GO:0032430: positive regulation of phospholipase A2 activity	AGTR1	angiotensin II receptor, type 1	0.0003408727207204732
GO:0038166: angiotensin-activated signaling pathway	AGTR1	angiotensin II receptor, type 1	0.0003348582837193238
GO:0038166: angiotensin-activated signaling pathway	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.00030176515636567427
GO:0042312: regulation of vasodilation	AGTR1	angiotensin II receptor, type 1	0.0003408727207204732
GO:0050727: regulation of inflammatory response	AGTR1	angiotensin II receptor, type 1	0.00034965335038647944
GO:0050727: regulation of inflammatory response	BRD4	bromodomain containing 4	0.0005486325697231975
GO:0050727: regulation of inflammatory response	JAK2	Janus kinase 2	-3.67905787138626e-5
GO:0050727: regulation of inflammatory response	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0013931861534899257
GO:0050727: regulation of inflammatory response	MAS1	MAS1 proto-oncogene, G protein-coupled receptor	0.0002963608384649917
GO:0050727: regulation of inflammatory response	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0010936282909919455
GO:0051482: positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G-protein coupled signaling pathway	AGTR1	angiotensin II receptor, type 1	0.00034956004053939113
GO:0051482: positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G-protein coupled signaling pathway	DRD2	dopamine receptor D2	-0.00022168420679005544
GO:0051482: positive regulation of cytosolic calcium ion concentration involved in phospholipase C-activating G-protein coupled signaling pathway	HTR2C	5-hydroxytryptamine (serotonin) receptor 2C, G protein-coupled	-0.0004873807284922392
GO:0060326: cell chemotaxis	AGTR1	angiotensin II receptor, type 1	0.000346920128896882
GO:0060326: cell chemotaxis	AZU1	azurocidin 1	0.00019664738122811834
GO:0060326: cell chemotaxis	BIN2	bridging integrator 2	-0.0016348003649213076
GO:0060326: cell chemotaxis	CXCL12	chemokine (C-X-C motif) ligand 12	-0.0012011471703642527
GO:0060326: cell chemotaxis	ENG	endoglin	0.0008205391086668357
GO:0060326: cell chemotaxis	EPHB1	EPH receptor B1	0.0019525787321272947
GO:0060326: cell chemotaxis	HMGB2	high mobility group box 2	0.00030318353180710736
GO:0060326: cell chemotaxis	KIT	v-kit Hardy-Zuckerman 4 feline sarcoma viral oncogene homolog	0.00027175530725491085
GO:0060326: cell chemotaxis	LEF1	lymphoid enhancer-binding factor 1	-0.00010041531808374982
GO:0060326: cell chemotaxis	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003579372517893112
GO:0060326: cell chemotaxis	PRKCD	protein kinase C, delta	-0.0011208776123495456
GO:0086097: phospholipase C-activating angiotensin-activated signaling pathway	AGTR1	angiotensin II receptor, type 1	0.0003408727207204732
GO:0006418: tRNA aminoacylation for protein translation	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0011874080425433114
GO:0006418: tRNA aminoacylation for protein translation	LARS2	leucyl-tRNA synthetase 2, mitochondrial	0.00044953839655748263
GO:0006915: apoptotic process	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0012090167990556288
GO:0006915: apoptotic process	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007302741753768608
GO:0006915: apoptotic process	APC	adenomatous polyposis coli	0.0006437735456922245
GO:0006915: apoptotic process	AXIN1	axin 1	-0.0007327393983158618
GO:0006915: apoptotic process	BAK1	BCL2-antagonist/killer 1	-0.0018753961632275349
GO:0006915: apoptotic process	BAX	BCL2-associated X protein	-0.0004251405877996648
GO:0006915: apoptotic process	BCL2	B-cell CLL/lymphoma 2	-4.977765350639248e-6
GO:0006915: apoptotic process	BCL2L11	BCL2-like 11 (apoptosis facilitator)	-0.000774660858702622
GO:0006915: apoptotic process	BFAR	bifunctional apoptosis regulator	-0.00036936257660740704
GO:0006915: apoptotic process	BNIP3	BCL2/adenovirus E1B 19kDa interacting protein 3	0.002911376222599086
GO:0006915: apoptotic process	BUB1	BUB1 mitotic checkpoint serine/threonine kinase	0.001324194682342641
GO:0006915: apoptotic process	BUB1B	BUB1 mitotic checkpoint serine/threonine kinase B	-0.0012811083549150622
GO:0006915: apoptotic process	CDK1	cyclin-dependent kinase 1	0.0003106340055053691
GO:0006915: apoptotic process	CIB1	calcium and integrin binding 1 (calmyrin)	5.498901725151006e-5
GO:0006915: apoptotic process	CITED1	Cbp/p300-interacting transactivator, with Glu/Asp-rich carboxy-terminal domain, 1	0.0028169464176882207
GO:0006915: apoptotic process	CKAP2	cytoskeleton associated protein 2	4.881591577572227e-5
GO:0006915: apoptotic process	CST3	cystatin C	-6.975577470499739e-5
GO:0006915: apoptotic process	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011702062396451215
GO:0006915: apoptotic process	CXCR4	chemokine (C-X-C motif) receptor 4	0.0007942356023770181
GO:0006915: apoptotic process	DAXX	death-domain associated protein	0.000891037885543598
GO:0006915: apoptotic process	DHCR24	24-dehydrocholesterol reductase	-0.0017067530777823052
GO:0006915: apoptotic process	DIABLO	diablo, IAP-binding mitochondrial protein	-0.000595595087497331
GO:0006915: apoptotic process	DOCK1	dedicator of cytokinesis 1	-0.0006838636074784751
GO:0006915: apoptotic process	DSG2	desmoglein 2	1.6684566336292046e-5
GO:0006915: apoptotic process	DSP	desmoplakin	-5.6663577730001096e-5
GO:0006915: apoptotic process	E2F1	E2F transcription factor 1	0.002096755827305743
GO:0006915: apoptotic process	EDAR	ectodysplasin A receptor	0.0005937664990297261
GO:0006915: apoptotic process	ESPL1	extra spindle pole bodies homolog 1 (S. cerevisiae)	0.00019668379559849574
GO:0006915: apoptotic process	FAS	Fas cell surface death receptor	-3.326835424946725e-5
GO:0006915: apoptotic process	FEM1B	fem-1 homolog b (C. elegans)	-0.004129437588366252
GO:0006915: apoptotic process	FGF8	fibroblast growth factor 8 (androgen-induced)	0.0009834224895683029
GO:0006915: apoptotic process	FGFR2	fibroblast growth factor receptor 2	0.0007628372960817823
GO:0006915: apoptotic process	FOXO1	forkhead box O1	0.0017995590026224572
GO:0006915: apoptotic process	GJA1	gap junction protein, alpha 1, 43kDa	-0.00016112545416969705
GO:0006915: apoptotic process	GLRX2	glutaredoxin 2	0.0011156950979251804
GO:0006915: apoptotic process	GREM1	gremlin 1, DAN family BMP antagonist	-0.000826705940735126
GO:0006915: apoptotic process	HMGB1	high mobility group box 1	-0.0007762934518108861
GO:0006915: apoptotic process	HMGB2	high mobility group box 2	0.00030641277187692326
GO:0006915: apoptotic process	IFNA2	interferon, alpha 2	-0.0017166446112798204
GO:0006915: apoptotic process	IFNG	interferon, gamma	-4.8932342679812794e-5
GO:0006915: apoptotic process	IGFBP3	insulin-like growth factor binding protein 3	0.0008366433195386397
GO:0006915: apoptotic process	JAK2	Janus kinase 2	-3.1978769454342186e-5
GO:0006915: apoptotic process	KLF11	Kruppel-like factor 11	0.0006160522158830203
GO:0006915: apoptotic process	KMT2A	lysine (K)-specific methyltransferase 2A	0.0006603287159805296
GO:0006915: apoptotic process	KPNB1	karyopherin (importin) beta 1	0.0007716663649921333
GO:0006915: apoptotic process	MAP1S	microtubule-associated protein 1S	0.0005305226458520359
GO:0006915: apoptotic process	MAPT	microtubule-associated protein tau	0.0015512119513917217
GO:0006915: apoptotic process	MEF2C	myocyte enhancer factor 2C	0.0009728470760646268
GO:0006915: apoptotic process	MELK	maternal embryonic leucine zipper kinase	0.002068095947441584
GO:0006915: apoptotic process	NOC2L	nucleolar complex associated 2 homolog (S. cerevisiae)	-0.00015109743019154422
GO:0006915: apoptotic process	PAEP	progestagen-associated endometrial protein	0.0010649492454120446
GO:0006915: apoptotic process	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.0021868631814087086
GO:0006915: apoptotic process	PAX3	paired box 3	-0.002944213831181378
GO:0006915: apoptotic process	PLK3	polo-like kinase 3	0.0025634363471375384
GO:0006915: apoptotic process	PML	promyelocytic leukemia	-0.0006799470690519058
GO:0006915: apoptotic process	PPP1R13L	protein phosphatase 1, regulatory subunit 13 like	-0.0014731505524553797
GO:0006915: apoptotic process	PRKCD	protein kinase C, delta	-0.0011277401215461836
GO:0006915: apoptotic process	PSMA5	proteasome (prosome, macropain) subunit, alpha type, 5	0.0003317158097982077
GO:0006915: apoptotic process	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.001094786897076217
GO:0006915: apoptotic process	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-5.9830520284208235e-5
GO:0006915: apoptotic process	PTEN	phosphatase and tensin homolog	1.737080243959784e-5
GO:0006915: apoptotic process	RAD21	RAD21 homolog (S. pombe)	-0.00010240308952538406
GO:0006915: apoptotic process	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014982218551294762
GO:0006915: apoptotic process	S100A14	S100 calcium binding protein A14	-0.0021585857386697133
GO:0006915: apoptotic process	SIX1	SIX homeobox 1	-0.0018692210724397707
GO:0006915: apoptotic process	STEAP3	STEAP family member 3, metalloreductase	0.0026082397026490163
GO:0006915: apoptotic process	STK24	serine/threonine kinase 24	0.0026936240307968017
GO:0006915: apoptotic process	SULF1	sulfatase 1	-0.000804827096883814
GO:0006915: apoptotic process	TFDP1	transcription factor Dp-1	0.0014437072999589984
GO:0006915: apoptotic process	TGFBR1	transforming growth factor, beta receptor 1	0.00033965305776263195
GO:0006915: apoptotic process	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011160752793497309
GO:0006915: apoptotic process	TNFRSF10C	tumor necrosis factor receptor superfamily, member 10c, decoy without an intracellular domain	0.0003172603557685242
GO:0006915: apoptotic process	TNFRSF21	tumor necrosis factor receptor superfamily, member 21	0.0003482531960852242
GO:0006915: apoptotic process	TP53	tumor protein p53	0.0011749295130844952
GO:0006915: apoptotic process	TPX2	TPX2, microtubule-associated	0.0013408903692152202
GO:0006915: apoptotic process	TRAIP	TRAF interacting protein	0.0010220359191476969
GO:0031398: positive regulation of protein ubiquitination	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.001201006959874168
GO:0031398: positive regulation of protein ubiquitination	ANGPT1	angiopoietin 1	0.0008913658074095579
GO:0031398: positive regulation of protein ubiquitination	AXIN1	axin 1	-0.0007213068450650998
GO:0031398: positive regulation of protein ubiquitination	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005316868040034787
GO:0031398: positive regulation of protein ubiquitination	CDK5RAP3	CDK5 regulatory subunit associated protein 3	0.0011275586233072874
GO:0031398: positive regulation of protein ubiquitination	FGFR3	fibroblast growth factor receptor 3	0.00021868572785721453
GO:0031398: positive regulation of protein ubiquitination	RCHY1	ring finger and CHY zinc finger domain containing 1, E3 ubiquitin protein ligase	-0.0010856415125516392
GO:0031398: positive regulation of protein ubiquitination	SPHK1	sphingosine kinase 1	0.001788118024666241
GO:0031398: positive regulation of protein ubiquitination	WFS1	Wolfram syndrome 1 (wolframin)	0.0005759734548774605
GO:0060510: Type II pneumocyte differentiation	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.0012136588829649445
GO:0060510: Type II pneumocyte differentiation	GATA6	GATA binding protein 6	-2.6558144610594338e-5
GO:0060510: Type II pneumocyte differentiation	IGF1	insulin-like growth factor 1 (somatomedin C)	0.00013298208500483555
GO:0060510: Type II pneumocyte differentiation	NFIB	nuclear factor I/B	0.0029447623268373043
GO:1901216: positive regulation of neuron death	AIMP2	aminoacyl tRNA synthetase complex-interacting multifunctional protein 2	0.001196310183674719
GO:1901216: positive regulation of neuron death	DAXX	death-domain associated protein	0.0008705266213619486
GO:1901216: positive regulation of neuron death	MAP3K5	mitogen-activated protein kinase kinase kinase 5	0.0003345509255520174
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	AKR1C1	aldo-keto reductase family 1, member C1	-0.00148423451174907
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.0003966706795817347
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTM1	glutathione S-transferase mu 1	-0.0014679242835137234
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTM2	glutathione S-transferase mu 2 (muscle)	-0.0019064539301062598
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTM3	glutathione S-transferase mu 3 (brain)	-0.0012838890629065195
KEGG:00980: Metabolism of xenobiotics by cytochrome P450	GSTP1	glutathione S-transferase pi 1	0.00022946726349868955
KEGG:00140: Steroid hormone biosynthesis	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014712069940209106
KEGG:00140: Steroid hormone biosynthesis	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039257039101310207
KEGG:00140: Steroid hormone biosynthesis	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.0001602285780180022
KEGG:00140: Steroid hormone biosynthesis	HSD17B6	hydroxysteroid (17-beta) dehydrogenase 6	-0.0008473314212231181
KEGG:00140: Steroid hormone biosynthesis	SRD5A2	steroid-5-alpha-reductase, alpha polypeptide 2 (3-oxo-5 alpha-steroid delta 4-dehydrogenase alpha 2)	-0.0006299596753869804
GO:0001523: retinoid metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014878829230930406
GO:0001523: retinoid metabolic process	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009319875632310968
GO:0001523: retinoid metabolic process	STRA6	stimulated by retinoic acid 6	-0.0016765788660167856
GO:0006805: xenobiotic metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014894220236712698
GO:0006805: xenobiotic metabolic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039783342561504093
GO:0006805: xenobiotic metabolic process	CYP27B1	cytochrome P450, family 27, subfamily B, polypeptide 1	-0.00047093615349892123
GO:0006805: xenobiotic metabolic process	CYP4B1	cytochrome P450, family 4, subfamily B, polypeptide 1	-0.0013561574475498969
GO:0006805: xenobiotic metabolic process	CYP7B1	cytochrome P450, family 7, subfamily B, polypeptide 1	0.00016330216790402937
GO:0006805: xenobiotic metabolic process	GCLM	glutamate-cysteine ligase, modifier subunit	-0.0037621196683362526
GO:0006805: xenobiotic metabolic process	GSTM1	glutathione S-transferase mu 1	-0.001474193294648619
GO:0006805: xenobiotic metabolic process	GSTM2	glutathione S-transferase mu 2 (muscle)	-0.001914348873701864
GO:0006805: xenobiotic metabolic process	GSTM3	glutathione S-transferase mu 3 (brain)	-0.0012889978412383455
GO:0006805: xenobiotic metabolic process	GSTP1	glutathione S-transferase pi 1	0.00023144083870978467
GO:0006805: xenobiotic metabolic process	SLC35D1	solute carrier family 35 (UDP-GlcA/UDP-GalNAc transporter), member D1	-6.696505371664458e-5
GO:0006805: xenobiotic metabolic process	SULT4A1	sulfotransferase family 4A, member 1	-0.001169072418976339
GO:0006805: xenobiotic metabolic process	UGDH	UDP-glucose 6-dehydrogenase	0.0005021831791150163
GO:0006805: xenobiotic metabolic process	UGP2	UDP-glucose pyrophosphorylase 2	0.0007852680716861071
GO:0007586: digestion	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014971109160566134
GO:0007586: digestion	NMU	neuromedin U	0.0018630596659245924
GO:0007586: digestion	PGC	progastricsin (pepsinogen C)	0.0013304868788324754
GO:0007586: digestion	SLC15A1	solute carrier family 15 (oligopeptide transporter), member 1	-0.0027773250682637486
GO:0007603: phototransduction, visible light	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014807883341618935
GO:0007603: phototransduction, visible light	LRP8	low density lipoprotein receptor-related protein 8, apolipoprotein e receptor	-0.0009278360939371802
GO:0007603: phototransduction, visible light	METAP1	methionyl aminopeptidase 1	-0.001011936479930692
GO:0007603: phototransduction, visible light	PRKCA	protein kinase C, alpha	-6.423218744170205e-6
GO:0007603: phototransduction, visible light	STRA6	stimulated by retinoic acid 6	-0.00166514686894011
GO:0015721: bile acid and bile salt transport	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014814815180658953
GO:0015721: bile acid and bile salt transport	RXRA	retinoid X receptor, alpha	0.0011089479183730645
GO:0030299: intestinal cholesterol absorption	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152422
GO:0030855: epithelial cell differentiation	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014884134398433025
GO:0030855: epithelial cell differentiation	BMP7	bone morphogenetic protein 7	0.0008552728225342672
GO:0030855: epithelial cell differentiation	CDK1	cyclin-dependent kinase 1	0.00030944164835295713
GO:0030855: epithelial cell differentiation	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.001272376519698676
GO:0030855: epithelial cell differentiation	DLX5	distal-less homeobox 5	-0.0032809231137978915
GO:0030855: epithelial cell differentiation	DLX6	distal-less homeobox 6	-0.00017992308000211823
GO:0030855: epithelial cell differentiation	FGFR2	fibroblast growth factor receptor 2	0.0007621441874261383
GO:0030855: epithelial cell differentiation	PCNA	proliferating cell nuclear antigen	0.0012237219721258719
GO:0030855: epithelial cell differentiation	SIX1	SIX homeobox 1	-0.0018681328167706032
GO:0030855: epithelial cell differentiation	STX2	syntaxin 2	0.00030777425472991286
GO:0030855: epithelial cell differentiation	VEGFA	vascular endothelial growth factor A	0.0005933402809700332
GO:0030855: epithelial cell differentiation	WT1	Wilms tumor 1	-0.0005061393445866928
GO:0042448: progesterone metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152422
GO:0042574: retinal metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014965655797961742
GO:0042574: retinal metabolic process	ALDH1A2	aldehyde dehydrogenase 1 family, member A2	-0.003034857237374307
GO:0042574: retinal metabolic process	CYP1B1	cytochrome P450, family 1, subfamily B, polypeptide 1	0.00039888720936128553
GO:0044597: daunorubicin metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152422
GO:0044598: doxorubicin metabolic process	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152422
GO:0046683: response to organophosphorus	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014904468159268125
GO:0046683: response to organophosphorus	RFC3	replication factor C (activator 1) 3, 38kDa	0.00031439345763005196
GO:0046683: response to organophosphorus	TRIM16	tripartite motif containing 16	-0.0014908189289572122
GO:0046683: response to organophosphorus	TYMS	thymidylate synthetase	0.001565154457501905
GO:0051260: protein homooligomerization	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014765187659678439
GO:0051260: protein homooligomerization	AXIN1	axin 1	-0.0007229657882528063
GO:0051260: protein homooligomerization	BAX	BCL2-associated X protein	-0.0004218136086391653
GO:0051260: protein homooligomerization	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005317576552947027
GO:0051260: protein homooligomerization	CEP57	centrosomal protein 57kDa	-0.0005350088650690891
GO:0051260: protein homooligomerization	CPT1A	carnitine palmitoyltransferase 1A (liver)	0.001263172456800182
GO:0051260: protein homooligomerization	CRYAA	crystallin, alpha A	-0.0006664269036593949
GO:0051260: protein homooligomerization	CRYAB	crystallin, alpha B	0.000970559561395578
GO:0051260: protein homooligomerization	ECT2	epithelial cell transforming 2	0.0010495059974709273
GO:0051260: protein homooligomerization	FAS	Fas cell surface death receptor	-3.2841269541606794e-5
GO:0051260: protein homooligomerization	FLOT1	flotillin 1	-0.0007567730086071729
GO:0051260: protein homooligomerization	HMOX1	heme oxygenase (decycling) 1	-0.00021458075627884068
GO:0051260: protein homooligomerization	KCNMA1	potassium large conductance calcium-activated channel, subfamily M, alpha member 1	-0.0006467593622725971
GO:0051260: protein homooligomerization	KCNV2	potassium channel, subfamily V, member 2	0.0009177516646332515
GO:0051260: protein homooligomerization	RAD51	RAD51 recombinase	-0.0018429989679449607
GO:0051260: protein homooligomerization	SLC1A1	solute carrier family 1 (neuronal/epithelial high affinity glutamate transporter, system Xag), member 1	-0.0008918154514029547
GO:0051260: protein homooligomerization	SYT1	synaptotagmin I	-0.0014261697188205772
GO:0071395: cellular response to jasmonic acid stimulus	AKR1C1	aldo-keto reductase family 1, member C1	-0.0014835116889152422
KEGG:04510: Focal adhesion	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007311119635755518
KEGG:04510: Focal adhesion	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006259514437814401
KEGG:04510: Focal adhesion	BCL2	B-cell CLL/lymphoma 2	-5.08703490194434e-6
KEGG:04510: Focal adhesion	CAV1	caveolin 1, caveolae protein, 22kDa	-0.0005354547470216653
KEGG:04510: Focal adhesion	CCND1	cyclin D1	-0.002635212744020828
KEGG:04510: Focal adhesion	CDC42	cell division cycle 42	0.001240958670856986
KEGG:04510: Focal adhesion	CHAD	chondroadherin	-0.0021796141370551162
KEGG:04510: Focal adhesion	COL11A1	collagen, type XI, alpha 1	-0.00044194481889284665
KEGG:04510: Focal adhesion	COL1A1	collagen, type I, alpha 1	-0.0005271888644141815
KEGG:04510: Focal adhesion	COL5A1	collagen, type V, alpha 1	-5.055327799347202e-5
KEGG:04510: Focal adhesion	COL5A2	collagen, type V, alpha 2	-0.0003463078706705323
KEGG:04510: Focal adhesion	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011676958739873388
KEGG:04510: Focal adhesion	DOCK1	dedicator of cytokinesis 1	-0.0006848151025178807
KEGG:04510: Focal adhesion	EGFR	epidermal growth factor receptor	0.0006866066273333794
KEGG:04510: Focal adhesion	GRB2	growth factor receptor-bound protein 2	0.0004297740014662271
KEGG:04510: Focal adhesion	GSK3B	glycogen synthase kinase 3 beta	0.0015498469809238434
KEGG:04510: Focal adhesion	IGF1	insulin-like growth factor 1 (somatomedin C)	0.0001311562435122707
KEGG:04510: Focal adhesion	IGF1R	insulin-like growth factor 1 receptor	0.0010719019030154214
KEGG:04510: Focal adhesion	ITGA3	integrin, alpha 3 (antigen CD49C, alpha 3 subunit of VLA-3 receptor)	0.0014001321876838256
KEGG:04510: Focal adhesion	ITGA6	integrin, alpha 6	0.0016709391283725886
KEGG:04510: Focal adhesion	ITGB1	integrin, beta 1 (fibronectin receptor, beta polypeptide, antigen CD29 includes MDF2, MSK12)	0.002428203028573578
KEGG:04510: Focal adhesion	ITGB4	integrin, beta 4	0.0005810363399926138
KEGG:04510: Focal adhesion	LAMB2	laminin, beta 2 (laminin S)	-0.0013099544265133154
KEGG:04510: Focal adhesion	PAK1	p21 protein (Cdc42/Rac)-activated kinase 1	-0.002188867920935422
KEGG:04510: Focal adhesion	PAK3	p21 protein (Cdc42/Rac)-activated kinase 3	-0.001259015985814135
KEGG:04510: Focal adhesion	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.0003620155184959441
KEGG:04510: Focal adhesion	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007812225179908655
KEGG:04510: Focal adhesion	PRKCA	protein kinase C, alpha	-5.841197382942626e-6
KEGG:04510: Focal adhesion	PTEN	phosphatase and tensin homolog	1.6638750585002384e-5
KEGG:04510: Focal adhesion	RAF1	Raf-1 proto-oncogene, serine/threonine kinase	0.0014995066995844876
KEGG:04510: Focal adhesion	RELN	reelin	0.0015384521456824546
KEGG:04510: Focal adhesion	RHOA	ras homolog family member A	0.0006700457466109883
KEGG:04510: Focal adhesion	THBS1	thrombospondin 1	-0.001036529724489554
KEGG:04510: Focal adhesion	THBS3	thrombospondin 3	0.0016180337455121824
KEGG:04510: Focal adhesion	THBS4	thrombospondin 4	-0.00044493624999140496
KEGG:04510: Focal adhesion	TNC	tenascin C	0.0007346498478172675
KEGG:04510: Focal adhesion	VEGFA	vascular endothelial growth factor A	0.000595741455227481
KEGG:04510: Focal adhesion	VEGFC	vascular endothelial growth factor C	-0.0033656769551247976
KEGG:05166: HTLV-I infection	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007301487265280056
KEGG:05166: HTLV-I infection	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006254672127444565
KEGG:05166: HTLV-I infection	APC	adenomatous polyposis coli	0.0006433803976048462
KEGG:05166: HTLV-I infection	BAX	BCL2-associated X protein	-0.00042482099359576997
KEGG:05166: HTLV-I infection	BUB1B	BUB1 mitotic checkpoint serine/threonine kinase B	-0.0012803290688684185
KEGG:05166: HTLV-I infection	BUB3	BUB3 mitotic checkpoint protein	0.0016214780334313293
KEGG:05166: HTLV-I infection	CCND1	cyclin D1	-0.0026314383248254767
KEGG:05166: HTLV-I infection	CDC20	cell division cycle 20	-0.00018846746314222146
KEGG:05166: HTLV-I infection	CDC23	cell division cycle 23	-0.0015523879891386671
KEGG:05166: HTLV-I infection	CDC27	cell division cycle 27	0.0005361343533335336
KEGG:05166: HTLV-I infection	CDKN2A	cyclin-dependent kinase inhibitor 2A	0.0017572163952829757
KEGG:05166: HTLV-I infection	CDKN2B	cyclin-dependent kinase inhibitor 2B (p15, inhibits CDK4)	-0.0018343261379406256
KEGG:05166: HTLV-I infection	CHEK1	checkpoint kinase 1	0.0008996601738664548
KEGG:05166: HTLV-I infection	CREB1	cAMP responsive element binding protein 1	0.0006579316282892347
KEGG:05166: HTLV-I infection	CTNNB1	catenin (cadherin-associated protein), beta 1, 88kDa	-0.00011677765719283281
KEGG:05166: HTLV-I infection	E2F1	E2F transcription factor 1	0.002096507746263104
KEGG:05166: HTLV-I infection	E2F3	E2F transcription factor 3	0.0021608927453620717
KEGG:05166: HTLV-I infection	EGR1	early growth response 1	0.0010924201527298136
KEGG:05166: HTLV-I infection	EGR2	early growth response 2	0.0014379525470036324
KEGG:05166: HTLV-I infection	ETS2	v-ets avian erythroblastosis virus E26 oncogene homolog 2	-0.0010148671813836451
KEGG:05166: HTLV-I infection	FZD3	frizzled class receptor 3	0.00037831878734940306
KEGG:05166: HTLV-I infection	FZD7	frizzled class receptor 7	0.0010700104194553235
KEGG:05166: HTLV-I infection	GSK3B	glycogen synthase kinase 3 beta	0.0015481661412175241
KEGG:05166: HTLV-I infection	ICAM1	intercellular adhesion molecule 1	0.0007288551674977714
KEGG:05166: HTLV-I infection	MAD2L1	MAD2 mitotic arrest deficient-like 1 (yeast)	0.0003186101421333457
KEGG:05166: HTLV-I infection	MSX1	msh homeobox 1	-0.0027673855446387935
KEGG:05166: HTLV-I infection	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011355383056244046
KEGG:05166: HTLV-I infection	NRP1	neuropilin 1	-0.0006427489251350101
KEGG:05166: HTLV-I infection	PCNA	proliferating cell nuclear antigen	0.0012255293610770976
KEGG:05166: HTLV-I infection	PDGFRB	platelet-derived growth factor receptor, beta polypeptide	-0.00036110174672602174
KEGG:05166: HTLV-I infection	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007803532808301467
KEGG:05166: HTLV-I infection	POLD1	polymerase (DNA directed), delta 1, catalytic subunit	-0.0004444761587691853
KEGG:05166: HTLV-I infection	POLD2	polymerase (DNA directed), delta 2, accessory subunit	0.0007395023232667378
KEGG:05166: HTLV-I infection	POLD3	polymerase (DNA-directed), delta 3, accessory subunit	0.0017395010973657733
KEGG:05166: HTLV-I infection	POLD4	polymerase (DNA-directed), delta 4, accessory subunit	-0.00063802531718759
KEGG:05166: HTLV-I infection	POLE	polymerase (DNA directed), epsilon, catalytic subunit	0.002946590605663571
KEGG:05166: HTLV-I infection	POLE2	polymerase (DNA directed), epsilon 2, accessory subunit	0.0013251314623131934
KEGG:05166: HTLV-I infection	POLE3	polymerase (DNA directed), epsilon 3, accessory subunit	0.0008044456814438909
KEGG:05166: HTLV-I infection	PRKX	protein kinase, X-linked	0.00039470143802264036
KEGG:05166: HTLV-I infection	PTTG1	pituitary tumor-transforming 1	-0.0003613993231280938
KEGG:05166: HTLV-I infection	PTTG2	pituitary tumor-transforming 2	-0.001723714808519096
KEGG:05166: HTLV-I infection	RB1	retinoblastoma 1	-0.0014930913695895952
KEGG:05166: HTLV-I infection	STAT5A	signal transducer and activator of transcription 5A	0.0015953326831280425
KEGG:05166: HTLV-I infection	TBPL1	TBP-like 1	-0.0007881631366525119
KEGG:05166: HTLV-I infection	TGFB1	transforming growth factor, beta 1	-7.303893692018507e-5
KEGG:05166: HTLV-I infection	TGFB2	transforming growth factor, beta 2	-0.0010587016430251186
KEGG:05166: HTLV-I infection	TGFB3	transforming growth factor, beta 3	-0.0018227899253952392
KEGG:05166: HTLV-I infection	TGFBR1	transforming growth factor, beta receptor 1	0.0003397120041990668
KEGG:05166: HTLV-I infection	TP53	tumor protein p53	0.0011750040561670674
KEGG:05166: HTLV-I infection	WNT1	wingless-type MMTV integration site family, member 1	0.0007864609236476779
KEGG:05166: HTLV-I infection	WNT10B	wingless-type MMTV integration site family, member 10B	-0.0013876971599892582
KEGG:05166: HTLV-I infection	WNT4	wingless-type MMTV integration site family, member 4	-0.00025196024583135583
KEGG:05166: HTLV-I infection	WNT5A	wingless-type MMTV integration site family, member 5A	-0.0006671137872325668
KEGG:05166: HTLV-I infection	WNT7A	wingless-type MMTV integration site family, member 7A	1.9579561150038024e-5
KEGG:05166: HTLV-I infection	XBP1	X-box binding protein 1	0.00026680014780548723
KEGG:05169: Epstein-Barr virus infection	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007262566190756878
KEGG:05169: Epstein-Barr virus infection	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006235672077896341
KEGG:05169: Epstein-Barr virus infection	BCL2	B-cell CLL/lymphoma 2	-4.882937985058572e-6
KEGG:05169: Epstein-Barr virus infection	CCNA1	cyclin A1	-0.001750148799974855
KEGG:05169: Epstein-Barr virus infection	CDK1	cyclin-dependent kinase 1	0.00030695291373004365
KEGG:05169: Epstein-Barr virus infection	CSNK2B	casein kinase 2, beta polypeptide	0.0015192769043707267
KEGG:05169: Epstein-Barr virus infection	GSK3B	glycogen synthase kinase 3 beta	0.0015411902495898234
KEGG:05169: Epstein-Barr virus infection	HDAC2	histone deacetylase 2	-0.0012038988901816755
KEGG:05169: Epstein-Barr virus infection	HSPA2	heat shock 70kDa protein 2	-0.00010345824148931563
KEGG:05169: Epstein-Barr virus infection	ICAM1	intercellular adhesion molecule 1	0.0007273626760522079
KEGG:05169: Epstein-Barr virus infection	IFNG	interferon, gamma	-4.900796379268895e-5


Excessive output truncated after 524364 bytes.

KEGG:05169: Epstein-Barr virus infection	IRAK1	interleukin-1 receptor-associated kinase 1	-0.0016002937427628534
KEGG:05169: Epstein-Barr virus infection	LYN	LYN proto-oncogene, Src family tyrosine kinase	-0.0014136847532094162
KEGG:05169: Epstein-Barr virus infection	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.001132511741412116
KEGG:05169: Epstein-Barr virus infection	NEDD4	neural precursor cell expressed, developmentally down-regulated 4, E3 ubiquitin protein ligase	0.002253522858241044
KEGG:05169: Epstein-Barr virus infection	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.0007767642901220775
KEGG:05169: Epstein-Barr virus infection	POLR2D	polymerase (RNA) II (DNA directed) polypeptide D	0.0018450093234024662
KEGG:05169: Epstein-Barr virus infection	PRKX	protein kinase, X-linked	0.0003903024168112265
KEGG:05169: Epstein-Barr virus infection	PSMD11	proteasome (prosome, macropain) 26S subunit, non-ATPase, 11	-0.001091548683016147
KEGG:05169: Epstein-Barr virus infection	PSMD13	proteasome (prosome, macropain) 26S subunit, non-ATPase, 13	-6.068925883060748e-5
KEGG:05169: Epstein-Barr virus infection	RB1	retinoblastoma 1	-0.0014861678606360041
KEGG:05169: Epstein-Barr virus infection	RBPJ	recombination signal binding protein for immunoglobulin kappa J region	0.0009777741038018576
KEGG:05169: Epstein-Barr virus infection	SKP2	S-phase kinase-associated protein 2, E3 ubiquitin protein ligase	-0.0005374559859162735
KEGG:05169: Epstein-Barr virus infection	TBPL1	TBP-like 1	-0.0007871806823993506
KEGG:05169: Epstein-Barr virus infection	TNFAIP3	tumor necrosis factor, alpha-induced protein 3	0.0011106622138456054
KEGG:05169: Epstein-Barr virus infection	TP53	tumor protein p53	0.0011672564642736677
KEGG:04630: Jak-STAT signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007322366576941181
KEGG:04630: Jak-STAT signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006269139625152392
KEGG:04630: Jak-STAT signaling pathway	CCND1	cyclin D1	-0.0026383555212234244
KEGG:04630: Jak-STAT signaling pathway	CSF3R	colony stimulating factor 3 receptor (granulocyte)	-8.433393498168532e-5
KEGG:04630: Jak-STAT signaling pathway	CSH1	chorionic somatomammotropin hormone 1 (placental lactogen)	-0.00025766423016498126
KEGG:04630: Jak-STAT signaling pathway	GRB2	growth factor receptor-bound protein 2	0.000430514855710866
KEGG:04630: Jak-STAT signaling pathway	IFNA2	interferon, alpha 2	-0.0017203925871120363
KEGG:04630: Jak-STAT signaling pathway	IFNG	interferon, gamma	-4.8991917616807516e-5
KEGG:04630: Jak-STAT signaling pathway	IL12B	interleukin 12B	0.0012788481986337787
KEGG:04630: Jak-STAT signaling pathway	IL20RA	interleukin 20 receptor, alpha	0.00017450619115772623
KEGG:04630: Jak-STAT signaling pathway	IL4	interleukin 4	0.000259766792778236
KEGG:04630: Jak-STAT signaling pathway	IL6ST	interleukin 6 signal transducer	0.001879348278185278
KEGG:04630: Jak-STAT signaling pathway	IL7	interleukin 7	0.0008729639337432424
KEGG:04630: Jak-STAT signaling pathway	JAK2	Janus kinase 2	-3.15921974741767e-5
KEGG:04630: Jak-STAT signaling pathway	LEP	leptin	0.0031976777282567794
KEGG:04630: Jak-STAT signaling pathway	MYC	v-myc avian myelocytomatosis viral oncogene homolog	-0.0011388686705106022
KEGG:04630: Jak-STAT signaling pathway	PIK3CD	phosphatidylinositol-4,5-bisphosphate 3-kinase, catalytic subunit delta	-0.00078229877794665
KEGG:04630: Jak-STAT signaling pathway	PRLR	prolactin receptor	0.002187381210529882
KEGG:04630: Jak-STAT signaling pathway	STAT5A	signal transducer and activator of transcription 5A	0.0015991927405241135
KEGG:04071: Sphingolipid signaling pathway	AKT1	v-akt murine thymoma viral oncogene homolog 1	0.0007202122493181328
KEGG:04071: Sphingolipid signaling pathway	AKT2	v-akt murine thymoma viral oncogene homolog 2	-0.0006199132856395173
KEGG:04071: Sphingolipid signaling pathway	BAX	BCL2-associated X protein	-0.0004216900039775025
KEGG:04071: Sphingolipid signaling pathway	BCL2	B-cell CLL/lymphoma 2	-4.414007247247501e-6
for (v, β) in zip(variable_names[β_orig .!= 0], β_orig[β_orig .!= 0])
    println("$v\t$β")
end
RFC2	0.01782837035434921
PAX8	0.03684757874519626
THRA	0.02806710700734747
EPHB3	0.019420774902517746
CFL1	-0.030460550648403986
YY1	0.013402782876598915
ZPR1	-0.004170459413053395
RHOA	0.04322099220670631
GUK1	0.05284161532839052
DSP	-0.0008924333259685115
RAD21	-0.001631468584420958
SF3B2	0.004117778492081898
NDRG1	-0.006543628992920167
CD63	-0.01588590376579995
DNAJB1	-0.002074023570791528
XBP1	0.021161233616516416
SPTBN1	0.03684346496032825
HMGB1	-0.030756596050312522
GPX1	0.021234007378015077
NUMA1	0.02134145223823748
ARL6IP5	0.0010924161799196037
STMN1	0.00724792250908532
ODC1	0.00984689697218672
DAZAP2	-0.0007855012627521644
TMBIM6	-0.002281876930489588
GSTP1	0.008155197247241446
ZNF207	-0.00272055661792677
DHCR24	-0.03582951324451189
DEK	0.017525131494012178
HIF1A	-0.04980124402515673
SNX17	0.011478189129344105
CD9	-0.038892803436755025
JUP	-0.038198768007394066
TGM2	-0.001727118661130326
MMP2	-0.025981932630592196
THBS1	-0.08446415723750327
TUFM	-0.006526015058534711
POLD2	0.017044076906068118
CPE	-0.022985479474374397
SLC7A5	-0.04388439401899305
AMD1	-0.02540208212059125
PCNA	0.04177675913977361
PSMD13	-0.0024832832828435903
RAF1	0.14338085024453612
PSMA5	0.013051348177155966
OGDH	-0.005067398489416657
TOP2A	-0.0015644814822285955
ETS2	-0.012155698340348457
CST3	-0.0020043270870368692
ZFP36L2	-0.0043072631313988636
CSNK2B	0.033543365932369354
PHGDH	0.0057311299009349635
HSD17B4	-0.021954771791886218
SOX4	-0.0018435626169123862
WDR77	0.0010212673455483976
BUB3	0.020980692290832027
ITGA3	0.053139657793133725
RRM1	0.03261837436083389
IGFBP4	-0.015294959879804448
APOD	0.052813903449321326
RPA1	0.0167060700019057
CTNNB1	-0.01669235255966663
ZNHIT1	-0.0016925861371024213
MCM3	0.021427995026917317
SORD	-0.0385519566154519
ID2	0.0030436585873623713
IRAK1	-0.08686643583075772
SMC1A	-0.02133148172546458
KRT18	-0.010141434375582896
PHB2	-0.01238261230099665
TNC	0.010270550679614054
ITGA6	0.062026474970278724
SMC4	0.008291635589654026
GJA1	-0.00968749593493167
EGR1	0.04890522631472147
TPR	-0.02897782523466766
TP53	0.17001586712848316
MCM5	0.013891019627766392
RPA2	0.008798613227269443
DAXX	0.02295086469842311
AZIN1	-0.000841303868372908
NCAPD2	-0.006694478531962176
ADAR	-0.004273578061227506
ENG	0.030353175178383693
HDAC2	-0.07936953927783139
BNIP3	0.10258521554357351
RRM2	-0.00904653751058178
IMPDH2	-0.004533325675427472
PSRC1	0.005150878919895947
PRDX4	0.015233898271638829
MCM6	0.013085227098779626
CHMP1A	-0.011579771180144556
CIB1	0.0024940862002963814
CCNC	0.005668826446434938
NASP	0.016794814852552593
EGFR	0.05923885482145957
LANCL1	0.0007339826494670802
EFNA1	-0.012411014380812593
SFRP1	0.10537629932164157
SLC39A6	0.0011622219237774848
BIRC5	-0.006728392679664582
NUP153	0.020401330786399774
BRD4	0.009878615819780398
IGBP1	0.03716659575857557
MCM2	0.02964701901069168
NOC2L	-0.0013018167154264417
WWTR1	0.02422139955193138
AIMP2	0.008424538648259101
PKN1	-0.03808943481003073
PRKCZ	-0.08299626615623115
MVP	-0.005039939366418271
SLC6A8	-0.010418167114822331
PLK1	0.044418889686983744
E2F4	-0.04000230602549144
VPS72	0.002791817778844994
PDGFRB	-0.030899955754132936
TACSTD2	-0.02726592640576279
MTHFD1	-0.015106671256448267
COL1A1	-0.02774187855127702
UNG	0.005040246685305158
UBE2K	-0.0026338147552762196
HTT	-0.0433308657325134
BASP1	0.004749137833453017
IGSF3	0.0002846542519311499
RXRA	0.05780812177993815
MYC	-0.07254841230400205
CYP1B1	0.016791485175176306
CTSK	-0.005372887927588192
MLXIP	0.010971441163870613
MLH1	0.049206926689411956
DHFR	-0.00736855509290413
PRKCD	-0.06848826247053862
VAMP8	-0.0006123414941763343
GSTM3	-0.016771952909600263
FOXM1	0.00547053039708754
NFX1	-0.0003601096625964114
TYMS	0.05804193843777029
PDK2	0.022218697269260058
SSBP1	0.0033581919245183277
ENSA	0.011071869332661393
IRF6	-0.018578500771458277
NRIP1	0.010689665804530209
CTPS1	-0.005033769164073507
LYN	-0.136020008807996
SERPINE1	0.004549817149767904
TOPBP1	0.00826258318265347
ICAM1	0.04698813280501897
ARL3	-0.012944671028492984
TNFAIP3	0.06196838444377323
RASA1	-0.01034731086096733
PTPN1	-0.034008580290357276
IGFBP2	0.0021582946457342593
FOXO1	0.08981646049044095
LIG1	0.019350799946685593
USP8	-0.004295447026511491
SLC7A8	-0.007029917025023931
HMGCL	-0.017920596453702677
UBE2S	0.004517544081043289
SLC1A3	-0.07846231096017796
DBN1	-0.007958079888046343
WBP1L	-0.0006812879912496228
STAMBP	-0.0013439330003021676
HEXIM1	0.0009146807422728778
AGT	-0.11777825302279477
HPRT1	-0.03429130520873595
CDC20	-0.004158031714099346
CDC23	-0.0292898490145349
E2F1	0.09452257827698173
WFS1	0.016589595131934934
MSH6	0.01827567569356198
ADM	0.0988082212250429
SOX9	-0.05534375159597977
UBE2C	-0.0052469037451171804
MUT	0.035950521811880666
POLD4	-0.015987318033880763
STMN2	-0.01556383248822085
STAT5A	0.09242498840939786
RNASEH2A	0.004135880019279892
C2	-0.0033094363111025584
CAV1	-0.06306570615282245
CHST15	-0.005782691230612209
CTNNBIP1	0.008138176628460054
TGFB1	-0.012869806540407432
KIF2A	-0.009405835015435746
CCDC86	0.0007146750595481015
SLC11A2	-0.025404068219129074
RB1	-0.08508075060728257
KIAA0040	-0.0022389706808229135
SPAG5	-0.003200905700458868
PVRL2	-0.0006298298280750445
RNF8	0.01432228150445324
KATNB1	-0.0011054373409471162
FBN2	-0.007380182720434388
DOCK1	-0.011621186923791514
RFC5	0.04044914529319224
MTMR2	-0.008937113364945706
CDK1	0.011067291839721298
LGALS9	-0.004539435216979
ZNF24	0.0038769440123150208
CDH3	-0.02817740438154239
DTYMK	0.056140409949783636
HS2ST1	-0.006412566664718714
NCK2	-0.006297849220518811
ZNF148	0.016871012238787716
COL5A1	-0.001103269729637053
UGDH	0.006978188918291194
ORC4	-0.0003733583483527791
EZH2	-0.0045165626902417206
MAD2L1	0.005619561855304879
CDC40	0.03781642763801979
RPS6KA1	-0.09063268000400478
HES1	-0.06412769702404403
PSMG1	0.0004065201829242533
MMD	0.010754803225344929
KMT2B	0.005044953078137121
POLD1	-0.014189772998580041
ASF1A	0.009452157844126933
SUCO	0.011236978978278108
STC2	-0.016718403399941684
CDH2	-0.017260462882438498
SPR	-0.01968662444539362
PLEK	0.024370121612437633
CEP57	-0.004804746283049294
MED1	0.06757529887822791
GCDH	7.034724478452606e-6
SPG11	-8.779000084344093e-5
APC	0.040377343009541176
PTTG1	-0.005785185428833489
CUL7	-0.0018745002672236858
AOC1	-0.01847043164444562
GGH	-0.002498067853885296
ADIRF	-0.0011367963587797791
CSF3R	-0.0010011980500108414
ALDH5A1	0.04921593880047607
SKP2	-0.01178118078086129
IGF1R	0.05658983955277872
CPT1A	0.02793053700663759
FGFR2	0.09289228548238233
PCNT	0.028601621161861785
POLR2D	0.0446087436107886
HMOX1	-0.010639419074505252
CXCL12	-0.057742079037596795
IVD	-0.007438199163742583
BCL2	-0.0008945318307243457
CX3CL1	0.08062568872404573
PI3	-0.002078090528169932
E2F3	0.04115371621305719
RREB1	-0.02182065647643502
FZD7	0.028752992618935908
ITPR1	-0.04164910864273341
KIAA0020	0.0009336617440814803
BAK1	-0.11224104241962282
HMGB3	0.0032015310613518156
BUB1B	-0.020432339950024473
DYNC2LI1	0.004614918362283697
DLGAP5	-0.007949800760510887
MANBA	-0.019025815224275856
SEMA3C	-0.0030735790631009363
AKT2	-0.06589440234688394
IGF2BP3	-0.002282188318459811
MAP3K5	0.00973399305748306
IGFBP6	-0.010108693926009852
PIK3CD	-0.08446872456456456
CXADR	0.008125836938706719
NR1H3	0.029204949713111036
GCLM	-0.0718973015260452
MAPT	0.035560439470454265
VASH1	0.00533699418822194
KIF3B	-0.002474744514527215
E2F6	0.0021573287632984496
CDC6	0.02167760917467077
SLC31A1	-0.000267501765272671
CHAF1A	0.0021731702471032423
SYT1	-0.0231985911200916
LARS2	0.002685547772540582
PURA	-0.0015289193774571039
WWP2	-0.018109591414804616
RFC4	0.013094847932800595
ZWINT	0.0050373576920067316
CELSR2	-0.015828809359290333
PTEN	0.002703874590459561
PRKX	0.026310909182115184
TPST2	0.002124847987139037
AURKA	0.026072099828434364
RBMX2	0.0011525304047793955
SMARCD3	0.005056510060143434
LIG3	0.01793752577689788
CDC45	0.035128743764696796
RFC3	0.006289485493524523
FOXO3	0.04304335440765909
TFDP1	0.02459785522007562
AKR1C1	-0.028235242102568604
NDC80	-0.012994348996505868
IMPDH1	-0.022526243065154803
CKS2	-0.0002767823749429344
CPOX	0.015309998121761632
RARG	-0.07205944464497151
BACH1	0.0038557769403125774
ACOT8	0.014671699445802374
SMC2	0.0034757928847099304
VDR	0.015094705098909537
MMP7	0.006718351487298263
SKI	-0.025321698970961457
RGS14	-0.0331982265914486
LOX	-0.005739266799934821
PROM1	-0.007435736621323742
CREB1	0.05291850511267864
COL11A1	-0.009683886337841511
TRIM16	-0.013286678121464167
BCAS1	-0.00012129172027097855
FGFR3	0.01506101369288714
GOLGA2	0.0024261581799851196
EFS	0.007825864377930104
GSTM2	-0.034530190932176984
SLC2A5	0.0026115780594232352
POLA2	-0.02095432318344106
KIF11	0.012877878211679262
GAP43	-0.0010497450042150278
CDC7	-0.009474360240546223
PHF14	0.012996775839253325
CXCL10	0.0022540377037781763
EEF1A2	-0.011206457515607327
KIAA0513	-0.002633608574740678
STAR	0.04875919120485765
GSTM1	-0.01622487243355555
FKBP5	0.0009347797125010528
ABCG1	-0.06107660423264804
CROT	-0.004733522036937512
CD22	0.003342834303618192
SLC7A7	-0.008350703535127247
DKK1	-0.004376640259688261
EXO1	-0.007169600632849003
NEK2	0.0008735531837337487
TFAP2A	0.014741557686044907
FOXA1	0.0007464072405028423
KIF23	-0.003814023656309867
NCK1	-0.02323834065521633
CNKSR1	-0.0033095068352842014
BICD1	0.029467848470741374
PICK1	-0.018798454080332132
DSC2	0.003699088871784489
NUDT1	0.01658488722027079
FEN1	0.039280027632950985
CHAF1B	0.06336904561093555
THBS4	-0.00793658615361211
FAS	-0.0018303251038774557
ZW10	-0.009789089406096782
ESPL1	0.0026349483067022454
TTK	0.008657784410876935
MELK	0.020732613609057232
CCNF	0.0017514255657294707
RAD9A	0.007814524589593188
CDK8	0.026158579700205586
POLA1	0.028022750740118868
CP	0.006502042373259055
ORC2	-0.0036782166622163805
SERPINB5	-0.03646908129424964
IL6ST	0.050649935893834354
GCHFR	-0.006643824918077308
PCSK2	0.004188397886511956
MTERF1	0.0021837543354899427
MGMT	0.006087508732606017
UGCG	0.003266556069896877
PLK4	0.027056234063494864
SOX11	-0.010375705499242788
INHBA	-0.07031194038416436
HPN	0.06343944613246816
PTPN2	-0.011850499157072165
CARD8	0.0009737029049671213
MTAP	0.026794832993818404
ORC5	-0.0008066718761636691
PLK3	0.05651776084747912
SHROOM2	0.01657094105494471
CLOCK	0.005225377238792192
SLC22A18	0.0036381804080160766
ITGB4	0.01335084590910032
NF2	-0.036644670398708716
PFN2	0.030182653760940353
ATF5	-0.0438895183388974
RAD51	-0.05959231669664289
CCNE2	0.018853635423271606
ORM1	-0.0027846959939131547
CENPE	0.03231574820149773
PSPH	-0.021255067676917743
KIT	0.023303054440520186
AUH	-0.00874276593188335
PRIM1	0.007640062297202153
SLC22A5	-0.02409020140972214
SERPINF2	0.014325953337234942
CRIP1	0.01716096384814977
ORC1	-0.0058874352807807015
MOK	0.005371912559628551
PEX11A	0.0063813019014951405
GLI3	-0.14256324992470196
KAL1	-0.0011795132247511
GALK2	0.00012695444364892622
ESR1	-0.04057493084726801
AREG	0.05169677369466026
GPSM2	0.007115593911870687
CXCL13	0.0783715582690652
EGR2	0.03901184423000849
PER2	0.03325074136646313
PGC	0.005304266152110367
LRP8	-0.0204630241206002
TFAP2C	0.020189519687844056
CDC14A	0.0023230844116615816
IGFBP1	0.003091742143176988
SLC15A2	-0.0010016510545315755
S100A1	0.007943911280445219
DCT	-0.03064933540650469
BARD1	0.020946437515230745
AGTR1	0.012107886892131919
INPP4B	0.0043235597350753455
PDZK1	-0.0015817353024116046
CHEK1	0.01974575498226775
MLLT10	-0.00032716360192899417
DAG1	0.009834514052789572
BCHE	4.276323291335117e-5
OCEL1	-7.907603710843563e-5
HOXB2	0.03343632574992887
C6orf106	0.001471732748532187
DACH1	0.02718846576118373
UGP2	0.010926257825547098
GCNT1	0.008369281276925853
GATA4	-0.06217314871779477
SLC44A4	0.02573706775945674
TRAIP	0.007132092222931833
LRP6	0.0057581612210662065
ANGPT1	0.04651626867644292
PRIM2	-0.010671924399342711
PAX6	0.10863461454752402
GAL3ST1	0.013072702833115058
CYP27B1	-0.012502240478196407
HSD17B6	-0.005185492295727337
BLM	0.012447397255563743
KLK7	0.008128490790703461
FGF7	0.027689500012265028
TCP11L1	0.0023487026825873107
ROM1	0.012298719107757088
SIX1	-0.09910802932249513
CPA4	-0.0013634362606130984
JAK2	-0.0037682467699033904
TULP3	0.01810592878314026
GREB1	-0.0006855056510944358
RET	-0.017942754622793575
MSH3	-0.0058328712055815855
SLC22A4	-0.005223516220411507
CX3CR1	-0.018777626308605213
CCNA1	-0.029898620261494986
POLE2	0.02259116909277867
S100A7	0.01911226924543656
RELN	0.06930054090657722
IL27RA	-0.0038227634199274746
MSX1	-0.10305141919522999
BATF	0.028505086668223368
WNT5A	-0.07847281242458239
GPR64	0.0018646637234725893
NMU	0.022327964446469235
DICER1	-0.0011654068895853762
WT1	-0.02453096159075084
ACADL	0.017504038742022134
HMGA1	-0.005375502601779686
LRRC23	0.0008850087968634608
CTH	0.03683707201625855
NELL1	0.01071026244982359
GINS1	0.005782639831933588
ISL1	0.004283152117975487
PLA2G5	0.06866360274356277
WNT10B	-0.0596061042541559
EDA	-0.012953896218986422
TNFRSF10C	0.0022202442847365053
PAX2	-0.10655206932697343
LHX1	-0.04795659968052898
GUCY2C	-0.011412771717607462
PRLR	0.04369735823572912
PDK3	0.009255883892137946
KIF14	0.015300681464566705
CPLX2	0.016297126542175237
EYA3	0.008291707317188425
ANK3	0.016523807369716523
SLC1A1	-0.012628381153536343
ZNF205	0.0029722372034130286
TBCCD1	0.002407925925447311
NDRG2	0.019672720370709135
KIAA0125	0.0004132393741945018
HINFP	0.014878738381224674
PML	-0.04791240195835318
MGAM	-0.011773852786785865
ABAT	0.019099540456917013
KLHL24	0.0003207045744953061
SMA4	0.0020387403396643572
CDKL5	0.018288948441041876
GFI1	0.031571796504911286
DRD2	-0.02185136821487831
SIX3	0.06346645664152692
CHRNB2	-0.03847303987011225
GLI1	-0.034977521847087224
FLT3	-0.020259913217113876
PDK1	0.025638035768205718
ASIC2	0.05260758220733848
IL7	0.015592135087047685
CHRNB1	-0.00019164268514129917
KCNJ2	-0.017567205759020602
ACRV1	-0.0006026324800037688
ERBB4	-0.008486885619535395
SCGB1D2	0.0004387758538985074
STATH	-0.005395035560048601
ALX1	0.029862152951815126
AFM	-0.0016939199422974886
PAEP	0.006354664338546462
CHAD	-0.013078713959233528
AMHR2	-0.0023680302170646034
SALL1	-0.08840567092421867
TAT	0.016862964075962113
PRKCA	-0.0006614508433365956
SRD5A2	-0.015277224904423731
TGFBR1	0.025894693239995895
HTR6	-0.009662179726478115
C8B	0.0025303041239801514
PHOX2B	0.01149558580695612
PTK7	-0.0035529964314248742
ALDH1A2	-0.12135910958184191
LDHC	0.016357644900862892
CRISP1	0.000264454942651869
GLI2	0.10206865475980202
TNFRSF11A	0.07533420474772552
SLC16A6	0.0020836993612578544
CDKN2A	0.10917112540001166
THRB	0.029168583684075385
ASS1	0.004830149327111392
LEP	0.1998378331370313
CITED1	0.11631010981891542
AKT1	0.13258238507628142
ZBTB18	0.013958961289168402
AGRP	-0.03106767448783928
ALOX12	-0.07043025237679758
SLC15A1	-0.022132859662382615
SLC17A3	-0.013743047633786646
TCF15	-0.0425778237859497
HTR2C	-0.011836730934854094
TFRC	0.022648351025412846
STX2	0.0050443912429787305
CYP7B1	0.0019296241757945825
HOXD13	-0.00824571120017687
PROX1	0.06596269150182502
RAD17	-0.001206970027808701
MSMB	-0.0013331384342858375
NR2E1	-0.09852641803918796
CAST	-0.03052701044183323
ATP5G3	0.0018423725159665723
CDKN2B	-0.05876492166517279
IL4	0.01882278098376839
PITX2	0.10480238529079344
MAGEB3	-0.006916581004888722
SHH	0.08366559408643312
MMP20	-0.017020842905839707
SLC4A7	0.010467453451719635
FOXH1	-0.02464150989437682
ADAM2	0.006458059209497758
PAX3	-0.059068253533199576
KIF25	-0.009609396255554063
SERPINH1	-0.007563636479709536
PPP2R3A	-0.0006220842487928126
RASSF8	0.0033201926705128
RBPJ	0.05165924746472582
KRT33B	0.0018854914919091375
POU1F1	0.0019684636080322783
MUC1	0.015340453178736255
AVP	-0.036239740177752014
INSR	-0.07200559687285481
NAALADL1	-0.001016559328260767
IL12B	0.0936990230485944
GATA2	-0.01923240163383317
MEF2C	0.09777138637302658
CLEC4M	-0.024936805204337182
RFC1	0.023320146009614223
CDC14B	0.0001570744684361425
HMGA2	0.07233033972660002
LAIR1	0.0012946246181076437
CCL7	-0.05525290613251584
ZNF442	0.0021217095248059524
NDEL1	-0.014938650791860793
ANP32E	0.0008414262211640954
DDX17	0.010624504900571069
CHIT1	0.0017042028202982381
PSG4	-0.001032866123837421
TTN	0.03969133562208976
MAS1	0.005871102423210318
DRD4	-0.07577515006143414
HOXB1	0.04817760522773429
TH	-0.022989804685408045
PGR	0.005606482706949602
CSH1	-0.0010294405113189214
UGT8	0.021797239011992684
BRCA2	-0.00040010085243039794
FGF5	-0.029454465531980573
MMP24	0.010426711820916278
TBPL1	-0.009405012825298755
PTN	0.0071337817840549135
IRF7	-0.054667593900032785
FGF8	0.07140111278981238
GABRA4	-0.02364422891972487
BAX	-0.04740219544026608
PTTG3P	-0.00020876180747159134
OR5I1	0.009398362467484081
PTCH1	-0.0035436404931479264
BCL2L11	-0.03770305268840597
PDX1	0.010516918867804334
WNT1	0.04369680334753987
HOXA3	0.01375471132661827
WNT4	-0.016164899247737858
EIF4G1	0.011039070602603436
YBX1	-0.010053564233932749
CD24	0.029888630624849487
MAGED2	0.0011459396930812251
PRKDC	-0.07789656076747947
NRD1	-0.001053191850308878
CCND1	-0.18493934739300477
CDC42	0.11480020475125491
FLOT1	-0.020237890050965705
PSMD11	-0.04560858541280287
ELOVL5	0.0026892349674367422
MCM7	-0.023035440617418326
CHD3	0.0010863652782815007
HMGB2	0.010195853792630811
SNRPB	0.009292643196300646
POLE3	0.008058861478672534
ATP1B3	-0.04910506135762838
STK24	0.04315211111121438
SLC1A5	0.013826124416096994
POR	0.009350598710947207
KPNB1	0.016033673916676063
MDK	0.03179016915859889
TXN2	0.02065798318201391
JAG1	0.06489289364190191
TSPAN6	0.005498471709099002
QDPR	-0.04019139695326161
AGR2	0.017854233491790966
CXCR4	0.01972775578729735
LMO4	0.0232973500798145
CRYAB	0.021582002268535936
NFIB	0.056012093999129875
ECM1	-0.02181365703317276
STXBP2	-0.009931038665850007
KIF2C	0.0074832891540814375
FZR1	0.017831600102073526
MSH2	0.041758053283648615
SERPINA5	-0.004965822186561534
AURKB	0.007573735252924806
LRP5	0.0014000670266215876
RPA3	0.09428235665230203
HSDL2	0.0027339165079795958
CACNB3	0.0033579975839442165
IGF1	0.014117033104510665
YIPF4	0.0010880978793895205
THBS3	0.016153803444977646
EPHB2	-0.017254484462277564
BMP7	0.05857987441538791
GATA3	-0.0035472937258636465
PAK1	-0.12024530596624508
MCCC2	-0.007785154522843757
BUB1	0.023772293746745804
KIFC1	0.008559426097992037
S100B	0.08900178023831674
SLC35D1	-0.0007554871546431538
TGFB3	-0.1367465546320348
LLPH	-0.00021432664927591795
JAG2	-0.00016145912642093869
PADI2	0.005177628615168406
NPAT	-0.0035409649949677564
VLDLR	0.021889991829839625
CDT1	0.013044432987764094
SOX10	0.0037792197723009145
HOXB13	0.016446173550618004
SELPLG	0.002289276969762176
SLIT2	-0.07791903893529609
TGFB2	-0.11937808737609405
PARP3	0.01543425994457865
FBXL4	0.004265644090267211
GSK3B	0.13906893656117805
VEGFC	-0.12818045716407228
FAP	-0.007189592876954765
ASCL1	-0.06877170297567123
GATA6	-0.001112533276770195
APEX1	0.0035320394450440943
IDO1	0.02684206122285139
PGM3	0.02388703108559418
TPX2	0.009385015564002137
CTSV	0.012273549678511547
AGER	-0.008157913176116414
IGFBP3	0.016694774973335505
CYP4B1	-0.008157465159450511
FOXA2	-0.0008266461929169122
INHA	0.005488558464491148
PTPRJ	-0.00701621521197242
CRYAA	-0.004007589321778289
WNT7A	0.0010529178437344011
CYP2B7P	0.00013132082203898865
RECQL5	0.012637809951031559
C8G	-0.010678030681020804
BCL11A	-0.014597514166096871
IFNG	-0.0042317289528201844
RBBP4	-0.03534281334268238
GLUD2	-0.007176789123447408
GPR125	0.0012335524835453977
NRP1	-0.04242006248869885
VEGFA	0.06666330837534155
MSH4	-0.0014911312037883815
SPAM1	-0.01712007318515972
POLDIP3	-0.0003304417171146345
MFGE8	0.01628124067637013
EPHB1	0.04531887315980476
CALCOCO2	0.00987327046847262
ACVRL1	0.08556964022928061
LEF1	-0.008738760148707034
GCNT2	0.036582982553868604
AURKC	0.009679931011797385
AR	0.08189387341717852
IFNA2	-0.07366269960649004
PADI4	-0.00904727123774782
BMP4	-0.051948548495902636
GNRHR	0.0036862891801634646
HSPA2	-0.0021826014130113965
ETV4	0.0017136601329301407
FBL	-0.0018366177387389563
BDH1	-0.0018446615434380607
PRG2	-0.0076735980491555245
GINS4	-0.011529877940197962
KMT2D	-0.002520631115136414
IGLJ3	0.0032488756696330964
IGK	0.0029472733191604097
PLCB1	0.010705113862137893
ITGB1	0.15327054269447865
IPO5	0.010054180206643165
TMEM123	-0.001369198395808352
TOP2B	0.0034448039717102
MKI67	0.014176230928602424
TPGS2	0.001830430141403624
KMT2A	0.01548594762858203
SLC39A14	0.0009186088282803244
MCM4	-0.01213181177975491
RNF187	-0.01107513946816814
SERPINE2	0.06795055647096447
MAP1B	-0.005304206896318237
SEL1L3	0.001482943805671272
YIPF6	0.0004924847107853044
SULF1	-0.017637187191465106
FEM1B	-0.029090201626783607
MYH10	-0.009530578464474469
ZCCHC24	-0.0006336174544859328
KIAA0232	-0.002574931747009173
TENC1	-0.001654067894285138
CEBPB	-0.009142993773767148
GPD1L	0.011155131643536164
SPIDR	-0.01805494699474201
CDC34	-0.002165270035415801
ZNF609	-0.0020932604936431992
METAP1	-0.00802137483893706
SLC25A44	0.0003453198541108316
JMJD6	0.07225247109460836
C16orf45	0.0015129853607803165
RCHY1	-0.012047180085251727
BBS4	-0.02449128618535784
TCF7L2	0.022737387684181258
FAM171A1	-0.0008474461993496484
OBSL1	0.0004996753392981065
NCAPD3	-0.00629194532409631
CBS	0.027408147568601854
CKAP5	-0.007844218411740492
POLD3	0.04009422205891675
AXIN1	-0.04008779072142446
DNAJC16	-0.00010774179655897069
SMC5	-0.008404355246720133
NCAPH	0.0005077986713116512
KANK1	0.03570418486402973
NEDD4	0.08611271769809645
LOC100272216	-0.000490130399845661
DNAJC2	-0.00785480274112632
HOXA10	-0.03585348281798796
ROBO1	-0.03381507510547673
TNNT1	0.00236167027647398
FOXC1	-0.0010032433396977875
YAP1	-0.005210933274387358
ATAD2B	-0.0012403210541986128
SPDEF	0.031499791704416746
SOSTDC1	-0.012182241980776628
CLCN2	0.008450306755612699
CCNE1	0.013357563921641032
DNA2	-0.0005924515358255859
DLX5	-0.06904625505431027
ELOVL2	0.006080546124612889
HIPK2	0.028394484848613805
HOXA5	0.02651939251917732
TWIST1	-0.0735587077500826
CHD5	-0.004060582690920926
YPEL1	0.002844755706654634
CCL8	-0.014706434092778381
LIAS	-0.004366434702725852
SHMT2	-0.01310599052478396
XIST	-0.0013837068271472979
GMPS	0.017799732080132098
FOXC2	0.06632063111815426
PTTG2	-0.013710164253373866
FGF3	0.04819322200362268
AZU1	0.005302910090948999
TNFRSF21	0.006502653335445796
PAK3	-0.04013955338735344
EYA1	0.001748007592293397
ZNF266	0.0008265747472587708
CCNB1	-0.03598713934059484
PP14571	-0.002584759304603602
KCNMA1	-0.02152134514870762
GRIK5	-0.0028890162313301598
RNASEH2B	-0.00034866243687217615
GRB2	0.028244434541645328
DNM1	-0.022181829425535166
CEP152	0.01624295019809501
STOML2	0.005173659861751105
IHH	-0.0981336737412036
EPHA5	0.006530393686639471
RAD21L1	-0.011228435521741091
POLE	0.05615385969439246
RAB3GAP2	0.013865146208784955
LAMB2	-0.023556522814775924
MUC7	-0.015812317014986945
CCL2	0.07777608367830821
IFT122	-0.03543911313873815
LOC100293211	0.002250473974020906
DISC1	-0.03731677569455142
KCNV2	0.0036969009781805933
ORAI2	0.002164600637607094
ARPIN	-0.0005814888777068246
STEAP1B	0.002804840397185504
SEC14L1P1	0.004847184538895706
AES	0.01623181327214471
PERP	0.014624321373756953
NAA50	0.0006961107911082415
HN1	-5.8127791173796204e-5
C3	0.0830268588437952
UFC1	0.0020819092403032914
EVL	0.023265625083061247
CDC27	0.0074206714436087515
DSG2	0.0001732942939562813
KLHDC2	-0.0003758990939784145
VPS4A	-0.018885741648463565
FAM127B	0.002068826100125258
PRC1	0.00488764041656587
PPDPF	-0.004333499725805431
FAM65A	-0.003310434162744442
RBM47	0.000813575362921293
NUSAP1	-0.0031989576398166906
BFAR	-0.0032646454557970638
WDR11	0.00040847909875559886
C21orf59	0.0012766631140000374
SLC25A37	-0.0011019483415306
SMAP1	0.004010691731589972
GSDMD	0.0023281873418337165
GOLT1B	-0.009110027865084445
STMN3	0.0207922491669522
TMEM258	0.0036313222830984967
LANCL2	0.0035635361194808896
C1QA	0.005377251754758938
TSKU	0.0065141041458630896
CKAP2	0.00018595795606970701
MKL2	-0.0007206805073324871
BCCIP	0.005814671919895753
SAV1	-0.03272071156694
LGR4	0.006571083295942728
PRDM4	0.008370680347239904
KIF4A	0.015508808710484129
PGLS	0.010472817234260478
FAM204A	-0.004478857609673524
ABT1	0.01796166914155394
NDE1	-0.03188184230872025
STEAP3	0.028820763187179237
MCCC1	0.0007363760398943201
TTC4	0.00038640771875526116
CMC2	-0.0002452364987398969
GREM1	-0.036280446583260545
KLF11	0.0037117930552162115
RNASEH1	0.0016941513093079097
TRPS1	-0.0028047543800425578
DCP1A	-0.005907259550498899
LPPR2	-0.001356898127723303
PNPO	-0.011992318969413341
MAP1S	0.0042251920556763654
E4F1	0.017773349853668397
MRS2	0.001948042410551421
C8orf4	-0.0010783892034500846
CEP55	0.00018269415358942775
KBTBD4	0.002194444134936169
RINT1	-0.006919338654133498
SMO	0.1371278839293916
NCAPG	0.000693116427805255
S100A14	-0.015165150621937297
NES	0.015184277222533587
GINS3	-0.0002792408671414479
HJURP	-0.0004592673026340894
CDK5RAP3	0.022624477001446944
KIF20A	-0.0016866338094267358
SMC6	-0.013984717819969966
ATAD2	-0.00019412537390888426
FCGRT	0.0017651946099501246
IGF2BP2	-0.004613114653713913
PPP1R13L	-0.017696251377432595
FBXO5	0.007503733417388884
SIRT1	-0.0009599762338105411
NOTCH1	0.06908067138798715
INTS8	-0.004526390346986949
RAB17	0.002350306947540289
HSPB7	0.0015844318424696417
KRT23	-0.000734650426396615
DNAJC12	0.0007439037392301422
METRN	-0.005624192028500556
CYB5R4	-0.00021192099129545056
CTPS2	0.014098873505983605
SHQ1	-0.004306154966906718
IL20RA	0.000858494182402874
PBK	0.0050207360634157705
BIN2	-0.0065614115670257645
SCUBE2	0.0025221661308145404
HSPA14	0.0002787788487917096
RBKS	0.000886240999496021
PHACTR4	-0.016079244020787184
CEP63	-0.00015742808684256226
SPHK1	0.06878627113250542
TIPIN	-0.0048284433759789
C1orf159	-0.0013948275277618292
DIABLO	-0.005344035959869672
ATHL1	-0.0009901807536505766
KLF2	-0.023289426706930974
GRHL2	0.025092132700132393
TTYH1	0.009566840787928563
COA7	0.0005966881548589195
TTC33	-0.002621094875096664
SULT4A1	-0.005814538701167439
EGFL6	0.0008221974015097792
C7orf63	0.0012350401404626562
LAMP5	-0.0035792461217451195
LRFN4	0.0013939386408319417
GCNT3	-0.025506586914859186
CEP72	-0.016425670499335236
BORA	0.011964177974982487
ROBO3	0.0047998153602208495
SOX18	0.029500021112874815
KIF16B	0.03523818751096763
PIEZO2	0.0020898293231342586
CEP83	-0.0007677935602652964
PTPLA	0.0025548743142632937
TBX3	0.05010579689726048
FZD3	0.009331988846620858
BBS7	-0.02044512069441233
TFCP2L1	0.004859367748266092
HEY2	0.13883585381515862
VTCN1	-0.011060391877614663
GIMAP6	-0.0007352876517308435
MTL5	-0.0025622556198957327
ECT2	0.02432011419236951
ARL15	-0.004536728216233622
NARF	0.0014994215563336726
FAM198B	9.67987649116311e-5
LHX6	0.009407866917839711
SPAG4	0.0006137799805040554
ASPM	0.00025482033964391055
GLRX2	0.016675863751174958
GPR87	-7.288109362732322e-5
GALNT6	-0.010690878808872865
KIZ	3.3117504151390036e-5
TXLNG	-0.005025118529839372
E2F8	0.020587127716812
AUNIP	-0.0004402857743541959
ERO1LB	0.0018389095331322223
MFI2	0.004359643072220507
EDAR	0.005933150194892732
GDF3	-0.0394937194432559
STAP1	0.03192302906622345
HELLS	0.027898557808903237
STEAP4	-0.013913880365065034
CAMK1D	-0.031182194982635216
ARPP21	-0.0008943828850588785
ALLC	-0.0027650432492677393
ROPN1B	0.0041696314332420464
DMRT1	0.02853845282955852
EN1	-0.00021794323410886888
CCDC170	-0.0009410021876603597
SIRT2	-0.048816855988439746
FOXE3	0.014651722139499572
ELF5	0.011752955688516512
MCM10	-0.004191810376388576
KIF24	-0.011283208386569678
HEYL	0.013492537971960206
TBX21	0.003869400748971834
SLC5A7	0.020065233487922305
CCDC7	-0.0014199489523593885
EDDM3B	0.0010086661202008465
TP73	0.042045312392720184
GCNT4	0.005380114461413643
C1orf112	0.001533231819017808
PSAT1	-0.005765858129630002
WDR19	-0.010047564609988225
C1QTNF3	0.0015438782131631137
ARHGAP24	-0.007478400689910491
TEX13B	-0.0009161916424618885
TEX14	0.015492611545399736
KCNE2	-0.011773142899107386
EPN1	-0.004333698632650038
RPA4	-0.024908324471982157
MAP3K19	-0.008239112962222229
IQCG	0.0014698666492631832
LOC100131532	-0.005151893057862085
STMN4	0.0013959838112425874
KIF18A	0.01285037659610607
DLX6	-0.0018000123265162077
KLF15	0.003681754231953003
FRS2	0.02771376092040482
NEUROD4	0.015071128029595655
C6orf25	-0.0004983610788643349
GDNF	0.014056253615913419
TMEM14B	0.003590952595578688
BNIP3L	-0.00046372092071295194
KPNA3	-0.0040731287551446956
GINS2	0.0036502344793744885
SOAT1	-0.0035840099220547086
FAM64A	0.000225829030767454
DSPP	0.004961435490698742
SPDL1	0.022507106393634256
STRA6	-0.06393712883327846
COL5A2	-0.005812223762505952
NRBF2	-0.006598199026985759
GPR124	-0.002425575121783928
KLHL22	0.003054254639106805
ORAI3	-0.002618777114824034
FAM174B	-6.729041772863918e-5
ZNF335	-0.00467502325439356
SEH1L	-0.022554065088721778
LOC389906	0.005430567767702915
KIF18B	0.015702773273153524
RACGAP1	0.026271373792290355
CASP8AP2	0.012679791553399915
KLK5	0.006951607495603111
OR7E47P	0.000576342576718726
SCAF4	-0.00032868048497175506
SNHG17	-0.0011774470329610938
Age			-0.002246735353315625
intercept			-0.06328011266889624