Mercurial > repos > jjohnson > cistrome_beta
changeset 0:20453b656907
Imported from capsule None
author | jjohnson |
---|---|
date | Tue, 16 Sep 2014 13:35:24 -0400 |
parents | |
children | 7f023a22da15 |
files | beta_basic.xml beta_macros.xml beta_minus.xml beta_plus.xml test-data/diff_expr.xls test-data/peaks.bed tool-data/all_fasta.loc.sample tool_data_table_conf.xml.sample tool_dependencies.xml |
diffstat | 9 files changed, 1289 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/beta_basic.xml Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,188 @@ +<tool id="beta_basic" name="BETA-basic: Binding and Expression Target Analysis" version="0.1.0"> + <description>Predict the factors (TFs or CRs) direct target genes by combining the binding and expression data</description> + <macros> + <import>beta_macros.xml</import> + </macros> + <expand macro="requirements" /> + <command> + BETA basic + #include source=$common_opts# + #include source=$genome_opts# + #include source=$extended_opts# + &> $log + </command> + <inputs> + <expand macro="common_params" /> + <expand macro="genome_params" /> + <expand macro="extended_params" /> + </inputs> + <expand macro="stdio" /> + <outputs> + <data format="txt" name="log" label="Log of BETA basic"/> + <data format="pdf" name="functionoutput" label="BETA functional prediction on ${peakfile.name}" from_work_dir="BETA_OUTPUT/NA_function_prediction.pdf"/> + <data format="tabular" name="uptargetsoutput" label="BETA direct targets prediction on up regulated genes" from_work_dir="BETA_OUTPUT/NA_uptarget.txt"/> + <data format="tabular" name="downtargetsoutput" label="BETA direct targets prediction on down regulated genes" from_work_dir="BETA_OUTPUT/NA_downtarget.txt"/> + <data format="bed" name="uptargetpeaks" label="BETA Uptarget associated peaks" from_work_dir="BETA_OUTPUT/NA_uptarget_associate_peaks.bed"/> + <data format="bed" name="downtargetpeaks" label="BETA Downtarget associated peaks" from_work_dir="BETA_OUTPUT/NA_downtarget_associate_peaks.bed"/> + </outputs> + <tests> + <test> + <param name='peakfile' value="peaks.bed" ftype="bed" dbkey="hg19"/> + <param name="distance" value="100000"/> + <param name="peaknumber" value="10000"/> + <param name="genomeName" value="hg19"/> + <param name='exprefile' value="diff_expr.xls" ftype="tabular" dbkey="hg19"/> + <param name="kind" value="LIM"/> + <param name="expreinfo" type="text" value="2,5,7"/> + <param name="gname2" value="Refseq"/> + <param name="diff_fdr" value="1.0"/> + <param name="diff_amount" value="0.5"/> + <param name="method" value="score"/> + <output name="log"> + <assert_contents> + <has_text_matching expression="Finished" /> + </assert_contents> + </output> + <output name="targetsoutput"> + <assert_contents> + <has_text_matching expression="chr19\t4675243\t4723855\tNM_139159\t1.1.*\t-\tDPP" /> + </assert_contents> + </output> + <output name="targetpeaks"> + <assert_contents> + <has_text_matching expression="chr19\t4723422\t4724314\tregion_9\tNM_139159\tDPP9\t13\t0.6.*" /> + </assert_contents> + </output> + </test> + </tests> + <help> +** BETA basic ** + +@EXTERNAL_DOCUMENTATION@ + +@CITATION_SECTION@ + +This tool annotates the given intervals and scores with genome +features such as gene body. It's the major module in CEAS package +which is written by Hyunjin Gene Shin, published in Bioinformatics +(pubmed id:19689956). + +.. class:: warningmark + +**NEED IMPROVEMENT** + +----- + +**Parameters** + +- **PEAKFILE file** contains peaks for the experiment in a bed + format file. Normally, it's produced by the peak calling tool. It's + required. +- **EXPREFILE file** contains the differentially expressed genes in a tab + delimited text file. It's required. +- **Kind** The kind of your expression file format, LIM for LIMMA standard + output with Microarray, CUF for Cuffdiffs standard output with RNA-seq, + BSF for BETA specific format, and O for other formats. +- **genome** hg19 for human and mm9 for mouse. Others, don't set this parameter. +- **gname2** If this switch is on, gene or transcript IDs in files given + through -e will be considered as official gene symbols, DEFAULT=FALSE +- **EXPREINFO** is the columns info of the geneID, up/down status and statistcal + values column of your expression data,NOTE: use a comma as an connector. + for example: 2,5,7 means geneID in the 2nd column, Tscore in 5th column + and FDR in 7 column. +- **REFERENCE** is the refgene info file downloaded from UCSC genome browser. + It is a tab delimited text file with gene annotation with refseq and gene symbol. + Input this file only if your genome is neither hg19 nor mm9. + profiling +- **OUTPUT** to specify the output files directory +- **bl** Whether or not to use CTCF boundary file to get the contributed peaks +- **BOUNDARYFILE** is the file with reasonable boundaries if --bl is on and genome + is neither hg19 nor mm9. +- **NAME** specify the name of the output files. +- **DISTANCE** specify the distance wich peaks within it will be considered. +- **DIFF_FDR** specify the differential genes by the 3rd column in file input + via -e, genes with less than this value will be considered as the differentially + changed genes. +- **DIFF_AMOUNT** specify the differential genes the top #(DIFF_AMOUNT) ranked by + the 3rd column in file input via -e, genes ranked in the top # will be considered + as the differentially expressed genes. +- **CUTOFF** specify a cutoff of ks-test in the function prediction part + +----- + +**Script parameter list of BETA basic** + +:: + + -h, --help show this help message and exit + -p PEAKFILE, --peakfile PEAKFILE + The bed format of peaks binding sites. (BETA support 3 + or 5 columns bed format, CHROM, START, END (NAME, + SCORE)) + -e EXPREFILE, --diff_expr EXPREFILE + The differential expression file get from limma for + MicroArray ddata and cuffdiff for RNAseq data + -k {LIM,CUF,BSF,O}, --kind {LIM,CUF,BSF,O} + The kind of your expression file,this is required,it + can be LIM, CUF, BSF, O. LIM for LIMMA standard + format. CUF for CUFDIFF standard format, BSF for BETA + specific format and O for other formats, if is 'O', + columns infor required via --info + -g {hg19,mm9}, --genome {hg19,mm9} + Specify your species, hg19, mm9. For other genome + assembily versions of human and mouse or other + species, ignore this parameter. + --gname2 If this switch is on, gene or transcript IDs in files + given through -e will be considered as official gene + symbols, DEFAULT=FALSE + --info EXPREINFO Specify the geneID, up/down status and statistcal + values column of your expression data,NOTE: use a + comma as an connector. for example: 2,5,7 means geneID + in the 2nd column, Tscore in 5th column and FDR in 7 + column DEFAULT:2,5,7 for LIMMA; 2,10,13 for Cuffdiff + and 1,2,3 for BETA specific format + -r REFERENCE, --reference REFERENCE + The refgene info file downloaded from UCSC genome + browser.input this file only if your genome is neither + hg19 nor mm9 + -o OUTPUT, --output OUTPUT + The directory to store all the output files, if you + don't set this, files will be output into the current + directory + --bl Whether or not use CTCF boundary to filter peaks + around a gene, DEFAULT=FALSE + --bf BOUNDARYFILE CTCF conserved peaks bed file, use this only when you + set --bl and the genome is neither hg19 nor mm9 + --pn PEAKNUMBER The number of peaks you want to consider, + DEFAULT=10000 + --method {score,distance} + Define the method to do the TF/CR function prediction, + score for regulatory potential, distance for the + distance to the proximal binding peak. DEFAULT:SCORE + -n NAME, --name NAME This argument is used to name the result file.If not + set, the peakfile name will be used instead + -d DISTANCE, --distance DISTANCE + Set a number which unit is 'base'. It will get peaks + within this distance from gene TSS. default:100000 + (100kb) + --df DIFF_FDR Input a number 0~1 as a threshold to pick out the most + significant differential expressed genes by FDR, + DEFAULT = 1, that is select all the genes + --da DIFF_AMOUNT Get the most significant differential expressed genes + by the percentage(0-1) or number(larger than 1)Input a + number between 0-1, the rank based on fdr for example, + 2000, so that the script will only consider top 2000 + genes as the differentially expressed genes. DEFAULT = + 0.5, that is select top 50 percent genes of up and + down seprately. NOTE: if you want to use diff_fdr, + please set this parameter to 1, otherwise it will get + the intersection of these two parameters + -c CUTOFF, --cutoff CUTOFF + Input a number between 0~1 as a threshold to select + the closer target gene list(up regulate or down + regulate or both) with the p value was called by one + side ks-test, DEFAULT = 0.001 + + </help> + +</tool>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/beta_macros.xml Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,185 @@ + +<macros> + <macro name="requirements"> + <requirements> + <requirement type="package" version="1.7.1">numpy</requirement> + <requirement type="package" version="2.15.0">R</requirement> + <requirement type="package" version="1.0.6">beta</requirement> + </requirements> + </macro> + + <macro name="stdio"> + <stdio> + <exit_code range=":-1" level="fatal" description="Error: Cannot open file" /> + <exit_code range="1:" level="fatal" description="Error" /> + </stdio> + </macro> + + <macro name="common_params"> + <param format="bed" name="peakfile" type="data" label="BED file for Peaks"> + <validator type="unspecified_build" /> + </param> + <param name="output_dir" type="hidden" label="Name for the output files" value="BETA_OUTPUT"/> + <param name="name" type="hidden" label="Name for the output files" value="NA"/> + <param name="distance" type="integer" label="the distance from gene TSS within which peaks will be selected" value="100000"> + <validator type="in_range" max="20000000" min="0" message="The Relative distance is out of range, the parameter has to be between 0 to 20000000" /> + </param> + <param name="peaknumber" type="integer" label="Peaks considered to contribute to the genes" value="10000"> + <validator type="in_range" max="200000" min="100" message="The Relative distance is out of range, the parameter has to be between 100 to 10000" /> + </param> + </macro> + + <macro name="boundary"> + <conditional name="boundary"> + <param name="boundaryLimit" type="boolean" truevalue="yes" falsevalue="no" checked="false" label="Use CTCF boundary to filter peaks around a gene"/> + <when value="no"/> + <when value="yes"> + <yield /> + </when> + </conditional> + </macro> + + <macro name="genome_params"> + <conditional name="refGenome"> + <param name="genomeName" type="select" label="genome reference"> + <option value="hg19">hg19 (built-in)</option> + <option value="mm9">mm9 (built-in)</option> + <option value="other">other</option> + </param> + <when value="hg19"> + <expand macro="boundary" /> + </when> + <when value="mm9"> + <expand macro="boundary" /> + </when> + <when value="other"> + <param name="refseq" type="data" format="tabular" label="UCSC Refseq Genes (From UCSC Table Browser)" + help="Columns: name,chrom,strand,txStart,txEnd,name"/> + <expand macro="boundary"> + <param name="bl_bed" type="data" format="bed" label="BED format boundary file"/> + </expand> + </when> + </conditional> + </macro> + + <macro name="refGenomeSourceConditional"> + <conditional name="refGenomeSource"> + <param name="genomeSource" type="select" label="Use a built in reference genome or own from your history" help="Genome Reference Fasta sequence"> + <option value="cached" selected="True">Use a built-in genome</option> + <option value="history">Use a genome from history</option> + </param> + <when value="cached"> + <param name="all_fasta_source" type="select" label="Source FASTA Sequence"> + <options from_data_table="all_fasta"/> + </param> + </when> + <when value="history"> + <param name="ownFile" type="data" format="fasta" metadata_name="dbkey" label="Select the reference genome" /> + </when> <!-- history --> + </conditional> <!-- refGenomeSource --> + </macro> + + <macro name="extended_params"> + <param format="txt" name="exprefile" type="data" label="TEXT file for differential expression data"> + <validator type="unspecified_build" /> + </param> + <conditional name="expression"> + <param name="kind" type="select" label="Expression FIle Type" help="Preset columns for Cuffdiff, LIMMA, and BETA Specific Format"> + <option value="CUF">RNA-seq data with Cuffdiff default format</option> + <option value="LIM">MicroArray data with LIMMA default format</option> + <option value="BSF">BETA Specific Format</option> + <option value="O">Other tools processed data with BETA specific format</option> + </param> + <when value="CUF"> + <param name="expreinfo" type="text" value="2,10,13" label="Column number of the geneid, regulate status and statistics value"/> + </when> + <when value="LIM"> + <param name="expreinfo" type="text" value="2,5,7" label="Column number of the geneid, regulate status and statistics value"/> + </when> + <when value="BSF"> + <param name="expreinfo" type="text" value="1,2,3" label="Column number of the geneid, regulate status and statistics value"/> + </when> + <when value="O"> + <param name="expreinfo" type="text" value="" label="Column number of the geneid, regulate status and statistics value is required"> + <validator type="regex" message="Enter column numbers:geneid,test_stat,value">^\d+,\d+,\d+$</validator> + </param> + </when> + </conditional> + <param name="gname2" type="select" label="TRUE if gene ID in expression file identified by official gene symbol"> + <option value="Refseq">Refseq</option> + <option value="Gene_Symbol">Gene Symbol</option> + </param> + <param name="diff_fdr" type="float" label="get the most significant expression differentially changed genes by this cutoff based on fdr or pvalue" value="1.0"> + <validator type="in_range" max="1.0" min="0" message="The Relative distance is out of range, the parameter has to be between 0 to 1.0" /> + </param> + <param name="diff_amount" type="float" label="get the most significant expression differentially changed genes by amount" value="0.5"> + <validator type="in_range" max="20000" min="0" message="The Relative distance is out of range, the parameter has to be between 0 to 20000" /> + </param> + <param name="method" type="select" label="method to do the TF/CR function prediction" optional="true"> + <option value="score">regulatory potential</option> + <option value="distance">distance to the nearest peak</option> + </param> + + </macro> + + <template name="common_opts"> + -p "$peakfile" + -d $distance --pn $peaknumber -o $output_dir -n $name + </template> + + <template name="genome_opts"> +#if $refGenome.genomeName == 'hg19': + -g $refGenome.genomeName + ## -r \$BETA_LIB_PATH/BETA/references/hg19.refseq + #if $refGenome.boundary.boundaryLimit: + --bl + ## --bf \$BETA_LIB_PATH/BETA/references/hg19_CTCF_bound.bed + #end if +#elif $refGenome.genomeName == 'mm9': + -g $refGenome.genomeName + ## -r \$BETA_LIB_PATH/BETA/references/mm9.refseq + #if $refGenome.boundary.boundaryLimit: + --bl + ## --bf \$BETA_LIB_PATH/BETA/references/mm9_CTCF_bound.bed + #end if +#else + -r $refGenome.refseq + #if $refGenome.boundary.boundaryLimit: + --bl + --bf $refGenome.boundary.bl_bed + #end if +#end if + </template> + <template name="ref_genome_seq_opts"> +#if $refGenomeSource.genomeSource == 'cached': + --gs $refGenomeSource.all_fasta_source.fields.path +#else + --gs $refGenomeSource.ownFile +#end if + </template> + + <template name="extended_opts"> + -e "$exprefile" + -k $expression.kind --info $expression.expreinfo --method $method + --da $diff_amount --df $diff_fdr -c 1 +#if $gname2 == "Gene_Symbol": + --gname2" +#end if + </template> + + <token name="@EXTERNAL_DOCUMENTATION@"> + +For details about this application, please go to: + http://cistrome.org/BETA/index.html + + </token> + <token name="@CITATION_SECTION@">------ + +**Citation** + +For the underlying tool, please cite the following publication: +Wang, S., Sun, H., Ma, J., Zang, C., Wang, C., Wang, J., Tang Q, Meyer CA, Zhang Y, Liu, X. S. (2013). Target analysis by integration of transcriptome and ChIP-seq data with BETA. Nature protocols, 8(12), 2502-2515. +PMID: 24263090 + </token> +</macros> +
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/beta_minus.xml Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,111 @@ +<tool id="beta_minus" name="BETA-minus: Targets prediction with binding only" version="0.1.0"> + <description>Predict the factors (TFs or CRs) direct target genes by only binding data</description> + <macros> + <import>beta_macros.xml</import> + </macros> + <expand macro="requirements" /> + <command> + BETA minus + #include source=$common_opts# + #include source=$genome_opts# + &> $log + </command> + <inputs> + <expand macro="common_params" /> + <expand macro="genome_params" /> + </inputs> + <expand macro="stdio" /> + <outputs> + <data format="txt" name="log" label="Log of BETA minus"/> + <data format="tabular" name="targetsoutput" label="BETA predicted Targets" from_work_dir="BETA_OUTPUT/NA_targets.txt"/> + <data format="tabular" name="targetpeaks" label="BETA Target gene's associated peaks" from_work_dir="BETA_OUTPUT/NA_targets_associated_peaks.txt"/> + </outputs> + <tests> + <test> + <param name='peakfile' value="peaks.bed" ftype="bed" dbkey="hg19"/> + <param name="distance" value="100000"/> + <param name="peaknumber" value="10000"/> + <param name="genomeName" value="hg19"/> + <output name="log"> + <assert_contents> + <has_text_matching expression="Finished" /> + </assert_contents> + </output> + <output name="targetsoutput"> + <assert_contents> + <has_text_matching expression="chr19\t4675243\t4723855\tNM_139159\t1.1.*\t-\tDPP" /> + </assert_contents> + </output> + <output name="targetpeaks"> + <assert_contents> + <has_text_matching expression="chr19\t4723422\t4724314\tregion_9\tNM_139159\tDPP9\t13\t0.6.*" /> + </assert_contents> + </output> + </test> + </tests> + <help> +** BETA minus ** + +@EXTERNAL_DOCUMENTATION@ + +@CITATION_SECTION@ + +This tool annotates the given intervals and scores with genome +features such as gene body. It's the major module in CEAS package +which is written by Hyunjin Gene Shin, published in Bioinformatics +(pubmed id:19689956). + +.. class:: warningmark + +**NEED IMPROVEMENT** + +----- + +**Parameters** + +- **PEAKFILE file** contains peaks for the experiment in a bed + format file. Normally, it's produced by the peak calling tool. It's + required. +- **genome** hg19 for human and mm9 for mouse. Others, don't set this parameter. +- **REFERENCE** is the refgene info file downloaded from UCSC genome browser. + It is a tab delimited text file with gene annotation with refseq and gene symbol. + Input this file only if your genome is neither hg19 nor mm9. + profiling +- **OUTPUT** to specify the output files directory +- **bl** Whether or not to use CTCF boundary file to get the contributed peaks +- **NAME** specify the name of the output files. +- **DISTANCE** specify the distance wich peaks within it will be considered. + + +----- + +**script parameter list of BETA minus** + +:: + + -h, --help show this help message and exit + -p PEAKFILE, --peakfile PEAKFILE + The bed format of peaks binding sites. + BETA supports 3 or 5 columns bed format: CHROM, START, END [NAME, SCORE] + -g {hg19,mm9}, --genome {hg19,mm9} + Specify your species, {hg19, mm9} + -r REFERENCE, --reference REFERENCE + the refgene info file downloaded from UCSC genome + browser.input this file only if your genome is neither + hg19 nor mm9 + -o OUTPUT, --output OUTPUT + the directory to store all the output files, if you + don't set this, files will be output into the current + directory + --bl whether or not use CTCF boundary to filter peaks + around a gene, DEFAULT=FALSE + --pn PEAKNUMBER the number of peaks you want to consider, DEFAULT=10000 + -n NAME, --name NAME this argument is used to name the result file.If not + set, the peakfile name will be used instead + -d DISTANCE, --distance DISTANCE + Set a number which unit is 'base'. It will get peaks + within this distance from gene TSS. default:100000 (100kb) + + </help> + +</tool>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/beta_plus.xml Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,215 @@ +<tool id="beta_plus" name="BETA-plus: Binding and Expression Target prediction and motif analysis" version="0.1.0"> + <description>Predict the factors (TFs or CRs) direct target genes by combining the binding and expression data, then do motif analysis on target regions</description> + <macros> + <import>beta_macros.xml</import> + </macros> + <expand macro="requirements" /> + <command> + BETA plus + #include source=$common_opts# + #include source=$genome_opts# + #include source=$ref_genome_seq_opts# + #include source=$extended_opts# + --mn $motifs + &> $log && + mkdir -p $motifresult.extra_files_path && + cp BETA_OUTPUT/motifresult/betamotif.html $motifresult && + cp BETA_OUTPUT/motifresult/*.js $motifresult.extra_files_path && + cp BETA_OUTPUT/motifresult/*.css $motifresult.extra_files_path && + cp -r BETA_OUTPUT/motifresult/img $motifresult.extra_files_path + + </command> + <inputs> + <expand macro="common_params" /> + <expand macro="genome_params" /> + <expand macro="refGenomeSourceConditional" /> + <expand macro="extended_params" /> + <param name="motifs" type="float" value="10" optional="true" label="Motifs to retrieve" + help="a number between 0 and 1 as the p-value cutoff or an integer larger than 1 as the number of motifs"> + <validator type="in_range" max="20000" min="0" message="A float between 0 and 1 or an integer greater than 1" /> + </param> + </inputs> + <expand macro="stdio" /> + <outputs> + <data format="txt" name="log" label="Log of BETA plus"/> + <data format="pdf" name="functionoutput" label="BETA functional prediction on ${peakfile.name}" from_work_dir="BETA_OUTPUT/NA_function_prediction.pdf"/> + <data format="tabular" name="uptargetsoutput" label="BETA direct targets prediction on up regulated genes" from_work_dir="BETA_OUTPUT/NA_uptarget.txt"/> + <data format="tabular" name="downtargetsoutput" label="BETA direct targets prediction on down regulated genes" from_work_dir="BETA_OUTPUT/NA_downtarget.txt"/> + <data format="bed" name="uptargetpeaks" label="BETA Uptarget associated peaks" from_work_dir="BETA_OUTPUT/NA_uptarget_associate_peaks.bed"/> + <data format="bed" name="downtargetpeaks" label="BETA Downtarget associated peaks" from_work_dir="BETA_OUTPUT/NA_downtarget_associate_peaks.bed"/> + <data format="txt" name="upmotifs" label="BETA Motifs in up-target regions" from_work_dir="BETA_OUTPUT/motifresult/UP_MOTIFS.txt" /> + <data format="txt" name="up_non_motifs" label="BETA Motifs in up-target regions versus non-target regions" from_work_dir="BETA_OUTPUT/motifresult/UP_NON_MOTIFS.txt" /> + <data format="txt" name="downmotifs" label="BETA Motifs in down-target regions" from_work_dir="BETA_OUTPUT/motifresult/DOWN_MOTIFS.txt" /> + <data format="txt" name="down_non_motifs" label="BETA Motifs in down-target regions versus non-target regions" from_work_dir="BETA_OUTPUT/motifresult/DOWN_NON_MOTIFS.txt" /> + <data format="txt" name="differentialmotifs" label="BETA Motifs up-target regions versus down-target regions" from_work_dir="BETA_OUTPUT/motifresult/DIFFERENTIAL_MOTIF_UP_DOWN.txt" /> + <data format="html" name="motifresult" label="BETA Motif analysis on target regions"/> + </outputs> + <tests> + <test> + <param name='peakfile' value="peaks.bed" ftype="bed" dbkey="hg19"/> + <param name="distance" value="100000"/> + <param name="peaknumber" value="10000"/> + <param name="genomeName" value="hg19"/> + <param name='exprefile' value="diff_expr.xls" ftype="tabular" dbkey="hg19"/> + <param name="kind" value="LIM"/> + <param name="expreinfo" type="text" value="2,5,7"/> + <param name="gname2" value="Refseq"/> + <param name="diff_fdr" value="1.0"/> + <param name="diff_amount" value="0.5"/> + <param name="method" value="score"/> + <output name="log"> + <assert_contents> + <has_text_matching expression="Finished" /> + </assert_contents> + </output> + <output name="uptargetsoutput"> + <assert_contents> + <has_text_matching expression="NM_001002231" /> + </assert_contents> + </output> + <output name="downtargetsoutput"> + <assert_contents> + <has_text_matching expression="NM_001280" /> + </assert_contents> + </output> + <output name="differentialmotifs"> + <assert_contents> + <has_text_matching expression="CDX1\tHomeodomain Family" /> + </assert_contents> + </output> + </test> + </tests> + <help> +** BETA plus ** + +@EXTERNAL_DOCUMENTATION@ + +@CITATION_SECTION@ + +This tool annotates the given intervals and scores with genome +features such as gene body. +Predicts Direct targets of TF and the active/repressive function +prediction. Does motif analysis at targets region as well. +It's the major module in CEAS package +which is written by Hyunjin Gene Shin, published in Bioinformatics +(pubmed id:19689956). + +.. class:: warningmark + +**NEED IMPROVEMENT** + +----- + +**Parameters** + +- **PEAKFILE file** contains peaks for the experiment in a bed + format file. Normally, it's produced by the peak calling tool. It's + required. +- **EXPREFILE file** contains the differentially expressed genes in a tab + delimited text file. It's required. +- **Kind** The kind of your expression file format, LIM for LIMMA standard + output with Microarray, CUF for Cuffdiffs standard output with RNA-seq, + BSF for BETA specific format, and O for other formats. +- **genome** hg19 for human and mm9 for mouse. Others, don't set this parameter. +- **genomereference** Genome reference data with fasta format +- **gname2** If this switch is on, gene or transcript IDs in files given + through -e will be considered as official gene symbols, DEFAULT=FALSE +- **EXPREINFO** is the columns info of the geneID, up/down status and statistcal + values column of your expression data,NOTE: use a comma as an connector. + for example: 2,5,7 means geneID in the 2nd column, Tscore in 5th column + and FDR in 7 column. +- **REFERENCE** is the refgene info file downloaded from UCSC genome browser. + It is a tab delimited text file with gene annotation with refseq and gene symbol. + Input this file only if your genome is neither hg19 nor mm9. + profiling +- **OUTPUT** to specify the output files directory +- **bl** Whether or not to use CTCF boundary file to get the contributed peaks +- **BOUNDARYFILE** is the file with reasonable boundaries if --bl is on and genome + is neither hg19 nor mm9. +- **NAME** specify the name of the output files. +- **DISTANCE** specify the distance wich peaks within it will be considered. +- **DIFF_FDR** specify the differential genes by the 3rd column in file input + via -e, genes with less than this value will be considered as the differentially + changed genes. +- **DIFF_AMOUNT** specify the differential genes the top #(DIFF_AMOUNT) ranked by + the 3rd column in file input via -e, genes ranked in the top # will be considered + as the differentially expressed genes. +- **CUTOFF** specify a cutoff of ks-test in the function prediction part + + +----- + +**Script parameter list of BETA plus** + +:: + + -h, --help show this help message and exit + -p PEAKFILE, --peakfile PEAKFILE + The bed format of peaks binding sites. (BETA support 3 + or 5 columns bed format, CHROM, START, END (NAME, + SCORE)) + -e EXPREFILE, --diff_expr EXPREFILE + The differential expression file get from limma for + MicroArray ddata and cuffdiff for RNAseq data + -k {LIM,CUF,BSF,O}, --kind {LIM,CUF,BSF,O} + The kind of your expression file,this is required,it + can be LIM, CUF, BSF, O. LIM for LIMMA standard + format. CUF for CUFDIFF standard format, BSF for BETA + specific format and O for other formats, if is 'O', + columns infor required via --info + -g {hg19,mm9}, --genome {hg19,mm9} + Specify your species, hg19, mm9 + --gs GENOMEREFERNCE GenomeReference file with fasta format + --gname2 If this switch is on, gene or transcript IDs in files + given through -e will be considered as official gene + symbols, DEFAULT=FALSE + --info EXPREINFO Specify the geneID, up/down status and statistcal + values column of your expression data,NOTE: use a + comma as an connector. for example: 2,5,7 means geneID + in the 2nd column, Tscore in 5th column and FDR in 7 + column DEFAULT:2,5,7 for LIMMA; 2,10,13 for Cuffdiff + and 1,2,3 for BETA specific format + -r REFERENCE, --reference REFERENCE + The refgene info file downloaded from UCSC genome + browser.input this file only if your genome is neither + hg19 nor mm9 + -o OUTPUT, --output OUTPUT + The directory to store all the output files, if you + don't set this, files will be output into the current + directory + --bl Whether or not use CTCF boundary to filter peaks + around a gene, DEFAULT=FALSE + --bf BOUNDARYFILE CTCF conserved peaks bed file, use this only when you + set --bl and the genome is neither hg19 nor mm9 + --pn PEAKNUMBER The number of peaks you want to consider, + DEFAULT=10000 + --method {score,distance} + Define the method to do the TF/CR function prediction, + score for regulatory potential, distance for the + distance to the proximal binding peak. DEFAULT:SCORE + -n NAME, --name NAME This argument is used to name the result file.If not + set, the peakfile name will be used instead + -d DISTANCE, --distance DISTANCE + Set a number which unit is 'base'. It will get peaks + within this distance from gene TSS. default:100000 + (100kb) + --df DIFF_FDR Input a number 0~1 as a threshold to pick out the most + significant differential expressed genes by FDR, + DEFAULT = 1, that is select all the genes + --da DIFF_AMOUNT Get the most significant differential expressed genes + by the percentage(0-1) or number(larger than 1)Input a + number between 0-1, the rank based on fdr for example, + 2000, so that the script will only consider top 2000 + genes as the differentially expressed genes. DEFAULT = + 0.5, that is select top 50 percent genes of up and + down seprately. NOTE: if you want to use diff_fdr, + please set this parameter to 1, otherwise it will get + the intersection of these two parameters + -c CUTOFF, --cutoff CUTOFF + Input a number between 0~1 as a threshold to select + the closer target gene list(up regulate or down + regulate or both) with the p value was called by one + side ks-test, DEFAULT = 0.001 + + </help> +</tool>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/diff_expr.xls Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,481 @@ +"32945" "NR_045762_at" 3.16711733992891 9.14036911579479 35.9105753456715 6.98610208334345e-11 4.17993094276913e-07 14.1345601785351 +"1101" "NM_001002231_at" 3.21455049282016 9.16992988250215 35.3250580701301 8.07078113559923e-11 4.17993094276913e-07 14.0522721119642 +"11549" "NM_001256080_at" 3.21455049282016 9.16992988250215 35.3250580701301 8.07078113559923e-11 4.17993094276913e-07 14.0522721119642 +"15808" "NM_005551_at" 3.21455049282016 9.16992988250215 35.3250580701301 8.07078113559923e-11 4.17993094276913e-07 14.0522721119642 +"32946" "NR_045763_at" 3.21455049282016 9.16992988250215 35.3250580701301 8.07078113559923e-11 4.17993094276913e-07 14.0522721119642 +"15237" "NM_004917_at" 1.62782240029161 8.84108945029604 30.5759043974932 2.86287415590103e-10 1.24746162750692e-06 13.2746731687123 +"2327" "NM_001030047_at" 1.93291119534877 12.4876578623062 28.2640319841475 5.69767886193315e-10 1.86122640101968e-06 12.810861930482 +"2328" "NM_001030048_at" 1.96268665140252 12.4842124052035 27.8873079553449 6.40715935977398e-10 1.86122640101968e-06 12.7289642830918 +"12266" "NM_001648_at" 1.96268665140252 12.4842124052035 27.8873079553449 6.40715935977398e-10 1.86122640101968e-06 12.7289642830918 +"29470" "NM_199249_at" 0.952847332053921 10.0048063323871 14.3335828387502 2.02649495927327e-07 8.62341590519097e-05 7.87370473678035 +"29471" "NM_199250_at" 0.952847332053921 10.0048063323871 14.3335828387502 2.02649495927327e-07 8.62341590519097e-05 7.87370473678035 +"18475" "NM_014686_at" 0.380373888997721 7.88425928152598 6.96328775463351 7.21679529647501e-05 0.00354135703957127 1.91189712092289 +"11959" "NM_001280_at" -0.313565624928774 11.5517677095165 -5.87746833096408 0.000253164723860419 0.0080677394457016 0.590604854547801 +"32380" "NR_038237_at" -0.322763464076553 5.49396830921258 -5.63833716976844 0.000340577857410155 0.0098198540376018 0.277867682551191 +"20043" "NM_017509_at" 0.302316510055042 5.69304104204907 4.23566930620546 0.00228131817788978 0.0330938286987348 -1.7227636466034 +"13271" "NM_002741_at" -0.247693648104107 8.53250241089358 -3.97234917528605 0.00336493452533077 0.0421481324536491 -2.12887205017727 +"30057" "NM_213560_at" -0.247693648104107 8.53250241089358 -3.97234917528605 0.00336493452533077 0.0421481324536491 -2.12887205017727 +"25580" "NM_138392_at" -0.203652535744714 6.96144726252987 -3.96823163968539 0.00338570869341308 0.0423322881433596 -2.13529072506085 +"16442" "NM_006270_at" 0.210978626036527 7.85003492224526 3.70334199100026 0.00505486284038159 0.0541740881159761 -2.55228349353791 +"13339" "NM_002812_at" 0.310403681648889 10.8802723443825 3.68186149548619 0.00522397766895206 0.0553167185789793 -2.58642895159612 +"14710" "NM_004343_at" 0.203410720903316 10.8592065507189 3.50731820340997 0.00684021080283789 0.0661056025439772 -2.8655115279896 +"29665" "NM_202001_at" -0.251198647032666 8.21763344657288 -3.49394789713525 0.00698399551327217 0.0668465402518271 -2.88700111320127 +"15126" "NM_004793_at" -0.299768296398 9.50435296587981 -3.45405245658428 0.00743218189793424 0.0692858537078163 -2.95120965680756 +"10610" "NM_001238_at" -0.250183487777398 7.93284258286432 -3.4539272236874 0.00743363529840881 0.0692858537078163 -2.95141140752507 +"25663" "NM_138563_at" 0.256020964843622 5.79371966716922 3.43066780406669 0.00770880572778376 0.0708324524986085 -2.98890332043893 +"25664" "NM_138564_at" 0.256020964843622 5.79371966716922 3.43066780406669 0.00770880572778376 0.0708324524986085 -2.98890332043893 +"19271" "NM_015675_at" 0.187154026711737 6.06172287341082 3.37868681080215 0.00836301593014596 0.0745401105366807 -3.07283623735455 +"12341" "NM_001728_at" -0.186723422469308 11.0648561952441 -3.31369323277572 0.0092635584183127 0.0797132517659744 -3.17804046010939 +"29293" "NM_198589_at" -0.186723422469308 11.0648561952441 -3.31369323277572 0.0092635584183127 0.0797132517659744 -3.17804046010939 +"29294" "NM_198591_at" -0.186723422469308 11.0648561952441 -3.31369323277572 0.0092635584183127 0.0797132517659744 -3.17804046010939 +"14246" "NM_003827_at" 0.157612791814469 8.70924349100633 3.28207881946211 0.00973763711121718 0.0822762083216768 -3.22930934536997 +"32548" "NR_038457_at" 0.157612791814469 8.70924349100633 3.28207881946211 0.00973763711121718 0.0822762083216768 -3.22930934536997 +"6394" "NM_001145144_at" -0.261480635460146 8.66625390521095 -3.22190642343394 0.0107110860149779 0.0874420954089262 -3.32704335942639 +"6395" "NM_001145145_at" -0.261480635460146 8.66625390521095 -3.22190642343394 0.0107110860149779 0.0874420954089262 -3.32704335942639 +"15879" "NM_005628_at" -0.261480635460146 8.66625390521095 -3.22190642343394 0.0107110860149779 0.0874420954089262 -3.32704335942639 +"22681" "NM_024100_at" -0.175048380611777 8.17391937795631 -3.1756963058689 0.0115270458814549 0.0911829648195438 -3.40221960275584 +"7543" "NM_001166103_at" -0.173435319072842 11.4598847147527 -3.16157812281367 0.0117890062059263 0.0924112811631179 -3.42520589584547 +"21850" "NM_021102_at" -0.173435319072842 11.4598847147527 -3.16157812281367 0.0117890062059263 0.0924112811631179 -3.42520589584547 +"23247" "NM_025194_at" 0.237635924069187 6.67215418311446 3.11328188257455 0.0127327619847299 0.0975497472583953 -3.50389521240696 +"11358" "NM_001252296_at" -0.344570358842686 7.91177385848591 -3.09983390961273 0.0130092335075598 0.0985631103760115 -3.52581999189628 +"12416" "NM_001806_at" -0.344570358842686 7.91177385848591 -3.09983390961273 0.0130092335075598 0.0985631103760115 -3.52581999189628 +"15757" "NM_005499_at" 0.202130637024609 9.78902817280211 3.05752503614041 0.0139202366535071 0.102784643979536 -3.59483078680497 +"927" "NM_000951_at" -0.243025559552227 7.58726816993298 -3.05299354025077 0.0140216420020478 0.103270741295032 -3.60222479870015 +"21142" "NM_019108_at" 0.160470845400836 7.33445596346233 3.00511553431212 0.0151407991524855 0.108331920701251 -3.68037098991301 +"26144" "NM_144976_at" 0.16592958732153 6.79972152544301 2.9974220742855 0.0153290459280619 0.109342175569124 -3.6929315348589 +"32547" "NR_038456_at" 0.14164929132423 9.52746814708332 2.99376364715005 0.0154194058739472 0.10969491211427 -3.69890462851902 +"220" "NM_000175_at" -0.156391176979842 11.4764005211985 -2.98250322039225 0.0157009856573509 0.110816088080501 -3.71729035778235 +"8627" "NM_001184722_at" -0.156391176979842 11.4764005211985 -2.98250322039225 0.0157009856573509 0.110816088080501 -3.71729035778235 +"22811" "NM_024552_at" -0.160417454297093 7.92342562909726 -2.95787090073908 0.0163355417507895 0.113523933703206 -3.75751298356218 +"4081" "NM_001101391_at" -0.174207626194645 7.72342995662005 -2.85837544710705 0.0191787883691499 0.125549931222572 -3.91997829683918 +"16767" "NM_006627_at" -0.17580844908113 8.4420055849634 -2.80932754197774 0.0207621930115434 0.131375800724159 -4.00002429003795 +"31192" "NR_027368_at" -0.17580844908113 8.4420055849634 -2.80932754197774 0.0207621930115434 0.131375800724159 -4.00002429003795 +"18444" "NM_014649_at" 0.16348066436999 7.93284533053327 2.75959959125526 0.0225040101781618 0.137805633269245 -4.08111607605506 +"26672" "NM_152363_at" -0.187523940344368 4.35130451350599 -2.75486837440506 0.0226772995201219 0.138488068300581 -4.08882696244298 +"20315" "NM_017854_at" -0.22470160141144 6.02991407586849 -2.72773894881937 0.0236974991729958 0.14225436949741 -4.13302492271533 +"13390" "NM_002866_at" 0.187818215690534 8.17360860061288 2.69222239429234 0.0251039402780926 0.146606956230179 -4.19083640130828 +"24295" "NM_032853_at" 0.132580143853457 7.70632149914293 2.69081687002734 0.0251613085767207 0.146794653669608 -4.19312291188851 +"30556" "NR_024247_at" 0.132580143853457 7.70632149914293 2.69081687002734 0.0251613085767207 0.146794653669608 -4.19312291188851 +"18471" "NM_014681_at" 0.183061462642288 6.39860709237326 2.63698830954554 0.0274612645689607 0.154913682975877 -4.28060534039692 +"18966" "NM_015260_at" 0.139947747476366 8.05667958769962 2.62817086086394 0.0278577901735885 0.156074366387194 -4.29491803351329 +"22793" "NM_024527_at" -0.215831092072178 6.95688745021821 -2.60246570446796 0.0290470656529988 0.160446959912359 -4.33661183952638 +"13841" "NM_003370_at" -0.124042783476558 8.1329570637159 -2.54042453571482 0.0321325441071855 0.171585225954715 -4.43702670628807 +"9131" "NM_001194_at" -0.123822099614996 4.75200711996263 -2.49801663220501 0.0344290513359084 0.178781811487924 -4.50546266467232 +"23964" "NM_032346_at" 0.142204499073797 8.28557902526205 2.4752612085976 0.0357283662470043 0.183074396443381 -4.54210779265086 +"22833" "NM_024578_at" 0.144737150805921 7.63688093202269 2.44911505475934 0.0372819017658314 0.18783091664409 -4.58414162953817 +"12582" "NM_001983_at" -0.134397973035288 7.93897357157918 -2.44553041962417 0.0375000822445095 0.188034431381093 -4.58989821070152 +"24771" "NM_052850_at" -0.193815272517751 7.57769086697981 -2.4269202171078 0.038653426236764 0.19148782869401 -4.6197591710964 +"12302" "NM_001687_at" -0.173845858811173 9.94747364967132 -2.37557875150328 0.0420215155609083 0.202061242257418 -4.70190591534986 +"1076" "NM_001001975_at" -0.184531338420014 10.3116905358372 -2.33622701751746 0.0447987825548634 0.208354345003514 -4.76461682048659 +"14948" "NM_004597_at" -0.170627584159629 11.1410224999649 -2.32969605332406 0.045276965722426 0.20955431752418 -4.77500181889548 +"28126" "NM_177401_at" -0.112236989768975 6.9754952708825 -2.3192669123311 0.0460510428598574 0.211599383955874 -4.79157140257229 +"14847" "NM_004491_at" -0.153206605483969 7.7831372971688 -2.27144848239956 0.049770693213093 0.221310274843958 -4.86731408816366 +"31627" "NR_033342_at" 0.175274690203037 4.71679165917484 2.2565785807951 0.0509865320342282 0.223959112926053 -4.890786569302 +"17590" "NM_012292_at" 0.120909841408389 7.71830017293914 2.24789502939951 0.0517099858168574 0.226253093459248 -4.90447515670286 +"23923" "NM_032301_at" -0.135831876443739 7.26797287876028 -2.24492028734719 0.0519601300691136 0.226721513841436 -4.90916127671507 +"21141" "NM_019107_at" 0.203848074400142 9.8498969399841 2.24369003340073 0.0520639280172565 0.226890419646649 -4.91109881702814 +"21146" "NM_019112_at" 0.155925316999722 7.40286996776427 2.23490157558966 0.0528113579328385 0.228716722409483 -4.92493157661283 +"6489" "NM_001145347_at" -0.144595150771608 6.5661860344233 -2.23143774837457 0.0531088260872953 0.229379329522615 -4.93037950897201 +"22733" "NM_024327_at" -0.144595150771608 6.5661860344233 -2.23143774837457 0.0531088260872953 0.229379329522615 -4.93037950897201 +"18207" "NM_014347_at" 0.11694577945884 8.21148553517595 2.20758514033125 0.0552022673329988 0.234813402923857 -4.96783187481451 +"27775" "NM_173631_at" 0.159742067918044 4.09135126429933 2.19853932576877 0.0560171067490357 0.237100840866226 -4.9820057214282 +"30355" "NR_015380_at" -0.159886365272723 5.9079441466438 -2.17637952926588 0.0580631823711277 0.242461374174853 -5.01665691056139 +"16774" "NM_006635_at" -0.177041319701178 4.63336654211273 -2.16509951309432 0.0591325011709288 0.245159355175714 -5.03425576777227 +"16661" "NM_006509_at" -0.119634120189919 5.5776711920245 -2.14482452669499 0.0611029076853875 0.249325325881414 -5.0658189867487 +"504" "NM_000479_at" -0.107474266283699 6.3109293509281 -2.11664810802259 0.063947435315294 0.255665157153949 -5.1095295407552 +"15849" "NM_005597_at" 0.114810381593932 9.63463672712758 2.07809209051147 0.0680484283410897 0.265138617629418 -5.16903887634721 +"1015" "NM_001001563_at" -0.184516507377573 9.07687540972491 -2.07207406186015 0.0687110313695668 0.266666426465345 -5.17829451799033 +"5927" "NM_001142555_at" -0.100971744145305 7.83968411848776 -2.0709459418664 0.0688359313390856 0.267010099382293 -5.18002853744829 +"23079" "NM_024876_at" -0.100971744145305 7.83968411848776 -2.0709459418664 0.0688359313390856 0.267010099382293 -5.18002853744829 +"28164" "NM_177542_at" -0.153496389055496 10.9536250332921 -2.06748342299554 0.0692206528931971 0.267832683227024 -5.18534872454923 +"22106" "NM_021938_at" 0.165548610242144 4.84583328282531 2.0598296655732 0.0700784296408149 0.269892673147069 -5.19709796255932 +"18403" "NM_014601_at" 0.141456016499845 7.3298668402734 2.05803772887981 0.0702807307025799 0.27020138872408 -5.19984658693794 +"9329" "NM_001197124_at" 0.123066896261127 9.15257541772306 2.04127391217519 0.0722007023248284 0.273748562360365 -5.22551997416053 +"9332" "NM_001197127_at" 0.123066896261127 9.15257541772306 2.04127391217519 0.0722007023248284 0.273748562360365 -5.22551997416053 +"9333" "NM_001197128_at" 0.123066896261127 9.15257541772306 2.04127391217519 0.0722007023248284 0.273748562360365 -5.22551997416053 +"17901" "NM_013406_at" -0.105785531466649 9.53020370424609 -2.03701383272412 0.0726965891196985 0.274553672819455 -5.23203242124033 +"2376" "NM_001031726_at" 0.113716205404536 7.71578869340043 2.01691947594462 0.0750800474722875 0.279706676802017 -5.26268531657271 +"11538" "NM_001256046_at" 0.113716205404536 7.71578869340043 2.01691947594462 0.0750800474722875 0.279706676802017 -5.26268531657271 +"11539" "NM_001256047_at" 0.113716205404536 7.71578869340043 2.01691947594462 0.0750800474722875 0.279706676802017 -5.26268531657271 +"23622" "NM_031448_at" 0.113716205404536 7.71578869340043 2.01691947594462 0.0750800474722875 0.279706676802017 -5.26268531657271 +"32938" "NR_045690_at" 0.113716205404536 7.71578869340043 2.01691947594462 0.0750800474722875 0.279706676802017 -5.26268531657271 +"32939" "NR_045691_at" 0.113716205404536 7.71578869340043 2.01691947594462 0.0750800474722875 0.279706676802017 -5.26268531657271 +"32940" "NR_045692_at" 0.113716205404536 7.71578869340043 2.01691947594462 0.0750800474722875 0.279706676802017 -5.26268531657271 +"7529" "NM_001166049_at" -0.113963358965523 7.81399623889318 -2.006498750535 0.0763454000306566 0.282185855709715 -5.27853817509301 +"15314" "NM_005001_at" -0.193627914728918 9.37692505042514 -2.00461473887181 0.0765763376407956 0.282623033755478 -5.28140107049287 +"1481" "NM_001007269_at" 0.117447128070208 7.40908741594356 2.00297213284207 0.0767782296320221 0.282948758509637 -5.28389632265162 +"1482" "NM_001007270_at" 0.117447128070208 7.40908741594356 2.00297213284207 0.0767782296320221 0.282948758509637 -5.28389632265162 +"22946" "NM_024707_at" 0.117447128070208 7.40908741594356 2.00297213284207 0.0767782296320221 0.282948758509637 -5.28389632265162 +"20498" "NM_018083_at" -0.0994973103068011 7.61546773785322 -1.94962343929893 0.0836185953002162 0.297374067901473 -5.36451566709178 +"19300" "NM_015710_at" -0.130909833328683 9.88597602541131 -1.94178697262181 0.0846709955294925 0.299832002556133 -5.37628691015978 +"26324" "NM_145296_at" -0.105310128205325 5.95995135954595 -1.93487824603325 0.0856092253576491 0.302144965119676 -5.38664899278653 +"1744" "NM_001011699_at" -0.214664580775705 5.08623957734549 -1.93265313799552 0.0859134974063917 0.302449869328359 -5.38998319482825 +"24658" "NM_033417_at" -0.214664580775705 5.08623957734549 -1.93265313799552 0.0859134974063917 0.302449869328359 -5.38998319482825 +"3993" "NM_001100122_at" 0.103306829652343 8.30997426596017 1.9025085854482 0.0901378937038021 0.310575384966023 -5.43499981403731 +"18723" "NM_014963_at" 0.103306829652343 8.30997426596017 1.9025085854482 0.0901378937038021 0.310575384966023 -5.43499981403731 +"21282" "NM_020170_at" -0.135465894995142 7.69209499659954 -1.89741968263039 0.0908701428397578 0.311346796663173 -5.44257070169261 +"24707" "NM_033513_at" -0.206742876459295 5.93478398525338 -1.88649782091117 0.0924607036288652 0.314816142586307 -5.4587908731205 +"13228" "NM_002695_at" -0.102464846104409 10.3377455202133 -1.87686961428366 0.0938846011994403 0.317431941145615 -5.47305713733127 +"12157" "NM_001506_at" 0.165081849516322 5.13049598542023 1.85124783562557 0.0977749162925479 0.325135297162744 -5.51086900172688 +"21124" "NM_019088_at" -0.140862531856438 7.61365247871952 -1.83830639589461 0.0997969317471132 0.328910691900334 -5.52988161063806 +"33140" "NR_046384_at" -0.140862531856438 7.61365247871952 -1.83830639589461 0.0997969317471132 0.328910691900334 -5.52988161063806 +"19402" "NM_015953_at" -0.166218504780357 7.97183510838016 -1.83565431759593 0.100216109364657 0.32984924524054 -5.53377059372654 +"10479" "NM_001206974_at" -0.0934317334626957 9.1993649420733 -1.82808292334341 0.101421900802104 0.332715601156005 -5.54485950011187 +"12531" "NM_001930_at" -0.0934317334626957 9.1993649420733 -1.82808292334341 0.101421900802104 0.332715601156005 -5.54485950011187 +"3452" "NM_001080469_at" 0.113111382970929 7.47106512420281 1.81579284627194 0.10340808748397 0.337077101328195 -5.56281561526923 +"3377" "NM_001079880_at" -0.0960268518617315 7.26764172060933 -1.80127541278039 0.105800988040298 0.340261235697005 -5.58395528809364 +"3378" "NM_001079881_at" -0.0960268518617315 7.26764172060933 -1.80127541278039 0.105800988040298 0.340261235697005 -5.58395528809364 +"3379" "NM_001079882_at" -0.0960268518617315 7.26764172060933 -1.80127541278039 0.105800988040298 0.340261235697005 -5.58395528809364 +"19784" "NM_016457_at" -0.0960268518617315 7.26764172060933 -1.80127541278039 0.105800988040298 0.340261235697005 -5.58395528809364 +"18005" "NM_014047_at" -0.114134353991149 10.6933610919756 -1.79759161338625 0.106416341718507 0.341400012018487 -5.58930714756161 +"32354" "NR_038192_at" -0.094393544277068 9.52532252792887 -1.79697486397174 0.106519690575826 0.341597966309358 -5.59020267531504 +"20110" "NM_017607_at" -0.0878815390493264 6.85569455857441 -1.76500396089481 0.112006618790432 0.351434628660276 -5.63642868953999 +"2116" "NM_001020_at" -0.10119864065954 13.5102948012468 -1.76277583982227 0.112398622306158 0.35222074568234 -5.6396357265026 +"21022" "NM_018959_at" -0.152536145593878 8.97412236205022 -1.7435143449488 0.11584068518955 0.357828129820339 -5.66727887175033 +"27403" "NM_170711_at" -0.152536145593878 8.97412236205022 -1.7435143449488 0.11584068518955 0.357828129820339 -5.66727887175033 +"18226" "NM_014371_at" 0.0841498573616999 7.83195234919521 1.73625266029348 0.117163442161253 0.360127010871978 -5.67766243952756 +"25640" "NM_138466_at" 0.0921003294965805 6.64309614016621 1.72316132595442 0.119583336669647 0.364214987221134 -5.69632841638114 +"2484" "NM_001033549_at" -0.102390307961818 9.13738452929369 -1.70673910324539 0.122683938971798 0.369997857064559 -5.71964495253216 +"18064" "NM_014173_at" -0.102390307961818 9.13738452929369 -1.70673910324539 0.122683938971798 0.369997857064559 -5.71964495253216 +"14724" "NM_004359_at" -0.0860104340940548 8.71020061619779 -1.69543647225766 0.124860619564937 0.373271382654726 -5.73562775207396 +"29265" "NM_198534_at" -0.0956841361525615 7.65422637531717 -1.68059421761862 0.127772677825173 0.378389922377682 -5.75653419144925 +"12662" "NM_002067_at" -0.126356752085616 8.3884350878948 -1.67919404777996 0.128050572175173 0.378520615801212 -5.75850159933103 +"27728" "NM_173548_at" 0.0969550322720778 7.25104445244857 1.66988062453113 0.129913110885964 0.381487476658118 -5.77156665138336 +"24661" "NM_033420_at" -0.102397388062636 8.15954065411847 -1.64181087222739 0.13567688287131 0.390421038468796 -5.8107146767605 +"20829" "NM_018467_at" -0.14040841525648 6.93545183597239 -1.62600632723221 0.139023376355771 0.395803322148466 -5.83260254990847 +"9919" "NM_001201338_at" -0.103789283552709 6.42983856090644 -1.6170625732727 0.140950076980912 0.399116156830515 -5.84493863090994 +"9921" "NM_001201340_at" -0.103789283552709 6.42983856090644 -1.6170625732727 0.140950076980912 0.399116156830515 -5.84493863090994 +"13482" "NM_002967_at" -0.103789283552709 6.42983856090644 -1.6170625732727 0.140950076980912 0.399116156830515 -5.84493863090994 +"14534" "NM_004152_at" -0.084875333142433 12.5899576806609 -1.61329112079838 0.141769745105599 0.400382278219155 -5.8501295848643 +"28659" "NM_182498_at" -0.111091225865196 7.34657905166137 -1.58918739622255 0.147110598952928 0.407735556751304 -5.88314935397411 +"5891" "NM_001142502_at" 0.140216446727481 6.78893183542834 1.58833568419649 0.147302587238842 0.408043617971933 -5.88431112618343 +"16800" "NM_006663_at" 0.140216446727481 6.78893183542834 1.58833568419649 0.147302587238842 0.408043617971933 -5.88431112618343 +"9920" "NM_001201339_at" -0.0979843802317513 6.65600607051942 -1.5840219521728 0.148278425425623 0.409250802209961 -5.89018995653779 +"32223" "NR_037699_at" -0.0979843802317513 6.65600607051942 -1.5840219521728 0.148278425425623 0.409250802209961 -5.89018995653779 +"1328" "NM_001005377_at" 0.114443307951093 6.69815863337428 1.5461395314065 0.157099940475638 0.421516843060365 -5.9414315843718 +"13203" "NM_002659_at" 0.114443307951093 6.69815863337428 1.5461395314065 0.157099940475638 0.421516843060365 -5.9414315843718 +"2451" "NM_001033026_at" -0.0925744346807509 8.29267265420597 -1.53759362270916 0.159153577990759 0.424283769897512 -5.95289385722377 +"14186" "NM_003765_at" -0.0890924523736167 8.97050613987682 -1.53720434181501 0.159247690813811 0.42443728527247 -5.95341511612676 +"17707" "NM_012435_at" 0.090709518495995 7.99174010281831 1.52773250832061 0.161552900279423 0.42686014019005 -5.96607474632886 +"11234" "NM_001245004_at" 0.0831029280832478 9.55005084252019 1.50556892092197 0.167062953038818 0.434978184477332 -5.99551968654833 +"11235" "NM_001245005_at" 0.0831029280832478 9.55005084252019 1.50556892092197 0.167062953038818 0.434978184477332 -5.99551968654833 +"7481" "NM_001165895_at" 0.115307245763887 8.60569485675589 1.48862733801302 0.171386064129609 0.441497695055723 -6.01785612843311 +"19878" "NM_016579_at" 0.115307245763887 8.60569485675589 1.48862733801302 0.171386064129609 0.441497695055723 -6.01785612843311 +"13053" "NM_002501_at" -0.100567683813853 9.41111289441253 -1.4873440590854 0.171717506686787 0.441536991494156 -6.01954193682388 +"30051" "NM_212550_at" 0.093692375841524 6.50593015325356 1.48709479761231 0.171781950767416 0.441536991494156 -6.0198692842732 +"32544" "NR_038452_at" -0.0888620401663403 5.46202741453101 -1.48461435184623 0.17242440526031 0.442569939103833 -6.02312499351089 +"21562" "NM_020714_at" -0.0712770636101814 7.23176526192669 -1.47188735795891 0.17575410556032 0.447002215506144 -6.03977854793635 +"23405" "NM_030785_at" -0.0957793656431463 6.23018829986274 -1.46838353992601 0.17668063577237 0.448703940141997 -6.04434821552945 +"15090" "NM_004756_at" -0.0727919398091386 6.64028979726849 -1.45541798441543 0.180146462252965 0.453671834104617 -6.06120039054826 +"19559" "NM_016145_at" -0.116922640439279 10.8599766343058 -1.43502803929696 0.185716969273627 0.460271019894237 -6.08751730106455 +"6681" "NM_001145971_at" 0.0838607190760126 7.69064128967329 1.43403084498273 0.185993204462344 0.460707533173655 -6.08879848731117 +"25593" "NM_138412_at" 0.0838607190760126 7.69064128967329 1.43403084498273 0.185993204462344 0.460707533173655 -6.08879848731117 +"30921" "NR_026887_at" 0.0887827102530094 7.31054435947879 1.42072114162099 0.189714453020454 0.465394519200564 -6.10584564640639 +"19090" "NM_015414_at" -0.0850794530305752 12.62680515362 -1.42003710057303 0.189907434855895 0.465759453253143 -6.10671909242259 +"24732" "NM_033643_at" -0.0850794530305752 12.62680515362 -1.42003710057303 0.189907434855895 0.465759453253143 -6.10671909242259 +"29234" "NM_198478_at" 0.119120791729223 5.90892841127385 1.41878308409613 0.190261659792988 0.466039757734931 -6.10831965172151 +"20193" "NM_017712_at" -0.0711862826416043 7.25988331429071 -1.41031199954694 0.192669515617375 0.469464181406429 -6.11910844922105 +"15631" "NM_005354_at" -0.0893690413589763 8.69545831878106 -1.40079528946565 0.195405939642519 0.473600554496848 -6.13118037298424 +"17617" "NM_012321_at" -0.153140899150232 9.81206469864934 -1.38804107120173 0.199125743624593 0.478623723262868 -6.14727766855224 +"11233" "NM_001245002_at" 0.0737218947129659 9.17948999684777 1.3625170945008 0.206752704724644 0.489852003941845 -6.17920770339117 +"29801" "NM_205843_at" 0.0737218947129659 9.17948999684777 1.3625170945008 0.206752704724644 0.489852003941845 -6.17920770339117 +"15364" "NM_005053_at" -0.0799969342890066 9.50141422587387 -1.35330676675366 0.209565511377135 0.493797766736213 -6.19063524263248 +"564" "NM_000540_at" -0.107910411104695 4.56032246853943 -1.35000516630237 0.210581714863691 0.494991923157965 -6.19471930773204 +"3082" "NM_001042723_at" -0.107910411104695 4.56032246853943 -1.35000516630237 0.210581714863691 0.494991923157965 -6.19471930773204 +"24564" "NM_033256_at" -0.129549361967769 4.25621195498363 -1.341221079079 0.213305803417845 0.498916332615059 -6.20555328597263 +"26774" "NM_152482_at" -0.0673995591099725 7.18847250105384 -1.33658764490842 0.214754717572512 0.500811794210609 -6.21124922358641 +"3026" "NM_001042544_at" 0.0725095836879595 7.11970355849844 1.32995317614504 0.216843886817349 0.503056928884637 -6.21938234707917 +"3027" "NM_001042545_at" 0.0725095836879595 7.11970355849844 1.32995317614504 0.216843886817349 0.503056928884637 -6.21938234707917 +"14009" "NM_003573_at" 0.0725095836879595 7.11970355849844 1.32995317614504 0.216843886817349 0.503056928884637 -6.21938234707917 +"11923" "NM_001256826_at" -0.0777781301681371 7.57156889964234 -1.30298038219651 0.225515165431556 0.511674329116786 -6.25216948401068 +"15153" "NM_004823_at" -0.0813242452241738 4.24064194036104 -1.28775815001042 0.230536187503177 0.517300351475588 -6.27047287933561 +"23524" "NM_031209_at" -0.0815560448500747 7.88304720132535 -1.27944261302776 0.233318310026336 0.519984878088606 -6.28040968029063 +"31095" "NR_027148_at" 0.0751074229234474 4.32856906836152 1.2693613091643 0.23672868554449 0.524386092535961 -6.29239729565921 +"5577" "NM_001136035_at" 0.0880046057463018 7.54277507265493 1.2622687351711 0.239152766972454 0.527567795462141 -6.30079185476845 +"5926" "NM_001142554_at" 0.0880046057463018 7.54277507265493 1.2622687351711 0.239152766972454 0.527567795462141 -6.30079185476845 +"20200" "NM_017722_at" 0.0880046057463018 7.54277507265493 1.2622687351711 0.239152766972454 0.527567795462141 -6.30079185476845 +"29999" "NM_207395_at" -0.0645924114626366 6.6162295792182 -1.25611592704632 0.241272303622542 0.530029696998878 -6.3080477509492 +"21914" "NM_021185_at" 0.0696867895383741 5.62152560490832 1.25529583987117 0.241555981060898 0.530351275569992 -6.30901300642249 +"7198" "NM_001163377_at" -0.0987484594118602 5.16843595260788 -1.25422068639018 0.241928306981224 0.530534653564323 -6.31027781515581 +"20152" "NM_017659_at" -0.0987484594118602 5.16843595260788 -1.25422068639018 0.241928306981224 0.530534653564323 -6.31027781515581 +"25128" "NM_080662_at" -0.118946564077945 7.99357001118347 -1.25212291956199 0.242656131217942 0.531344357929763 -6.31274345383607 +"6469" "NM_001145304_at" -0.0872797636987048 5.39949466637861 -1.25205822496246 0.242678605886565 0.531344357929763 -6.31281944784561 +"6470" "NM_001145305_at" -0.0872797636987048 5.39949466637861 -1.25205822496246 0.242678605886565 0.531344357929763 -6.31281944784561 +"23294" "NM_025249_at" -0.0872797636987048 5.39949466637861 -1.25205822496246 0.242678605886565 0.531344357929763 -6.31281944784561 +"21521" "NM_020657_at" 0.0794859920792588 6.64535471522419 1.25091023370603 0.243077700194487 0.5317172158057 -6.31416748977948 +"11339" "NM_001252129_at" -0.13234203544225 9.87790446202866 -1.24945028391918 0.243586029072312 0.532063142500877 -6.31588060772774 +"2127" "NM_001023563_at" 0.069155018747634 5.69017826899294 1.23809009496311 0.247571503825529 0.536550634099399 -6.32916295082491 +"6363" "NM_001145078_at" 0.069155018747634 5.69017826899294 1.23809009496311 0.247571503825529 0.536550634099399 -6.32916295082491 +"26901" "NM_152657_at" -0.090348293102104 4.8787614924806 -1.23489941131448 0.248700498540255 0.53696209782404 -6.33287819472393 +"22748" "NM_024407_at" -0.115096894613471 8.99275163278497 -1.22431114463794 0.252477422628416 0.541007528608555 -6.34515877904901 +"4576" "NM_001126132_at" -0.0770245059990327 4.94887538339948 -1.19802904694242 0.262055708464567 0.550047668882456 -6.3753163131889 +"4577" "NM_001126133_at" -0.0770245059990327 4.94887538339948 -1.19802904694242 0.262055708464567 0.550047668882456 -6.3753163131889 +"13761" "NM_003283_at" -0.0770245059990327 4.94887538339948 -1.19802904694242 0.262055708464567 0.550047668882456 -6.3753163131889 +"2377" "NM_001031727_at" 0.0637777376338766 7.87320440694618 1.18077452911827 0.268503133082149 0.557758817478735 -6.39485929260936 +"23909" "NM_032285_at" 0.0637777376338766 7.87320440694618 1.18077452911827 0.268503133082149 0.557758817478735 -6.39485929260936 +"31196" "NR_027381_at" 0.0690491456802338 7.72995089529541 1.16340812219381 0.275121149212374 0.564098675853838 -6.41432093148397 +"31197" "NR_027382_at" 0.0690491456802338 7.72995089529541 1.16340812219381 0.275121149212374 0.564098675853838 -6.41432093148397 +"13872" "NM_003407_at" 0.0822539564044851 7.9544130038845 1.13855325184941 0.284819907579704 0.57342076799968 -6.44180567890791 +"6038" "NM_001142886_at" 0.0852487481926589 5.35012991774697 1.12906973110975 0.288591555002825 0.577159483153243 -6.45217666533712 +"23017" "NM_024794_at" 0.0852487481926589 5.35012991774697 1.12906973110975 0.288591555002825 0.577159483153243 -6.45217666533712 +"12068" "NM_001405_at" -0.0626051525798577 4.71396380136526 -1.12386960600391 0.290676426992758 0.578589243377862 -6.45783594947143 +"22516" "NM_022904_at" -0.088628447247399 6.74849942723036 -1.11739827824956 0.293287582155503 0.580727737935739 -6.46485136615336 +"4270" "NM_001111020_at" 0.0526497324129185 9.26697384432586 1.11098306239777 0.29589433751739 0.583193646328917 -6.47177592174553 +"5127" "NM_001130824_at" 0.0526497324129185 9.26697384432586 1.11098306239777 0.29589433751739 0.583193646328917 -6.47177592174553 +"5128" "NM_001130825_at" 0.0526497324129185 9.26697384432586 1.11098306239777 0.29589433751739 0.583193646328917 -6.47177592174553 +"13665" "NM_003169_at" 0.0526497324129185 9.26697384432586 1.11098306239777 0.29589433751739 0.583193646328917 -6.47177592174553 +"17435" "NM_012109_at" -0.0793635144224494 7.72037616136519 -1.10113464613675 0.299931589340094 0.58804947883829 -6.48234774503104 +"16079" "NM_005858_at" 0.0567967817256267 7.84719072118834 1.09893337701395 0.300839861122117 0.58865993369946 -6.48470097241636 +"19974" "NM_016941_at" 0.0686096525875755 6.59018376433886 1.09577355948167 0.302147408335572 0.589843819677209 -6.48807267892465 +"20103" "NM_017592_at" -0.0667596407407967 9.0674515385937 -1.09336279965814 0.303147980537615 0.591138039617613 -6.49064014179047 +"1833" "NM_001012964_at" 0.0948018917250053 5.74513616693524 1.09035569106882 0.304399693474824 0.592094112269694 -6.49383669180008 +"1834" "NM_001012965_at" 0.0948018917250053 5.74513616693524 1.09035569106882 0.304399693474824 0.592094112269694 -6.49383669180008 +"13303" "NM_002774_at" 0.0948018917250053 5.74513616693524 1.09035569106882 0.304399693474824 0.592094112269694 -6.49383669180008 +"21500" "NM_020633_at" -0.0611522828242439 4.59873440204682 -1.08196501627016 0.307913664924871 0.596077216949857 -6.50272047451959 +"15512" "NM_005224_at" -0.0756947129607042 6.35446687367635 -1.06524644118932 0.315009312735262 0.60387756448738 -6.52026474835541 +"26318" "NM_145288_at" 0.0646223016440821 6.16159238510857 1.05179700274557 0.320808728492881 0.608857965721436 -6.53422544859295 +"10527" "NM_001207042_at" -0.0687881771393197 10.8828087905019 -1.03485660149152 0.328229797359311 0.616540710537138 -6.55161354559723 +"931" "NM_000955_at" -0.0837825436483604 6.76774699201667 -1.00222877097937 0.342890679365684 0.629560001685894 -6.58447801368949 +"13521" "NM_003009_at" -0.0515023290336583 10.6068436786031 -0.995942927894455 0.345770994408576 0.632881653667029 -6.59071361393902 +"12682" "NM_002088_at" -0.0471280669206511 6.25096008434431 -0.983012896456221 0.351752769275857 0.638599540866991 -6.60344181932159 +"3214" "NM_001077238_at" -0.0453856333240328 7.79226814933468 -0.958782267868174 0.363169380239254 0.65008326105372 -6.6269339307209 +"27075" "NM_152988_at" -0.0453856333240328 7.79226814933468 -0.958782267868174 0.363169380239254 0.65008326105372 -6.6269339307209 +"12184" "NM_001536_at" -0.0661035361896474 10.7144345003032 -0.945357107597233 0.36961127363006 0.656001139838764 -6.63974539828766 +"29162" "NM_198318_at" -0.0661035361896474 10.7144345003032 -0.945357107597233 0.36961127363006 0.656001139838764 -6.63974539828766 +"31654" "NR_033397_at" -0.0661035361896474 10.7144345003032 -0.945357107597233 0.36961127363006 0.656001139838764 -6.63974539828766 +"1327" "NM_001005376_at" 0.0565291807567796 6.40704375307994 0.937190538678155 0.373570582091609 0.659521452741456 -6.64746662296864 +"13882" "NM_003417_at" 0.0527774393677412 7.57155075668292 0.929514947327236 0.377319934528099 0.663115155231033 -6.65467366378481 +"8231" "NM_001172673_at" 0.056639084402117 4.56010689938352 0.921558064087579 0.381235429922727 0.665789260376376 -6.6620934448667 +"15598" "NM_005317_at" 0.0771786986507781 5.18721426796806 0.918234222072823 0.382879722124709 0.667841092496634 -6.66517737321027 +"28045" "NM_175875_at" 0.0535367986569391 6.84490980417294 0.906879800674013 0.38853524098335 0.673044773452412 -6.67564280093085 +"10533" "NM_001207053_at" 0.0461585935933417 5.51866997574707 0.887525976274538 0.398312593290842 0.682634153860642 -6.69323199460537 +"10923" "NM_001243126_at" 0.0461585935933417 5.51866997574707 0.887525976274538 0.398312593290842 0.682634153860642 -6.69323199460537 +"15357" "NM_005046_at" 0.0461585935933417 5.51866997574707 0.887525976274538 0.398312593290842 0.682634153860642 -6.69323199460537 +"25924" "NM_139277_at" 0.0461585935933417 5.51866997574707 0.887525976274538 0.398312593290842 0.682634153860642 -6.69323199460537 +"27675" "NM_173479_at" -0.0500817042468373 4.40665993504238 -0.88623738931286 0.398969723761899 0.683088683723774 -6.69439186091587 +"28614" "NM_181846_at" 0.0781404058543345 7.04304419593802 0.879886954695778 0.402219417030313 0.685119743940013 -6.70008734023838 +"25018" "NM_058243_at" -0.0508582051554569 9.45164606228627 -0.861636030526002 0.411662648852803 0.692839419768195 -6.71626438239277 +"12829" "NM_002250_at" 0.0523898123841953 5.61434303517307 0.855160550622185 0.415050096173433 0.696224017251803 -6.72193531603298 +"20700" "NM_018316_at" 0.0418227509631262 8.09959475394649 0.849417746641459 0.418070448623048 0.699070262798044 -6.72693430984127 +"1505" "NM_001007561_at" -0.0456878924716282 6.7419224811966 -0.846945496923717 0.419375377085295 0.700278131338202 -6.72907755936869 +"143" "NM_000095_at" -0.0714733381279062 4.84345386051447 -0.84283802825917 0.421549649672945 0.702335449462127 -6.73262668860187 +"21154" "NM_019121_at" -0.0538784465815692 5.88725448317873 -0.833352637711418 0.426600384098839 0.704847037126809 -6.74076657944196 +"11862" "NM_001256714_at" -0.0645377024005196 6.02560527655844 -0.82010818641989 0.433721925075312 0.710579234837988 -6.75200060585312 +"11863" "NM_001256715_at" -0.0645377024005196 6.02560527655844 -0.82010818641989 0.433721925075312 0.710579234837988 -6.75200060585312 +"11864" "NM_001256716_at" -0.0645377024005196 6.02560527655844 -0.82010818641989 0.433721925075312 0.710579234837988 -6.75200060585312 +"28378" "NM_178837_at" -0.0645377024005196 6.02560527655844 -0.82010818641989 0.433721925075312 0.710579234837988 -6.75200060585312 +"14995" "NM_004647_at" 0.0423505007556697 6.58160173580516 0.819643079969957 0.433973476530073 0.710579234837988 -6.75239231042745 +"27895" "NM_174905_at" -0.0409515831161471 8.59308992671276 -0.810292605463352 0.439051689942413 0.71548287995963 -6.76022662067191 +"16328" "NM_006145_at" -0.0398193144709538 9.18543007962004 -0.799566132145539 0.444926491336586 0.721112728356985 -6.76911843527094 +"21953" "NM_021228_at" -0.0597203245484934 8.08887226037547 -0.799339675932946 0.445051086324492 0.721281129675274 -6.76930505579417 +"7767" "NM_001167942_at" 0.0536024295302706 4.99017652418738 0.79048812524723 0.449939492958451 0.723900881703549 -6.77656369312027 +"26671" "NM_152362_at" 0.0536024295302706 4.99017652418738 0.79048812524723 0.449939492958451 0.723900881703549 -6.77656369312027 +"18164" "NM_014299_at" -0.0525680419632266 8.84761711160208 -0.788997206225711 0.450766390603094 0.724380675365723 -6.77777941667339 +"21490" "NM_020533_at" -0.0457267680191871 7.73789326192731 -0.779050073672385 0.456309179292064 0.727079475070816 -6.78583946336972 +"2760" "NM_001039877_at" -0.049152205726223 7.29416286899962 -0.778451196196314 0.456644323720759 0.727222096970257 -6.78632188799385 +"17899" "NM_013403_at" -0.049152205726223 7.29416286899962 -0.778451196196314 0.456644323720759 0.727222096970257 -6.78632188799385 +"2725" "NM_001039671_at" -0.0438316161098289 7.54899642837447 -0.77562541329805 0.458227887158799 0.728369526505186 -6.78859383202971 +"2726" "NM_001039672_at" -0.0438316161098289 7.54899642837447 -0.77562541329805 0.458227887158799 0.728369526505186 -6.78859383202971 +"2727" "NM_001039673_at" -0.0438316161098289 7.54899642837447 -0.77562541329805 0.458227887158799 0.728369526505186 -6.78859383202971 +"6549" "NM_001145461_at" -0.0438316161098289 7.54899642837447 -0.77562541329805 0.458227887158799 0.728369526505186 -6.78859383202971 +"6550" "NM_001145462_at" -0.0438316161098289 7.54899642837447 -0.77562541329805 0.458227887158799 0.728369526505186 -6.78859383202971 +"24722" "NM_033557_at" -0.0438316161098289 7.54899642837447 -0.77562541329805 0.458227887158799 0.728369526505186 -6.78859383202971 +"20206" "NM_017729_at" 0.038388887104885 6.2069764851228 0.77108738617745 0.460778565469016 0.730194145942261 -6.79222735252198 +"14729" "NM_004364_at" -0.0455405057546425 8.57667517077338 -0.761980449294994 0.4659254030643 0.733193103350417 -6.79946289696299 +"29789" "NM_205767_at" -0.0705622804606225 9.27279003284548 -0.759274007590188 0.467462186505632 0.734550322728085 -6.80159868289827 +"21962" "NM_021241_at" -0.040048527727123 8.12821744671498 -0.739090264441856 0.47902696612887 0.742040253162393 -6.81731589503173 +"18505" "NM_014717_at" 0.0609386185013596 5.5913941598502 0.738548806454474 0.479339725412109 0.742338775074002 -6.8177323922633 +"19287" "NM_015692_at" -0.0518564929054559 4.77586554869554 -0.737478050853938 0.479958605966286 0.742768905982646 -6.81855523927173 +"6551" "NM_001145463_at" -0.0407858668431347 7.52779555745947 -0.729742624907583 0.484444781070842 0.745675993894817 -6.82446834612881 +"8267" "NM_001172773_at" 0.0496714941739382 6.45729114015736 0.729702713379508 0.484467997066176 0.745675993894817 -6.82449871218489 +"27054" "NM_152909_at" 0.0496714941739382 6.45729114015736 0.729702713379508 0.484467997066176 0.745675993894817 -6.82449871218489 +"209" "NM_000164_at" -0.0486059858608323 4.48320557525018 -0.719898620750462 0.490192378277049 0.748800005011378 -6.8319133764146 +"25356" "NM_133180_at" 0.0350921135312543 6.22452773661671 0.711359870088714 0.495212703911925 0.752577367061897 -6.83829844822242 +"19653" "NM_016270_at" -0.0403565697154837 5.47560368682759 -0.700727833705897 0.501508774091729 0.756880308783914 -6.84615386209963 +"15230" "NM_004907_at" 0.0366273235069787 10.3405863190441 0.694203158738429 0.505397157986176 0.760210438652652 -6.85092220820773 +"2723" "NM_001039667_at" 0.0498772749104415 5.70736659506269 0.690925151821648 0.507357725728793 0.760739152134997 -6.85330275167056 +"25935" "NM_139314_at" 0.0498772749104415 5.70736659506269 0.690925151821648 0.507357725728793 0.760739152134997 -6.85330275167056 +"3955" "NM_001099737_at" 0.0585071029525457 6.95321520702325 0.688871603783276 0.508588340253501 0.761770372645793 -6.85478892460772 +"23952" "NM_032332_at" 0.0585071029525457 6.95321520702325 0.688871603783276 0.508588340253501 0.761770372645793 -6.85478892460772 +"31506" "NR_029375_at" 0.0585071029525457 6.95321520702325 0.688871603783276 0.508588340253501 0.761770372645793 -6.85478892460772 +"13897" "NM_003433_at" 0.0530192582583711 5.85641253846686 0.677947928526899 0.515165371563199 0.766450031716465 -6.86262767353946 +"20467" "NM_018049_at" -0.0504599421970511 8.41722289989961 -0.674145215610101 0.517467104246803 0.768368736699165 -6.86533000683886 +"22433" "NM_022752_at" -0.0453076262115113 7.36313903027987 -0.673079885469322 0.518113057117971 0.768458327739468 -6.86608460877085 +"21715" "NM_020903_at" 0.0453868565324003 5.0165144465853 0.667096059085502 0.521750401977852 0.769989578646977 -6.87030309817605 +"20369" "NM_017914_at" 0.0455052453283873 8.53921002512602 0.666329521846812 0.522217466840406 0.77040834045409 -6.87084103485054 +"16103" "NM_005883_at" -0.0316900061364898 5.81495375430285 -0.663738347814554 0.523798187376477 0.771436526656091 -6.87265531689178 +"15958" "NM_005716_at" -0.0312594892833271 9.37817977452691 -0.654191273266579 0.529647147951123 0.774673425314769 -6.87928472762919 +"29670" "NM_202468_at" -0.0312594892833271 9.37817977452691 -0.654191273266579 0.529647147951123 0.774673425314769 -6.87928472762919 +"29671" "NM_202469_at" -0.0312594892833271 9.37817977452691 -0.654191273266579 0.529647147951123 0.774673425314769 -6.87928472762919 +"29672" "NM_202470_at" -0.0312594892833271 9.37817977452691 -0.654191273266579 0.529647147951123 0.774673425314769 -6.87928472762919 +"29673" "NM_202494_at" -0.0312594892833271 9.37817977452691 -0.654191273266579 0.529647147951123 0.774673425314769 -6.87928472762919 +"24213" "NM_032737_at" 0.0408820135282184 8.0655053949329 0.646385093480682 0.534458488668423 0.7775566599903 -6.88464051544551 +"13675" "NM_003180_at" 0.0379050076300702 4.90672616348384 0.643847768292609 0.536027948498538 0.7783898379716 -6.88636878045571 +"202" "NM_000156_at" -0.0350987869524548 9.14341746536529 -0.640537563423816 0.538079573378384 0.779913340889691 -6.88861418296842 +"24442" "NM_033068_at" -0.0688027503711854 6.71877016147113 -0.639049336740267 0.539003468556358 0.780003829770368 -6.88962025349585 +"22719" "NM_024310_at" 0.041917683037255 6.79468863172618 0.63725627269055 0.540117849907854 0.780003829770368 -6.89082956785517 +"25667" "NM_138568_at" -0.0460976020992785 8.49519898065088 -0.635327669758373 0.541317981644215 0.780016553168185 -6.89212683733311 +"9853" "NM_001199867_at" -0.03410579799265 7.07796906656805 -0.628939916037115 0.54530412889539 0.782221169053306 -6.89639791397469 +"23597" "NM_031417_at" -0.03410579799265 7.07796906656805 -0.628939916037115 0.54530412889539 0.782221169053306 -6.89639791397469 +"26018" "NM_144616_at" -0.0365635201021304 6.42342954738983 -0.625118953072761 0.54769670168526 0.783808931849855 -6.89893389313576 +"30411" "NR_023312_at" -0.0296769286331475 10.7269239133314 -0.624392497948954 0.548152276853416 0.784241025531287 -6.89941444359933 +"30412" "NR_023313_at" -0.0296769286331475 10.7269239133314 -0.624392497948954 0.548152276853416 0.784241025531287 -6.89941444359933 +"15259" "NM_004943_at" 0.0364677884761697 7.34237391012443 0.624221392830465 0.548259612513221 0.78428918840552 -6.89952755534572 +"17218" "NM_007165_at" -0.0340559577538944 8.15913585445595 -0.622028710842669 0.549636181512177 0.785322718688813 -6.90097455103523 +"24794" "NM_052876_at" -0.0521906705833661 6.63201151509116 -0.613374072335203 0.555089105337418 0.787206142565094 -6.90664036445756 +"21685" "NM_020862_at" 0.0381941917611606 9.40000451947403 0.606939028466424 0.559163659043677 0.789177132296998 -6.91080586935581 +"31152" "NR_027271_at" 0.043262755173652 6.90852950832556 0.604044400509368 0.561002047879942 0.790449977298153 -6.91266643748335 +"488" "NM_000455_at" -0.0320571258773494 7.41573945180779 -0.603762355087013 0.561181359999779 0.790596418458116 -6.91284728915109 +"17427" "NM_012099_at" 0.0453810394219722 7.64575233549103 0.602325089099858 0.562095617627863 0.791296790844426 -6.91376767778585 +"14531" "NM_004146_at" -0.080678776731351 7.38266978045192 -0.598760668577731 0.564366628473089 0.792332655571753 -6.9160415247726 +"33126" "NR_046366_at" -0.0415090031263343 8.35640044425227 -0.594250889028734 0.567247395566391 0.794151804909608 -6.91890061598818 +"15085" "NM_004750_at" -0.0462373875681994 6.03146759249442 -0.589800681804042 0.570098221466975 0.795254082520098 -6.9217023847937 +"5163" "NM_001130955_at" 0.031678817114857 9.01958145555848 0.574645731880251 0.579866557706108 0.800917994099263 -6.9310974835887 +"19012" "NM_015318_at" 0.031678817114857 9.01958145555848 0.574645731880251 0.579866557706108 0.800917994099263 -6.9310974835887 +"2922" "NM_001040668_at" -0.0392744348526275 6.5893691273595 -0.571488218105333 0.581913368410164 0.802252473721304 -6.93302640668831 +"25698" "NM_138639_at" -0.0392744348526275 6.5893691273595 -0.571488218105333 0.581913368410164 0.802252473721304 -6.93302640668831 +"5003" "NM_001130065_at" 0.0255571293388197 6.82001807515061 0.544932690759027 0.599283372355393 0.813200536395236 -6.94885753727906 +"14530" "NM_004145_at" 0.0255571293388197 6.82001807515061 0.544932690759027 0.599283372355393 0.813200536395236 -6.94885753727906 +"21757" "NM_020959_at" -0.0301920224889072 7.53990261851814 -0.520146815161188 0.615742154752181 0.822097965165509 -6.96299777995087 +"3434" "NM_001080436_at" 0.0430213827278356 6.29376473868648 0.512343391471877 0.620972034324602 0.825296049699784 -6.96732160631691 +"3541" "NM_001081560_at" -0.0328361900340663 6.28379669191889 -0.51184315314373 0.621308070705414 0.825387882496952 -6.96759668630316 +"3542" "NM_001081562_at" -0.0328361900340663 6.28379669191889 -0.51184315314373 0.621308070705414 0.825387882496952 -6.96759668630316 +"3543" "NM_001081563_at" -0.0328361900340663 6.28379669191889 -0.51184315314373 0.621308070705414 0.825387882496952 -6.96759668630316 +"14771" "NM_004409_at" -0.0328361900340663 6.28379669191889 -0.51184315314373 0.621308070705414 0.825387882496952 -6.96759668630316 +"23721" "NM_031941_at" 0.0346920023467536 5.48853467360192 0.507573623383555 0.624179917703935 0.827531576892766 -6.96993418679799 +"19301" "NM_015711_at" -0.0287036725307299 8.2081240458814 -0.505483893004109 0.625588008270348 0.828507294116506 -6.97107155157689 +"11134" "NM_001243947_at" -0.0540189583834954 3.91533440180995 -0.504113984458367 0.626511946470764 0.828858018976977 -6.97181474111364 +"1967" "NM_001015878_at" 0.0392271926599017 5.76080575793793 0.50388337397088 0.626667550238634 0.828933464323298 -6.97193966252566 +"1968" "NM_001015879_at" 0.0392271926599017 5.76080575793793 0.50388337397088 0.626667550238634 0.828933464323298 -6.97193966252566 +"13658" "NM_003160_at" 0.0392271926599017 5.76080575793793 0.50388337397088 0.626667550238634 0.828933464323298 -6.97193966252566 +"14195" "NM_003775_at" -0.0283746353986318 6.78669850553772 -0.502136586483607 0.627846825107651 0.82927070613927 -6.9728841429657 +"25280" "NM_130760_at" 0.0275536960352341 5.87935136440937 0.488567025400564 0.637045723086772 0.834627031260879 -6.98011553194238 +"25281" "NM_130762_at" 0.0275536960352341 5.87935136440937 0.488567025400564 0.637045723086772 0.834627031260879 -6.98011553194238 +"11598" "NM_001256213_at" 0.039063588864102 5.40264196574747 0.473802158788559 0.647130245481655 0.840489656680446 -6.98777061052433 +"11599" "NM_001256214_at" 0.039063588864102 5.40264196574747 0.473802158788559 0.647130245481655 0.840489656680446 -6.98777061052433 +"26619" "NM_152296_at" 0.039063588864102 5.40264196574747 0.473802158788559 0.647130245481655 0.840489656680446 -6.98777061052433 +"15522" "NM_005234_at" 0.0272790199973123 8.94046900579265 0.468574249929509 0.650719465851007 0.842434047844475 -6.99042761558441 +"22639" "NM_024050_at" 0.0248125138255268 7.09157673222045 0.460873456977509 0.656023840478579 0.844005722651515 -6.9942903260097 +"12895" "NM_002333_at" -0.0227666186456705 6.95359910480021 -0.456243047155647 0.659223194771883 0.845737112983798 -6.99658357490136 +"20363" "NM_017908_at" -0.0235200360074268 7.57236190103273 -0.43861642761522 0.671469062018008 0.852398299945965 -7.00511094920452 +"15870" "NM_005619_at" -0.0295191209311501 5.61538982526891 -0.435798756994205 0.673436285376833 0.853439191325338 -7.00644428861075 +"29857" "NM_206900_at" -0.0295191209311501 5.61538982526891 -0.435798756994205 0.673436285376833 0.853439191325338 -7.00644428861075 +"29858" "NM_206901_at" -0.0295191209311501 5.61538982526891 -0.435798756994205 0.673436285376833 0.853439191325338 -7.00644428861075 +"20925" "NM_018708_at" -0.0590784074624491 7.40485158232476 -0.434843884705061 0.674103550293549 0.853686538533853 -7.00689427339901 +"26995" "NM_152784_at" 0.0251616530547563 3.63051708025999 0.433842327219615 0.674803763362945 0.85399588473588 -7.00736524273574 +"25295" "NM_130786_at" -0.0307196459328871 7.50558589600135 -0.412573296678125 0.68975084496137 0.861644717986084 -7.01712059056845 +"13374" "NM_002850_at" 0.0245907089655546 6.87817177303768 0.412041700079386 0.690126298814035 0.861702864813669 -7.01735837974968 +"25336" "NM_130853_at" 0.0245907089655546 6.87817177303768 0.412041700079386 0.690126298814035 0.861702864813669 -7.01735837974968 +"25337" "NM_130854_at" 0.0245907089655546 6.87817177303768 0.412041700079386 0.690126298814035 0.861702864813669 -7.01735837974968 +"25338" "NM_130855_at" 0.0245907089655546 6.87817177303768 0.412041700079386 0.690126298814035 0.861702864813669 -7.01735837974968 +"14820" "NM_004461_at" 0.0363253955312395 8.9998424066729 0.409488683946973 0.691930682603696 0.862825118268612 -7.01849626225344 +"9238" "NM_001195422_at" 0.0264766814761312 6.9629689925689 0.406927252242501 0.693743086359312 0.863371291821149 -7.01963105405041 +"1317" "NM_001005360_at" -0.0249546698683334 7.93895336791174 -0.404263512546376 0.695630071293144 0.864213573370673 -7.02080389732398 +"1318" "NM_001005361_at" -0.0249546698683334 7.93895336791174 -0.404263512546376 0.695630071293144 0.864213573370673 -7.02080389732398 +"1319" "NM_001005362_at" -0.0249546698683334 7.93895336791174 -0.404263512546376 0.695630071293144 0.864213573370673 -7.02080389732398 +"8878" "NM_001190716_at" -0.0249546698683334 7.93895336791174 -0.404263512546376 0.695630071293144 0.864213573370673 -7.02080389732398 +"15261" "NM_004945_at" -0.0249546698683334 7.93895336791174 -0.404263512546376 0.695630071293144 0.864213573370673 -7.02080389732398 +"24711" "NM_033520_at" 0.0253018835716992 4.98746168247706 0.401248567369924 0.69776852951823 0.865475858231665 -7.02212242171168 +"25878" "NM_139159_at" -0.0261689562252645 6.64141861431796 -0.398449221469302 0.69975660035325 0.866837787196658 -7.02333813890295 +"2229" "NM_001025160_at" 0.0254349471717008 7.15098989536366 0.374875459658466 0.716593392383266 0.875063152513534 -7.03324962378164 +"12395" "NM_001784_at" 0.0254349471717008 7.15098989536366 0.374875459658466 0.716593392383266 0.875063152513534 -7.03324962378164 +"25031" "NM_078481_at" 0.0254349471717008 7.15098989536366 0.374875459658466 0.716593392383266 0.875063152513534 -7.03324962378164 +"16973" "NM_006858_at" 0.0236317247072844 8.02130699401011 0.362646899099344 0.725392306333625 0.879192323162749 -7.03816053217275 +"24798" "NM_052882_at" -0.0223456530727191 3.58433253294815 -0.362150940301199 0.725750080904453 0.879442488624059 -7.03835637259147 +"14462" "NM_004069_at" -0.0296847849287243 10.4080165619478 -0.353696507986212 0.731859713493362 0.883223048387229 -7.04165475589876 +"5388" "NM_001135155_at" 0.0189143960610849 6.98558602745139 0.352667056502983 0.732605030948197 0.883520719046008 -7.04205121255013 +"5389" "NM_001135156_at" 0.0189143960610849 6.98558602745139 0.352667056502983 0.732605030948197 0.883520719046008 -7.04205121255013 +"8982" "NM_001193268_at" -0.0274510881779388 6.82066552897095 -0.344440045008038 0.738571957421616 0.886965052344006 -7.04517917008034 +"8983" "NM_001193269_at" -0.0274510881779388 6.82066552897095 -0.344440045008038 0.738571957421616 0.886965052344006 -7.04517917008034 +"29264" "NM_198533_at" -0.0173606483820299 6.89627794397109 -0.341686371172087 0.740573328902041 0.887622798651358 -7.04621008299482 +"29308" "NM_198706_at" -0.0173606483820299 6.89627794397109 -0.341686371172087 0.740573328902041 0.887622798651358 -7.04621008299482 +"29310" "NM_198708_at" -0.0173606483820299 6.89627794397109 -0.341686371172087 0.740573328902041 0.887622798651358 -7.04621008299482 +"2761" "NM_001039885_at" 0.020284323767684 6.27499743094445 0.33848612791211 0.742901866992554 0.888764368916653 -7.04739805632356 +"22712" "NM_024301_at" 0.020284323767684 6.27499743094445 0.33848612791211 0.742901866992554 0.888764368916653 -7.04739805632356 +"14733" "NM_004368_at" -0.0363462982329494 7.91260020659114 -0.330280875450693 0.748884732963593 0.891873923374024 -7.05039417239932 +"29558" "NM_201277_at" -0.0363462982329494 7.91260020659114 -0.330280875450693 0.748884732963593 0.891873923374024 -7.05039417239932 +"31035" "NR_027064_at" 0.02940815932857 5.64838161042996 0.329339667367915 0.749572164245079 0.891999319749402 -7.05073326703302 +"20447" "NM_018025_at" -0.0255724476174173 6.70677903163548 -0.321695064011753 0.755164194161158 0.89479032559217 -7.05345244136599 +"21988" "NM_021575_at" -0.0267313471848336 10.2339741405947 -0.317893697714511 0.757950554769838 0.895883574824419 -7.0547813637705 +"12663" "NM_002068_at" 0.0294670260646841 4.49849993821124 0.317730499142573 0.75807026086118 0.895948989128986 -7.05483807092532 +"900" "NM_000923_at" -0.0186168080415561 5.81878908623679 -0.312686697274073 0.761773241051179 0.897095913823464 -7.05657662210501 +"3859" "NM_001098818_at" -0.0186168080415561 5.81878908623679 -0.312686697274073 0.761773241051179 0.897095913823464 -7.05657662210501 +"3860" "NM_001098819_at" -0.0186168080415561 5.81878908623679 -0.312686697274073 0.761773241051179 0.897095913823464 -7.05657662210501 +"32778" "NR_040546_at" -0.0186168080415561 5.81878908623679 -0.312686697274073 0.761773241051179 0.897095913823464 -7.05657662210501 +"3617" "NM_001083899_at" 0.0239876676562911 3.78732981754912 0.312445281196659 0.761950642266021 0.897095913823464 -7.05665915380747 +"11530" "NM_001256017_at" 0.0239876676562911 3.78732981754912 0.312445281196659 0.761950642266021 0.897095913823464 -7.05665915380747 +"19727" "NM_016363_at" 0.0239876676562911 3.78732981754912 0.312445281196659 0.761950642266021 0.897095913823464 -7.05665915380747 +"32475" "NR_038359_at" -0.0182694463491808 6.5669542059689 -0.303109877360908 0.768821837570379 0.899975164910367 -7.05980275418258 +"26899" "NM_152654_at" -0.0153610424929456 5.14020394718423 -0.291614495671883 0.77731226749947 0.904839655805919 -7.06354536358087 +"18807" "NM_015063_at" -0.0214420696242277 6.94382077949089 -0.282283570320933 0.784227208619211 0.909487532944876 -7.06647891413167 +"29778" "NM_203486_at" 0.0179969786948639 6.0174309816328 0.277331179213081 0.787905527741378 0.911067263559742 -7.06799784293514 +"552" "NM_000528_at" 0.0136541168376478 9.65025356609827 0.272529241830086 0.791477428140303 0.913127397203803 -7.0694453977459 +"8315" "NM_001173498_at" 0.0136541168376478 9.65025356609827 0.272529241830086 0.791477428140303 0.913127397203803 -7.0694453977459 +"21180" "NM_019612_at" 0.017763140416208 4.34065466244742 0.272465713032888 0.791524718553071 0.913150654091922 -7.06946438205516 +"21196" "NM_019849_at" 0.0180967616086241 5.78289945770434 0.269885830024826 0.793445927593272 0.914396560776159 -7.07023165124168 +"4231" "NM_001105578_at" 0.0227643317180313 4.6261207661963 0.268696567968939 0.794332055588785 0.914777143438624 -7.07058292574806 +"10502" "NM_001207009_at" -0.0146066876623578 6.05021095759582 -0.23378360190333 0.820479986371581 0.925842025279262 -7.08021387643664 +"29219" "NM_198458_at" -0.0146066876623578 6.05021095759582 -0.23378360190333 0.820479986371581 0.925842025279262 -7.08021387643664 +"4396" "NM_001114171_at" 0.0191531246912886 6.38893747099808 0.223326929943684 0.82835911611684 0.92933669817754 -7.0828412797464 +"16858" "NM_006732_at" 0.0191531246912886 6.38893747099808 0.223326929943684 0.82835911611684 0.92933669817754 -7.0828412797464 +"6587" "NM_001145641_at" 0.0203830694812952 5.68825190237634 0.221834751551676 0.829485159951514 0.92999799719029 -7.08320652489575 +"19594" "NM_016199_at" -0.022751713087505 9.86123861197201 -0.221639985053409 0.829632167263159 0.92999799719029 -7.08325401985767 +"4375" "NM_001114093_at" -0.0124866919472755 7.89638480651414 -0.212343229647479 0.836657308060689 0.933699484623113 -7.08547308549722 +"19217" "NM_015578_at" -0.0124866919472755 7.89638480651414 -0.212343229647479 0.836657308060689 0.933699484623113 -7.08547308549722 +"28704" "NM_182577_at" -0.0196584794465346 6.52149123851701 -0.207248011418093 0.840514099190357 0.935906247482165 -7.08664935525981 +"1623" "NM_001009813_at" -0.0142998235594067 6.31397303956101 -0.204172985064798 0.842843910726758 0.937079158512611 -7.08734555972281 +"21272" "NM_020160_at" -0.0142998235594067 6.31397303956101 -0.204172985064798 0.842843910726758 0.937079158512611 -7.08734555972281 +"23433" "NM_030818_at" 0.00991986618630136 7.73228657841648 0.200857234569415 0.845357924190993 0.938242864218474 -7.08808471384098 +"22494" "NM_022835_at" 0.0105846067362432 5.89480488180709 0.192492256753211 0.851708461313965 0.941364826181664 -7.08989615083676 +"16033" "NM_005804_at" -0.0130833470985614 8.58931693241222 -0.180718772626689 0.860665787363454 0.945175005814934 -7.09231622482094 +"32459" "NR_038336_at" -0.0130833470985614 8.58931693241222 -0.180718772626689 0.860665787363454 0.945175005814934 -7.09231622482094 +"21566" "NM_020719_at" 0.00939635043694231 8.24091972133752 0.175441617747876 0.864687620592754 0.946677386995039 -7.09335177045869 +"29306" "NM_198704_at" -0.00985518469996194 7.10189969506857 -0.170598888156534 0.868382008248296 0.947628180904821 -7.09427525279344 +"29309" "NM_198707_at" -0.00985518469996194 7.10189969506857 -0.170598888156534 0.868382008248296 0.947628180904821 -7.09427525279344 +"2757" "NM_001039847_at" -0.0100315010572629 11.2604574308436 -0.163997226964273 0.873423676635233 0.949750631241415 -7.09549278750605 +"2758" "NM_001039848_at" -0.0100315010572629 11.2604574308436 -0.163997226964273 0.873423676635233 0.949750631241415 -7.09549278750605 +"12679" "NM_002085_at" -0.0100315010572629 11.2604574308436 -0.163997226964273 0.873423676635233 0.949750631241415 -7.09549278750605 +"14593" "NM_004218_at" -0.0102135239996581 8.44575465141733 -0.152298338874587 0.882372820772274 0.953963159733917 -7.09753307173588 +"22688" "NM_024108_at" -0.0126788746678486 8.34404878330294 -0.151386701929102 0.883070944923828 0.954273980690053 -7.09768575675171 +"5590" "NM_001136052_at" -0.0123230956723255 5.97598032244257 -0.15020586018157 0.883975382866668 0.954863308180461 -7.09788217373938 +"9792" "NM_001199752_at" -0.0123230956723255 5.97598032244257 -0.15020586018157 0.883975382866668 0.954863308180461 -7.09788217373938 +"9793" "NM_001199753_at" -0.0123230956723255 5.97598032244257 -0.15020586018157 0.883975382866668 0.954863308180461 -7.09788217373938 +"26668" "NM_152359_at" -0.0123230956723255 5.97598032244257 -0.15020586018157 0.883975382866668 0.954863308180461 -7.09788217373938 +"26983" "NM_152769_at" 0.0119501110446967 5.66919371836114 0.142893728333212 0.889579852640341 0.957705622207682 -7.09906436466738 +"24194" "NM_032683_at" 0.00790845759136261 7.12409568777254 0.13928279030618 0.892349919115191 0.959141592309216 -7.09962650836957 +"25701" "NM_138690_at" -0.0140986765964248 5.21918174585043 -0.127046404617562 0.901748121740448 0.963406821617944 -7.10142489881673 +"6761" "NM_001146202_at" 0.0119310043487824 4.90148783046398 0.119472114481188 0.907573823191749 0.965282851871456 -7.10245559369243 +"6762" "NM_001146203_at" 0.0119310043487824 4.90148783046398 0.119472114481188 0.907573823191749 0.965282851871456 -7.10245559369243 +"6763" "NM_001146204_at" 0.0119310043487824 4.90148783046398 0.119472114481188 0.907573823191749 0.965282851871456 -7.10245559369243 +"6764" "NM_001146205_at" 0.0119310043487824 4.90148783046398 0.119472114481188 0.907573823191749 0.965282851871456 -7.10245559369243 +"6765" "NM_001146206_at" 0.0119310043487824 4.90148783046398 0.119472114481188 0.907573823191749 0.965282851871456 -7.10245559369243 +"6766" "NM_001146207_at" 0.0119310043487824 4.90148783046398 0.119472114481188 0.907573823191749 0.965282851871456 -7.10245559369243 +"27371" "NM_170604_at" 0.0119310043487824 4.90148783046398 0.119472114481188 0.907573823191749 0.965282851871456 -7.10245559369243 +"29307" "NM_198705_at" 0.00669676981126788 6.55401930898528 0.114964647481569 0.91104350902098 0.966467356471386 -7.10303899730746 +"3268" "NM_001077491_at" 0.0104587134277923 6.0762443579247 0.113108463210185 0.912472918355426 0.967187443699693 -7.10327274244204 +"3269" "NM_001077492_at" 0.0104587134277923 6.0762443579247 0.113108463210185 0.912472918355426 0.967187443699693 -7.10327274244204 +"17699" "NM_012427_at" 0.0104587134277923 6.0762443579247 0.113108463210185 0.912472918355426 0.967187443699693 -7.10327274244204 +"4076" "NM_001101340_at" -0.00560676919272929 5.88934830035527 -0.110624366372636 0.914386391302302 0.96820007753055 -7.10357962332175 +"22593" "NM_023937_at" 0.0101402393288073 9.20764232539621 0.104903542722305 0.918795282105073 0.969727867147695 -7.10426051474282 +"13069" "NM_002517_at" -0.00762383543434453 4.99064845350577 -0.0959629962819469 0.925691363564558 0.972009047546183 -7.10525240194347 +"2126" "NM_001023561_at" 0.0121584585014274 4.37094527650059 0.0951210264602969 0.92634114586257 0.972037104544787 -7.10534127290546 +"12836" "NM_002257_at" -0.00618923384184011 6.52156636913171 -0.080928512770199 0.937302391665521 0.976253828644907 -7.10672165376134 +"17140" "NM_007059_at" -0.00433523156649862 6.88376653684523 -0.0672496104785763 0.947880251444719 0.979810742968047 -7.10784174118631 +"9327" "NM_001197122_at" 0.00476747739525152 8.43509213345454 0.0618848715373861 0.952031868435637 0.981665222574526 -7.1082246317347 +"20450" "NM_018028_at" -0.00381375435540043 7.63322028679561 -0.0612297304808741 0.95253897098767 0.981665222574526 -7.10826921248109 +"3406" "NM_001080401_at" 0.00533849376301454 5.35770476541824 0.0589556845128634 0.954299337804464 0.981926602103183 -7.1084202770838 +"25787" "NM_138924_at" 0.00275681422236396 9.07576721098728 0.0571758656409609 0.95567730110731 0.982364798280837 -7.10853452534701 +"32715" "NR_040029_at" -0.0041703134500759 7.05164132672193 -0.0511448463433815 0.960347741186817 0.9846893050455 -7.10889564162684 +"15202" "NM_004877_at" 0.00340082321020496 5.81241730839482 0.0482846376241453 0.962563267794158 0.985548756154513 -7.1090528519083 +"9328" "NM_001197123_at" 0.00339444505514486 8.72394003040426 0.0438281253885432 0.966015967300204 0.987083412109565 -7.10927978620333 +"9330" "NM_001197125_at" 0.00339444505514486 8.72394003040426 0.0438281253885432 0.966015967300204 0.987083412109565 -7.10927978620333 +"9331" "NM_001197126_at" 0.00339444505514486 8.72394003040426 0.0438281253885432 0.966015967300204 0.987083412109565 -7.10927978620333 +"12219" "NM_001571_at" 0.00339444505514486 8.72394003040426 0.0438281253885432 0.966015967300204 0.987083412109565 -7.10927978620333 +"32879" "NR_045568_at" 0.00339444505514486 8.72394003040426 0.0438281253885432 0.966015967300204 0.987083412109565 -7.10927978620333 +"29228" "NM_198471_at" 0.00226426977534189 5.44508730118608 0.0396123283220055 0.969282864000321 0.988335664322322 -7.10947425970217 +"398" "NM_000363_at" 0.000969655866746244 5.55861293730794 0.0180719140887921 0.985983015229857 0.995809993565046 -7.11016125656497 +"32032" "NR_036515_at" -0.000834591564054854 6.93853396836724 -0.0156153463061295 0.987888198742929 0.996487283716755 -7.11020701495531 +"16585" "NM_006423_at" 0.000873947228809513 8.99443217170424 0.0127631451077765 0.990100315723982 0.99658874747016 -7.11025177080491 +"3765" "NM_001098482_at" -0.000587087485152793 7.8263612698536 -0.0107346352272667 0.991673647957931 0.996849636489 -7.11027812728996 +"19015" "NM_015321_at" -0.000587087485152793 7.8263612698536 -0.0107346352272667 0.991673647957931 0.996849636489 -7.11027812728996 +"17137" "NM_007056_at" 0.000517820731980478 8.17365145883295 0.00687155402884037 0.994669991231002 0.997990997447586 -7.1103157357533
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test-data/peaks.bed Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,72 @@ +chr19 518572 519514 AR_LNCaP_4717 59.19 +chr19 1020702 1021980 AR_LNCaP_4725 388.32 +chr19 1094875 1095946 AR_LNCaP_4726 63.11 +chr19 1228829 1229967 AR_LNCaP_4728 54.26 +chr19 1382835 1384282 AR_LNCaP_4733 231.69 +chr19 2269491 2270735 AR_LNCaP_4741 60.70 +chr19 2543491 2544716 AR_LNCaP_4747 228.53 +chr19 3185501 3186253 AR_LNCaP_4748 52.27 +chr19 3336410 3337572 AR_LNCaP_4750 94.92 +chr19 4723422 4724314 AR_LNCaP_4753 74.30 +chr19 4724416 4725364 AR_LNCaP_4754 115.50 +chr19 5268577 5269878 AR_LNCaP_4755 290.97 +chr19 5620739 5621928 AR_LNCaP_4756 70.46 +chr19 7489621 7490513 AR_LNCaP_4760 73.95 +chr19 8372986 8374008 AR_LNCaP_4765 76.91 +chr19 10875668 10876743 AR_LNCaP_4773 72.61 +chr19 12721199 12722240 AR_LNCaP_4774 61.84 +chr19 13101849 13102755 AR_LNCaP_4777 291.05 +chr19 13318039 13318869 AR_LNCaP_4783 52.65 +chr19 13875326 13876277 AR_LNCaP_4785 51.19 +chr19 14583973 14585287 AR_LNCaP_4788 88.28 +chr19 15414587 15415713 AR_LNCaP_4789 76.29 +chr19 15489711 15490727 AR_LNCaP_4790 59.97 +chr19 16473642 16474670 AR_LNCaP_4793 70.70 +chr19 16973078 16974032 AR_LNCaP_4796 76.09 +chr19 17096748 17097899 AR_LNCaP_4797 62.09 +chr19 17345963 17347135 AR_LNCaP_4798 92.15 +chr19 18391901 18392804 AR_LNCaP_4802 51.13 +chr19 18808279 18810382 AR_LNCaP_4809 149.25 +chr19 28392798 28393702 AR_LNCaP_4818 54.45 +chr19 28426028 28427157 AR_LNCaP_4820 51.30 +chr19 28431530 28432644 AR_LNCaP_4821 63.20 +chr19 28607592 28608803 AR_LNCaP_4822 101.52 +chr19 30020337 30021328 AR_LNCaP_4827 52.78 +chr19 30211394 30212475 AR_LNCaP_4829 53.76 +chr19 30551328 30552172 AR_LNCaP_4830 52.34 +chr19 30643279 30644356 AR_LNCaP_4831 229.66 +chr19 30932770 30934129 AR_LNCaP_4833 103.59 +chr19 32210230 32211210 AR_LNCaP_4839 59.08 +chr19 32234483 32235456 AR_LNCaP_4840 51.81 +chr19 33667285 33668666 AR_LNCaP_4846 438.19 +chr19 33863966 33865008 AR_LNCaP_4847 54.29 +chr19 34663548 34664231 AR_LNCaP_4849 50.15 +chr19 34800905 34802101 AR_LNCaP_4852 292.94 +chr19 34817831 34818944 AR_LNCaP_4853 124.21 +chr19 34948706 34949438 AR_LNCaP_4854 52.96 +chr19 34962763 34963890 AR_LNCaP_4855 95.70 +chr19 38560828 38561779 AR_LNCaP_4860 61.50 +chr19 38789237 38790370 AR_LNCaP_4861 76.81 +chr19 38865927 38867149 AR_LNCaP_4863 84.08 +chr19 39892778 39893857 AR_LNCaP_4868 72.83 +chr19 39902325 39903668 AR_LNCaP_4869 84.54 +chr19 41139890 41140917 AR_LNCaP_4873 50.16 +chr19 42502780 42503773 AR_LNCaP_4877 62.07 +chr19 44198615 44199741 AR_LNCaP_4880 120.50 +chr19 45595987 45596898 AR_LNCaP_4882 51.31 +chr19 45655043 45656039 AR_LNCaP_4883 58.06 +chr19 45981823 45982582 AR_LNCaP_4886 52.62 +chr19 46246031 46247043 AR_LNCaP_4887 420.28 +chr19 47290422 47291287 AR_LNCaP_4892 51.42 +chr19 47470793 47471707 AR_LNCaP_4893 53.30 +chr19 47950633 47951639 AR_LNCaP_4896 60.92 +chr19 48204625 48205733 AR_LNCaP_4900 71.83 +chr19 50154344 50155915 AR_LNCaP_4912 84.12 +chr19 51354060 51354999 AR_LNCaP_4914 62.11 +chr19 51372841 51373704 AR_LNCaP_4915 50.33 +chr19 51392207 51393248 AR_LNCaP_4916 132.09 +chr19 55592961 55594092 AR_LNCaP_4921 68.33 +chr19 57639841 57640962 AR_LNCaP_4929 105.02 +chr19 57723651 57724464 AR_LNCaP_4931 57.62 +chr19 57873567 57875214 AR_LNCaP_4932 131.57 +chr19 58919368 58920359 AR_LNCaP_4940 58.81
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool-data/all_fasta.loc.sample Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,18 @@ +#This file lists the locations and dbkeys of all the fasta files +#under the "genome" directory (a directory that contains a directory +#for each build). The script extract_fasta.py will generate the file +#all_fasta.loc. This file has the format (white space characters are +#TAB characters): +# +#<unique_build_id> <dbkey> <display_name> <file_path> +# +#So, all_fasta.loc could look something like this: +# +#apiMel3 apiMel3 Honeybee (Apis mellifera): apiMel3 /path/to/genome/apiMel3/apiMel3.fa +#hg19canon hg19 Human (Homo sapiens): hg19 Canonical /path/to/genome/hg19/hg19canon.fa +#hg19full hg19 Human (Homo sapiens): hg19 Full /path/to/genome/hg19/hg19full.fa +# +#Your all_fasta.loc file should contain an entry for each individual +#fasta file. So there will be multiple fasta files for each build, +#such as with hg19 above. +#
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_data_table_conf.xml.sample Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,7 @@ +<tables> + <!-- Locations of all fasta files under genome directory --> + <table name="all_fasta" comment_char="#"> + <columns>value, dbkey, name, path</columns> + <file path="tool-data/all_fasta.loc" /> + </table> +</tables>
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/tool_dependencies.xml Tue Sep 16 13:35:24 2014 -0400 @@ -0,0 +1,12 @@ +<?xml version="1.0"?> +<tool_dependency> + <package name="numpy" version="1.7.1"> + <repository changeset_revision="55a7a5e9d63f" name="package_numpy_1_7" owner="devteam" prior_installation_required="True" toolshed="https://testtoolshed.g2.bx.psu.edu" /> + </package> + <package name="R" version="2.15.0"> + <repository changeset_revision="3a70cdc41d21" name="package_r_2_15_0" owner="devteam" toolshed="https://testtoolshed.g2.bx.psu.edu" /> + </package> + <package name="beta" version="1.0.6"> + <repository changeset_revision="26f7b1d72d3c" name="package_beta_1_0_6" owner="jjohnson" toolshed="https://testtoolshed.g2.bx.psu.edu" /> + </package> +</tool_dependency>