changeset 17:1b03f6232900 draft

planemo upload for repository https://github.com/ARTbio/tools-artbio/tree/master/tools/goseq_1_22_0 commit fdd0811efc61c31f88ff17096fbe8ee8cfacd766-dirty
author mvdbeek
date Fri, 26 Feb 2016 08:49:59 -0500
parents 8ce951313688
children 5fb82111ec62
files get_length_and_gc_content.xml goseq.r goseq.xml test-data/dge_list.tab test-data/gene_ids.loc test-data/genomes.loc test-data/tool_data_table_conf.xml test-data/wall.tab tool_data_table_conf.xml.sample tool_data_table_conf.xml.sample.test
diffstat 9 files changed, 1292 insertions(+), 40 deletions(-) [+]
line wrap: on
line diff
--- a/get_length_and_gc_content.xml	Thu Feb 25 08:49:20 2016 -0500
+++ b/get_length_and_gc_content.xml	Fri Feb 26 08:49:59 2016 -0500
@@ -33,10 +33,7 @@
     <outputs>
         <data format="tabular" label="length and gc content" name="output" />
     </outputs>
-    <tests>
-        <test>
-        </test>
-    </tests>
+    <tests></tests>
     <help>
 
         **What it does**
--- a/goseq.r	Thu Feb 25 08:49:20 2016 -0500
+++ b/goseq.r	Fri Feb 26 08:49:59 2016 -0500
@@ -46,35 +46,34 @@
   length_table = read.delim(length_file, header=TRUE, sep="\t", check.names=FALSE, row.names=TRUE)
   gene_lengths = length_table[names(genes),]$length
   } else {
-  gene_lengths = getlength(names(genes),genome, gene_id)
+  gene_lengths = getlength(names(genes), genome, gene_id)
   }
 
 # Estimate PWF
 
-print(gene_lengths)
-
 pdf(length_bias_plot)
 pwf=nullp(genes, genome, gene_id, gene_lengths)
 dev.off()
-# Null dstribution wallenius
+# wallenius approximation of p-values
 GO.wall=goseq(pwf, genome, gene_id)
 
 GO.nobias=goseq(pwf, genome, gene_id, method="Hypergeometric")
 
-# Sampling dsitribution
-GO.samp=goseq(pwf,genome, gene_id, method="Sampling",repcnt=repcnt)
-
-# Compare sampling with wallenius
-pdf(sample_vs_wallenius_plot)
-plot(log10(GO.wall[,2]), log10(GO.samp[match(GO.samp[,1],GO.wall[,1]),2]),
+# Sampling distribution
+if (repcnt > 0) {
+  GO.samp=goseq(pwf,genome, gene_id, method="Sampling", repcnt=repcnt)
+  # Compare sampling with wallenius
+  pdf(sample_vs_wallenius_plot)
+  plot(log10(GO.wall[,2]), log10(GO.samp[match(GO.samp[,1],GO.wall[,1]),2]),
      xlab="log10(Wallenius p-values)",ylab="log10(Sampling p-values)",
      xlim=c(-3,0))
-abline(0,1,col=3,lty=2)
-dev.off()
+     abline(0,1,col=3,lty=2)
+  dev.off()
+  write.table(GO.samp, sampling_tab, sep="\t", row.names = FALSE, quote = FALSE)
+}
 
 
 write.table(GO.wall, wallenius_tab, sep="\t", row.names = FALSE, quote = FALSE)
-write.table(GO.samp, sampling_tab, sep="\t", row.names = FALSE, quote = FALSE)
 write.table(GO.nobias, nobias_tab, sep="\t", row.names = FALSE, quote = FALSE)
 
 sessionInfo()
--- a/goseq.xml	Thu Feb 25 08:49:20 2016 -0500
+++ b/goseq.xml	Fri Feb 26 08:49:59 2016 -0500
@@ -1,4 +1,4 @@
-<tool id="goseq" name="goseq gene ontology analyser" version="0.1.1">
+<tool id="goseq" name="goseq gene ontology analyser" version="0.1.4">
     <description />
     <requirements>
         <requirement type="package" version="3.2.1">R</requirement>
@@ -8,6 +8,9 @@
         goseq.r --dge_file "$dge_file"
         --p_adj_column "$p_adj_column"
         --cutoff "$p_adj_cutoff"
+        #if $source.use_length_file == "yes":
+        --length_file "$length_file"
+        #end if
         --genome "$genome"
         --gene_id "$gene_id"
         --wallenius_tab "$wallenius_tab"
@@ -19,32 +22,46 @@
     </command>
     <inputs>
         <param help="deseq2/edger/limma differential gene expression list" label="DGE list" name="dge_file" type="data" format="tabular" />
-        <param help="Select the column that contains the multiple-testing corrected p-value" label="p adjust column" name="p_adj_column" type="data_column" data_ref="dge_file"/>
-        <param help="Typically 0.05 after multiple testing correction" max="1" label="Minimum p adjust value to consider gene differentially expressed" name="p_adj_cutoff" type="float" value="0.05" />
-        <param help="Needed to retrive gene length for length correction" label="Select the genome source" name="genome" size="3" type="select">
-            <options from_file="genomes.loc">
-                <column name="value" index="0"/>
-                <column name="name" index="1"/>
-            </options>
+        <param help="Select the column that contains the multiple-testing corrected p-value" label="p adjust column" name="p_adj_column" type="data_column" numeric="true" data_ref="dge_file"/>
+        <param help="Typically 0.05 after multiple testing correction" max="1" label="Minimum p adjust value to consider genes as differentially expressed" name="p_adj_cutoff" type="float" value="0.05" />
+        <conditional name="source">
+            <param help="This is needed if the gene length is not available in goseq. e.g. hg38 and mm10." label="Use gene length file?" name="use_length_file" type="select">
+                <option value="no">no</option>
+                <option value="yes">yes</option>
+            </param>
+            <when value="yes">
+                <param label="Gene length file" name="length_file" type="data" format="tabular" required="false" />
+            </when>
+            <when value="no">
+            </when>
+        </conditional>
+        <param help="Needed to retrieve gene length for length correction" label="Select the genome source" name="genome" size="3" type="select">
+            <options from_data_table="go_genomes"></options>
         </param>
         <param help="Needed for GO analysis" label="Select gene identifier" name="gene_id" type="select">
-            <options from_file="gene_ids.loc">
-                <column name="value" index="0"/>
-                <column name="name" index="1"/>
-            </options>
+            <options from_data_table="go_gene_ids"></options>
         </param>
-        <param help="Do this many random samplings. Larger values take a long time" label="Number of random sampling" name="repcnt" size="3" type="integer" min="100" max="10000" value="1000" />
+        <param help="Draw this many random control gene sets. Set to 0 to not do sampling. Larger values take a long time" label="sampling depth" name="repcnt" size="3" type="integer" min="0" max="10000" value="0" />
     </inputs>
     <outputs>
+        <data format="pdf" label="length bias plot" name="length_bias_plot" />
+        <data format="pdf" label="Plot P-value from sampling against wallenius distribution" name="sample_vs_wallenius_plot">
+            <filter>repcnt != 0</filter>
+        </data>
         <data format="tabular" label="Ranked category list - wallenius" name="wallenius_tab" />
-        <data format="tabular" label="Ranked category list - sampling" name="sampling_tab" />
+        <data format="tabular" label="Ranked category list - sampling" name="sampling_tab">
+            <filter>repcnt != 0</filter>
+        </data>
         <data format="tabular" label="Ranked category list - no length bias correction" name="nobias_tab" />
-        <data format="pdf" label="length bias plot" name="length_bias_plot" />
-        <data format="pdf" label="Plot P-value from sampling against wallenius distribution" name="sample_vs_wallenius_plot" />
     </outputs>
     <tests>
         <test>
-
+            <param name="dge_file" value="dge_list.tab" ftype="tabular"/>
+            <param name="use_length_file" value="no" />
+            <param name="p_adj_column" value="2" />
+            <param name="genome" value="hg19" />
+            <param name="gene_id" value="ensGene" />
+            <output name="wallenius_tab" file="wall.tab" compare="contains"/>/>
         </test>
     </tests>
     <help>
@@ -58,8 +75,8 @@
         .. _manual: https://bioconductor.org/packages/release/bioc/vignettes/goseq/inst/doc/goseq.pdf
 
 
-        </help>
+    </help>
     <citations>
-            <citation type="doi">10.1186/gb-2010-11-2-r14</citation>
+        <citation type="doi">10.1186/gb-2010-11-2-r14</citation>
     </citations>
 </tool>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/dge_list.tab	Fri Feb 26 08:49:59 2016 -0500
@@ -0,0 +1,1001 @@
+Name	adj.p.value
+ENSG00000140459	0.72654265501997
+ENSG00000236824	0.621241793648661
+ENSG00000162526	0.104072112354657
+ENSG00000090402	0.00550590320364419
+ENSG00000169188	0.752973943574106
+ENSG00000124103	0.508292390900193
+ENSG00000241680	0.297679791800193
+ENSG00000089009	0.300444395667807
+ENSG00000196696	0.374747091864761
+ENSG00000006837	0.883750148448997
+ENSG00000112312	0.00157610534964364
+ENSG00000240392	0.302701874577034
+ENSG00000010932	0.118981349588869
+ENSG00000167685	0.076500408607647
+ENSG00000237101	0.748031404245103
+ENSG00000244270	0.567972685627182
+ENSG00000104331	0.00579192580215921
+ENSG00000242858	0.0378412177811479
+ENSG00000148484	0.718026595230658
+ENSG00000057608	0.964227972088948
+ENSG00000182841	0.0884209354151656
+ENSG00000230903	0.350797225752382
+ENSG00000106868	0.788981237232149
+ENSG00000214564	0.655009438199043
+ENSG00000169762	0.255621294102106
+ENSG00000168758	0.163373910729433
+ENSG00000182827	0.880121187926376
+ENSG00000125637	0.0396047898199658
+ENSG00000118873	0.259118545361492
+ENSG00000186532	0.884943302417759
+ENSG00000106771	0.107076952807406
+ENSG00000204348	0.38585136650363
+ENSG00000197062	0.244378087660012
+ENSG00000171067	0.860339995928752
+ENSG00000228118	0.837580099847927
+ENSG00000213077	0.0346627558595947
+ENSG00000188549	0.0364688234065438
+ENSG00000135537	0.818437150201755
+ENSG00000173715	0.313716721815305
+ENSG00000227742	0.00693864770618258
+ENSG00000148158	0.00356590491562172
+ENSG00000134461	0.0799694519824768
+ENSG00000174442	0.9104363820863
+ENSG00000198648	5.66237569853738e-54
+ENSG00000228599	0.171370116774069
+ENSG00000167842	1.68461902141834e-06
+ENSG00000108953	0.018535085127156
+ENSG00000185504	0.000252088854916783
+ENSG00000178950	0.374511091101791
+ENSG00000160051	0.837754660842895
+ENSG00000130787	0.627567039717229
+ENSG00000154146	0.21971850994087
+ENSG00000204956	0.922155399062633
+ENSG00000231181	0.798470252573313
+ENSG00000149308	0.205056998763193
+ENSG00000151748	0.960438036765227
+ENSG00000141510	0.843199243028581
+ENSG00000105325	0.256030223197636
+ENSG00000173163	0.307924645611919
+ENSG00000064545	0.0294202433903509
+ENSG00000236946	0.787953789147351
+ENSG00000104450	0.0261557859283198
+ENSG00000174469	0.371325165629903
+ENSG00000010322	0.0208260631889359
+ENSG00000126562	0.788271827203178
+ENSG00000143919	0.883536889885289
+ENSG00000236285	0.652881364924924
+ENSG00000160213	0.891666551921221
+ENSG00000185798	0.808815635747676
+ENSG00000073614	0.730900557418546
+ENSG00000138587	0.892556542035936
+ENSG00000090273	0.485697340128452
+ENSG00000123384	0.182965348704756
+ENSG00000070961	5.54110180984277e-14
+ENSG00000159346	0.577707704641258
+ENSG00000141425	0.209299850711904
+ENSG00000072071	0.264953967987316
+ENSG00000057935	0.0876841507255324
+ENSG00000226790	0.739812259382103
+ENSG00000117410	0.0991426717444789
+ENSG00000100038	5.5224120355487e-05
+ENSG00000169660	0.957344873331126
+ENSG00000227968	0.968126132117202
+ENSG00000220483	0.834400227373994
+ENSG00000186130	0.0886115611903655
+ENSG00000018607	0.892228191251005
+ENSG00000142676	3.05327141290058e-07
+ENSG00000226144	0.15035721878846
+ENSG00000233454	0.535010072830088
+ENSG00000230006	0.993550786209047
+ENSG00000225405	0.51182760145349
+ENSG00000206192	0.998818135341878
+ENSG00000141012	0.675869428835717
+ENSG00000133138	0.596116982047846
+ENSG00000240418	0.0414032135189338
+ENSG00000230074	0.176837449607711
+ENSG00000106803	0.110457736393565
+ENSG00000134987	0.419483726256258
+ENSG00000179119	0.90886027052608
+ENSG00000130770	0.797934384822854
+ENSG00000213760	0.733546382048368
+ENSG00000167785	0.819823215696948
+ENSG00000152782	0.187934176357927
+ENSG00000103121	0.000116075418643732
+ENSG00000167614	0.97150896023414
+ENSG00000145990	0.600668890368056
+ENSG00000233846	0.617587088091658
+ENSG00000137285	0.762128131856854
+ENSG00000186743	0.390864600953697
+ENSG00000130717	0.786671083021599
+ENSG00000235363	0.310504546625491
+ENSG00000152642	0.762465600065342
+ENSG00000239377	0.214012002346404
+ENSG00000231245	0.737683816033356
+ENSG00000188295	0.750895945796621
+ENSG00000228195	0.529749476495161
+ENSG00000158669	0.729783348308454
+ENSG00000198929	0.261192558212211
+ENSG00000112306	0.00468906205664554
+ENSG00000134324	0.0572864697533481
+ENSG00000143256	0.906787427531995
+ENSG00000175322	0.914734455086495
+ENSG00000110092	1.03715044519433e-05
+ENSG00000175176	0.000120982104535695
+ENSG00000176407	0.0477581143523351
+ENSG00000156050	0.539813926743088
+ENSG00000223068	1.51936638042074e-06
+ENSG00000115221	0.430770408315799
+ENSG00000070495	0.053913958740154
+ENSG00000151718	0.123382838291759
+ENSG00000198752	0.637401967175991
+ENSG00000196747	0.835333183773412
+ENSG00000204253	0.00530466739928374
+ENSG00000176593	0.256140584508036
+ENSG00000106789	0.0134644631782369
+ENSG00000100526	4.70087255096658e-05
+ENSG00000004534	1.35379973849169e-08
+ENSG00000158470	0.0835263687151232
+ENSG00000213062	0.341979029879746
+ENSG00000151876	0.881499319093158
+ENSG00000213493	0.178233355277396
+ENSG00000083720	0.0393544959439121
+ENSG00000155621	0.0426855161809279
+ENSG00000164985	0.910782859354861
+ENSG00000109610	0.420752781670774
+ENSG00000183530	0.878676002571331
+ENSG00000137776	1.82559407448247e-06
+ENSG00000184216	0.746675936949786
+ENSG00000156831	0.819155853391606
+ENSG00000213906	0.414509140036116
+ENSG00000105438	0.770380304577372
+ENSG00000175220	0.251478246764494
+ENSG00000170638	0.224686934956879
+ENSG00000227401	0.140044824079938
+ENSG00000164597	7.11766516655365e-35
+ENSG00000011638	0.0280594017062844
+ENSG00000135124	0.585774291040765
+ENSG00000105568	0.00790613784568182
+ENSG00000178229	0.854639645006855
+ENSG00000126858	0.702461621197166
+ENSG00000018408	0.619684410069585
+ENSG00000143816	0.571937260154613
+ENSG00000124496	0.000175359165347661
+ENSG00000136238	0.296018892018342
+ENSG00000131051	0.00342940812276493
+ENSG00000235444	0.505126429085709
+ENSG00000114026	0.0172762355860575
+ENSG00000187144	0.469158056811519
+ENSG00000165030	0.0208719330155607
+ENSG00000183474	0.242881524681446
+ENSG00000213339	0.935594144694461
+ENSG00000109680	0.710698527609161
+ENSG00000080815	0.0113086851041992
+ENSG00000108055	0.187699723339877
+ENSG00000133678	0.0180226161925142
+ENSG00000124574	0.717398918803477
+ENSG00000141179	0.921048030163371
+ENSG00000169372	0.513739329574703
+ENSG00000198046	0.140474238265479
+ENSG00000214810	0.730053200811787
+ENSG00000172058	0.366678423622579
+ENSG00000198198	0.719548916285113
+ENSG00000157833	0.933443269431304
+ENSG00000155130	0.447329839832546
+ENSG00000151743	0.210992600459711
+ENSG00000148334	0.705005861969649
+ENSG00000173848	3.89203281318834e-23
+ENSG00000059588	0.000218830618048197
+ENSG00000226478	0.167219519012942
+ENSG00000137965	0.318329667132175
+ENSG00000166343	0.16270815388791
+ENSG00000235424	0.877468129156923
+ENSG00000147364	2.66230534060205e-06
+ENSG00000214174	0.544947559402539
+ENSG00000185482	0.805105249540586
+ENSG00000236290	0.868955906959408
+ENSG00000023041	0.0912856781178139
+ENSG00000165905	0.489356121376582
+ENSG00000072958	0.970597168157584
+ENSG00000113048	1.00658623476636e-08
+ENSG00000237017	0.473946423841041
+ENSG00000186583	0.819502343193099
+ENSG00000235623	0.170136814227059
+ENSG00000124120	0.0687068707106856
+ENSG00000100027	0.49920698164392
+ENSG00000173674	0.18134635080184
+ENSG00000226067	0.6520372775026
+ENSG00000243122	0.982834191710793
+ENSG00000111707	0.665187703792648
+ENSG00000230022	0.859480450843707
+ENSG00000143337	0.887224801922319
+ENSG00000172086	0.280604288798133
+ENSG00000173153	0.77983786939627
+ENSG00000138594	0.115079821811351
+ENSG00000225806	0.154580480161816
+ENSG00000197961	0.423305894527542
+ENSG00000161277	0.0972217430695841
+ENSG00000107833	0.0342132567512692
+ENSG00000236681	0.25157963709503
+ENSG00000147684	0.949877448246991
+ENSG00000230118	0.893429212927894
+ENSG00000173366	0.644793596610475
+ENSG00000100106	0.504186528965699
+ENSG00000236680	0.560624855234317
+ENSG00000187605	0.702765694621619
+ENSG00000059122	0.0866158001199244
+ENSG00000188997	0.0841816600179193
+ENSG00000165521	0.020365430754984
+ENSG00000235065	0.0236619770896293
+ENSG00000108091	0.531336099789854
+ENSG00000113328	0.610043748873479
+ENSG00000165983	0.000172864287070871
+ENSG00000238221	0.469140604720857
+ENSG00000184831	0.0755252217370534
+ENSG00000012983	0.0516537510605873
+ENSG00000145736	0.0757119704805961
+ENSG00000154269	0.00236263846079086
+ENSG00000134905	0.68532843966716
+ENSG00000102030	0.0157729190492384
+ENSG00000065060	0.000204985647235646
+ENSG00000180182	0.75414742499329
+ENSG00000164778	0.288589238099524
+ENSG00000232699	0.703672846274839
+ENSG00000231711	0.923914050086403
+ENSG00000226232	0.538058958277334
+ENSG00000113812	0.860307809986692
+ENSG00000237517	0.0772679337891085
+ENSG00000204628	0.0133842021404537
+ENSG00000215333	0.0141552483691651
+ENSG00000211584	0.875440720303501
+ENSG00000129932	0.740851578803937
+ENSG00000139200	0.216516741667245
+ENSG00000153130	0.0265324193390829
+ENSG00000029363	0.809468141709676
+ENSG00000230650	0.371219489881914
+ENSG00000141756	0.000140076741021091
+ENSG00000169957	0.226114585922624
+ENSG00000023892	0.152582189978523
+ENSG00000166068	0.357123305218129
+ENSG00000205560	0.316209658630005
+ENSG00000241494	0.248603619188992
+ENSG00000196123	0.000105385118830914
+ENSG00000213588	0.751962748978235
+ENSG00000188021	0.776559557710204
+ENSG00000091140	0.304493795155551
+ENSG00000106683	0.827248505848185
+ENSG00000178719	0.201899119092856
+ENSG00000111877	0.805967548681774
+ENSG00000196409	0.55459096268552
+ENSG00000184324	0.316902388575116
+ENSG00000242349	0.292498776872013
+ENSG00000221909	0.163325225834228
+ENSG00000234722	0.577707704641258
+ENSG00000164104	2.37928103309302e-06
+ENSG00000184481	0.654369911766507
+ENSG00000135535	4.3551985875262e-07
+ENSG00000063015	0.359416550944828
+ENSG00000158406	1.46182459943619e-07
+ENSG00000161328	0.70591152149635
+ENSG00000088340	1.91041493747205e-05
+ENSG00000157343	0.000267824500973853
+ENSG00000049541	0.54685512131138
+ENSG00000162402	0.00462048757738794
+ENSG00000213793	0.175329903028802
+ENSG00000117984	0.953115943062101
+ENSG00000197744	8.36541751302069e-09
+ENSG00000177239	0.840501206321131
+ENSG00000081087	0.0625618850799424
+ENSG00000085982	0.691564262178323
+ENSG00000148408	0.0206928477706323
+ENSG00000170340	0.218631460649913
+ENSG00000164073	0.822344287284644
+ENSG00000165275	0.903901706088943
+ENSG00000165410	0.76028913644013
+ENSG00000157823	0.578549240094242
+ENSG00000159921	1.73561692431034e-09
+ENSG00000100336	0.905200191174854
+ENSG00000214723	0.0216550933360992
+ENSG00000072134	4.56353084506531e-12
+ENSG00000237291	0.849844605112769
+ENSG00000105223	0.431573855948901
+ENSG00000092098	0.510944109602216
+ENSG00000120158	0.00127187173229241
+ENSG00000133114	0.114009796579566
+ENSG00000145604	0.00845507622486657
+ENSG00000233602	0.783248569063594
+ENSG00000172746	0.875675504813536
+ENSG00000103035	0.0403132376404584
+ENSG00000087586	0.141663148238692
+ENSG00000234981	0.13299138655207
+ENSG00000178233	0.240100990182873
+ENSG00000165959	0.0290256115917856
+ENSG00000151623	0.149378116888608
+ENSG00000151657	0.00202955378507499
+ENSG00000100354	0.00166135897338583
+ENSG00000135698	0.205528373757364
+ENSG00000131759	0.939861565991102
+ENSG00000170949	0.722431166282448
+ENSG00000168306	0.0208286062850418
+ENSG00000154065	0.794169043935199
+ENSG00000228344	0.755205565404154
+ENSG00000181915	0.599480859895672
+ENSG00000244466	0.888881551279322
+ENSG00000233836	0.453433038737973
+ENSG00000006327	0.925069468503376
+ENSG00000204385	4.4014935354671e-08
+ENSG00000176396	0.417779449591198
+ENSG00000235750	0.435441360075326
+ENSG00000163960	0.811664362964018
+ENSG00000108306	0.308800776791984
+ENSG00000066739	0.240304308913982
+ENSG00000196357	0.786041260383282
+ENSG00000082068	0.479436875839583
+ENSG00000167977	0.556597791775356
+ENSG00000214961	0.964375745973567
+ENSG00000154608	0.519241757216151
+ENSG00000076356	0.00538221109380524
+ENSG00000116977	0.0987904225685521
+ENSG00000132294	4.35648460214272e-05
+ENSG00000238534	0.0628764857421895
+ENSG00000162980	3.12937381621648e-05
+ENSG00000088448	0.218795245334482
+ENSG00000136819	0.366434445641007
+ENSG00000066923	0.00289993298599585
+ENSG00000197128	0.815683670290344
+ENSG00000102804	1.05539219623152e-06
+ENSG00000239368	0.416466165827523
+ENSG00000186106	0.891666551921221
+ENSG00000243779	0.963525566512721
+ENSG00000184731	0.116212346648672
+ENSG00000075399	0.414442049427773
+ENSG00000129625	8.96044280201524e-07
+ENSG00000131467	0.698251009947621
+ENSG00000228449	0.62046745804884
+ENSG00000230905	0.364815348398891
+ENSG00000129559	0.963661886281388
+ENSG00000227194	0.702765694621619
+ENSG00000213864	0.843645006072656
+ENSG00000180979	0.733546382048368
+ENSG00000225787	0.613603709280666
+ENSG00000130305	0.160511214663434
+ENSG00000163348	0.563519396822641
+ENSG00000169519	0.399083650998445
+ENSG00000108947	0.450517558231517
+ENSG00000241697	0.969420514457109
+ENSG00000235892	0.00216107425317399
+ENSG00000132823	0.694150808798109
+ENSG00000188738	0.46100313728924
+ENSG00000230863	0.975805691706696
+ENSG00000196741	0.862139271561761
+ENSG00000163083	0.548733863838133
+ENSG00000228236	0.613070821736312
+ENSG00000172239	0.403027003123949
+ENSG00000227666	0.854713939029096
+ENSG00000223936	0.709089577815372
+ENSG00000185670	0.0530377146000226
+ENSG00000240540	0.111632873936185
+ENSG00000231096	0.0328117108627897
+ENSG00000240005	0.868354248252297
+ENSG00000172458	0.399365790384715
+ENSG00000143401	3.94171622172887e-09
+ENSG00000168005	0.687438114810545
+ENSG00000216915	0.902826698481761
+ENSG00000119686	0.0746002407608056
+ENSG00000167258	0.402828937269743
+ENSG00000181220	0.094897244736275
+ENSG00000177932	0.91480785360799
+ENSG00000122691	0.940428048171009
+ENSG00000140391	0.000872035686125774
+ENSG00000118620	0.167213943563736
+ENSG00000014216	0.337719696040367
+ENSG00000117505	0.0920903920809631
+ENSG00000213318	0.852215550592627
+ENSG00000229344	0.143907628703279
+ENSG00000152270	0.766814281671062
+ENSG00000237357	0.866043895887125
+ENSG00000203616	0.949734000288228
+ENSG00000221843	0.975024241106059
+ENSG00000119723	0.000202687229060094
+ENSG00000105879	6.05651207235104e-36
+ENSG00000116127	0.205822180319539
+ENSG00000115464	0.0366555908527405
+ENSG00000149679	0.700861438300514
+ENSG00000120217	0.00771221709174049
+ENSG00000155313	1.04379189388715e-05
+ENSG00000158158	0.289913709953755
+ENSG00000232694	0.954004467008666
+ENSG00000241370	0.0353112409773686
+ENSG00000227343	0.238725956422785
+ENSG00000112062	0.672566847690468
+ENSG00000227006	0.698212761809598
+ENSG00000232318	0.7396391461753
+ENSG00000109929	1.66893999057403e-22
+ENSG00000105173	0.411002359377424
+ENSG00000218965	0.6712004999969
+ENSG00000070610	0.136255795240145
+ENSG00000196305	1.1994578800738e-11
+ENSG00000134109	0.120014732018871
+ENSG00000128739	0.981056838936178
+ENSG00000083535	3.52136719682493e-05
+ENSG00000126001	0.0149067536530498
+ENSG00000148834	0.754207829195018
+ENSG00000035403	5.57565902509402e-11
+ENSG00000118707	0.656389838922064
+ENSG00000138835	0.964948557421046
+ENSG00000023697	0.915407684718381
+ENSG00000127314	0.000518659684801228
+ENSG00000240586	0.328832088402274
+ENSG00000133872	0.000319742175764829
+ENSG00000145555	0.572744410114805
+ENSG00000123472	0.25090383491288
+ENSG00000235847	0.293943235332272
+ENSG00000008735	0.356424154803367
+ENSG00000182021	0.013476937435861
+ENSG00000006831	0.534127569133945
+ENSG00000236801	0.143065254497332
+ENSG00000111249	0.548728830325558
+ENSG00000164902	0.668295099489952
+ENSG00000165283	0.89176250308818
+ENSG00000226114	0.191174548331024
+ENSG00000196263	0.947473075848407
+ENSG00000182923	0.76444097434901
+ENSG00000204394	0.749878747868767
+ENSG00000187186	0.984084091008067
+ENSG00000182484	0.00702035662131396
+ENSG00000214694	0.405614318785868
+ENSG00000196074	0.978679195125103
+ENSG00000111247	0.610043748873479
+ENSG00000116761	0.115038815802476
+ENSG00000162851	0.33101736343132
+ENSG00000130222	0.000426440160316259
+ENSG00000222855	8.36736062146882e-11
+ENSG00000133302	6.90317259826781e-06
+ENSG00000117262	0.924515859703296
+ENSG00000224520	0.133852291313818
+ENSG00000174996	0.301216480322241
+ENSG00000111860	0.399147729675514
+ENSG00000141404	0.860859126908215
+ENSG00000165629	0.133513262963306
+ENSG00000138459	0.394823255682102
+ENSG00000147394	0.500457250297295
+ENSG00000243701	2.920774520236e-07
+ENSG00000168495	0.366434445641007
+ENSG00000106305	0.916580852978969
+ENSG00000074621	0.696105003852759
+ENSG00000149292	0.76053923165607
+ENSG00000134852	0.0850715428117204
+ENSG00000122390	0.819269944566873
+ENSG00000063322	0.0441474080389824
+ENSG00000127399	0.865629636482188
+ENSG00000173480	0.258081748637829
+ENSG00000244171	0.0759685969346685
+ENSG00000032389	0.691564262178323
+ENSG00000182141	1.45832681508408e-05
+ENSG00000146066	0.230885386278006
+ENSG00000203950	0.298191756624582
+ENSG00000162669	0.0276913341650999
+ENSG00000188786	0.877311347203413
+ENSG00000196739	3.17859478470199e-10
+ENSG00000241258	0.000590206004476318
+ENSG00000164252	0.00588182138759673
+ENSG00000234742	0.0827625184635838
+ENSG00000183171	0.776462817058725
+ENSG00000105519	0.145285062105549
+ENSG00000231955	0.560816552527176
+ENSG00000167815	0.015374209046281
+ENSG00000220157	0.373429753162599
+ENSG00000169302	1.23740419611322e-06
+ENSG00000157703	0.147209529381425
+ENSG00000150779	0.70436425813637
+ENSG00000147439	0.868354248252297
+ENSG00000108848	1.43402925325203e-07
+ENSG00000108666	0.798268587926075
+ENSG00000185238	0.000420025312650087
+ENSG00000169946	0.535096477735129
+ENSG00000164989	0.417911072144193
+ENSG00000141736	0.00479344568438214
+ENSG00000163521	0.859798684009167
+ENSG00000204859	0.769890601105245
+ENSG00000214617	0.541397711676029
+ENSG00000242612	0.175329903028802
+ENSG00000116455	0.846156544058176
+ENSG00000085999	0.00813450696803444
+ENSG00000080603	0.406461214339416
+ENSG00000122966	5.5224120355487e-05
+ENSG00000072121	0.248603619188992
+ENSG00000242892	0.651605298552
+ENSG00000139971	0.585852729567579
+ENSG00000162063	0.993197466234619
+ENSG00000189221	0.777059359367625
+ENSG00000213197	0.882419010992449
+ENSG00000147251	0.00568434842131374
+ENSG00000205268	0.197892274961649
+ENSG00000109787	0.000558230352062098
+ENSG00000170889	0.135147914152522
+ENSG00000167195	0.71851653490475
+ENSG00000169627	0.017800499470651
+ENSG00000242061	0.827248505848185
+ENSG00000198464	0.533904996383341
+ENSG00000163320	0.00398589471784121
+ENSG00000135048	6.24546310541275e-08
+ENSG00000115841	0.393131363597891
+ENSG00000068028	0.187045691516393
+ENSG00000142208	0.429995915320955
+ENSG00000085365	0.60501898963171
+ENSG00000065000	0.0812564916308433
+ENSG00000243396	0.839010131223153
+ENSG00000106012	0.406461214339416
+ENSG00000214605	0.873434768130354
+ENSG00000172009	0.0522306882129797
+ENSG00000224664	0.664035426665465
+ENSG00000181444	0.882719520422126
+ENSG00000235859	0.460780913379528
+ENSG00000100852	0.0092113496957207
+ENSG00000121851	0.135508317143458
+ENSG00000137812	0.0210428656129079
+ENSG00000203668	0.176543737084825
+ENSG00000135679	0.0301405990649289
+ENSG00000178935	0.127329461137876
+ENSG00000165816	0.0277432566345692
+ENSG00000121753	0.0221724764435779
+ENSG00000216854	0.768237097041521
+ENSG00000232186	0.968654501929655
+ENSG00000168159	0.718602325634929
+ENSG00000213686	0.247568994786106
+ENSG00000158296	0.833310437754554
+ENSG00000239791	0.686503994156112
+ENSG00000105220	0.179362168217279
+ENSG00000102606	0.95400514694103
+ENSG00000196812	0.536028034774405
+ENSG00000104325	0.0340042674559137
+ENSG00000172186	0.773174078460979
+ENSG00000228731	0.596774637063673
+ENSG00000198155	0.38585136650363
+ENSG00000109771	0.137742189367442
+ENSG00000167645	0.693216678623446
+ENSG00000237033	0.895995580050699
+ENSG00000235655	0.278620378723666
+ENSG00000224016	0.513406662257912
+ENSG00000230295	0.916573559982438
+ENSG00000167930	0.758002832678451
+ENSG00000117569	0.101315786069301
+ENSG00000183569	0.848113494566397
+ENSG00000135045	0.788234163686349
+ENSG00000139726	0.815551664306076
+ENSG00000118503	0.0379625032401685
+ENSG00000213174	0.992688525341068
+ENSG00000177788	0.533180570925694
+ENSG00000007392	0.0583479508190112
+ENSG00000144524	0.482841320546335
+ENSG00000137210	0.926785647710776
+ENSG00000107295	0.0804021533701143
+ENSG00000101247	0.563701053571779
+ENSG00000215286	0.427122606530978
+ENSG00000135930	1.90070883487042e-12
+ENSG00000198520	0.998455431240321
+ENSG00000100191	0.951162882871625
+ENSG00000182134	0.0595275893053389
+ENSG00000071889	0.962639972417908
+ENSG00000100014	3.27521562868658e-05
+ENSG00000126003	0.102196135235674
+ENSG00000177352	0.175316673059535
+ENSG00000069712	0.287968445185501
+ENSG00000228981	0.0398060408861038
+ENSG00000118655	0.467889754590809
+ENSG00000033050	0.651228802535704
+ENSG00000086205	1.36241639581165e-58
+ENSG00000236997	0.42179232810032
+ENSG00000240821	0.519932120939671
+ENSG00000142961	0.00213388352474477
+ENSG00000113916	0.0447532957045752
+ENSG00000233122	0.00182822220423677
+ENSG00000196419	0.67044379643427
+ENSG00000163156	0.0546479142968522
+ENSG00000203865	0.032790095232272
+ENSG00000176871	0.00229531252598241
+ENSG00000171606	0.00875639921251641
+ENSG00000183172	0.206577825841135
+ENSG00000110002	0.73864948392558
+ENSG00000150991	0.0237841037159643
+ENSG00000182324	0.080646036827169
+ENSG00000180818	0.478763427141023
+ENSG00000117868	0.922988291563092
+ENSG00000239811	0.061602354663804
+ENSG00000113649	0.820503068305227
+ENSG00000125818	0.86550538452406
+ENSG00000125734	0.399147729675514
+ENSG00000166398	0.0166181196582921
+ENSG00000239887	0.700156801023336
+ENSG00000229503	0.610060582101443
+ENSG00000146802	0.0956772704764627
+ENSG00000242680	0.222214221957578
+ENSG00000138028	0.0459701445789414
+ENSG00000160172	0.0196207221824708
+ENSG00000143641	0.335355638508535
+ENSG00000170011	0.660307555585506
+ENSG00000226086	0.734099822188961
+ENSG00000127989	0.0228746878032819
+ENSG00000157625	0.27931798798955
+ENSG00000224578	0.426134297539243
+ENSG00000231615	0.891672718645967
+ENSG00000237977	0.805548961236493
+ENSG00000203441	0.520008057170515
+ENSG00000121390	0.000223940365884197
+ENSG00000102901	0.0405368257566921
+ENSG00000188206	0.644991446777425
+ENSG00000182810	0.493597313991375
+ENSG00000134690	0.0785782360571654
+ENSG00000128654	0.718530268608982
+ENSG00000223877	0.500457250297295
+ENSG00000164967	0.395536111256832
+ENSG00000226833	0.595463660445426
+ENSG00000112406	0.438373892701879
+ENSG00000124275	0.525840119837472
+ENSG00000116604	0.684281182165684
+ENSG00000135605	0.739056729621683
+ENSG00000230913	0.116132757002779
+ENSG00000196507	0.765915520686686
+ENSG00000114999	0.0317101734542941
+ENSG00000204334	0.000222053852147335
+ENSG00000165671	0.0761935316707517
+ENSG00000148700	2.62879080618878e-20
+ENSG00000205485	0.13433169386688
+ENSG00000139496	3.75433369327047e-11
+ENSG00000168661	0.227145559701342
+ENSG00000128016	0.569390588054255
+ENSG00000119421	0.665742588919922
+ENSG00000092068	0.031778323424117
+ENSG00000142784	0.963329044709558
+ENSG00000241482	0.157677509556116
+ENSG00000104368	0.939861565991102
+ENSG00000163848	0.00170607217696623
+ENSG00000109079	0.805827374126165
+ENSG00000143458	0.965885612859968
+ENSG00000224024	0.524381152091777
+ENSG00000147050	2.15236005011606e-09
+ENSG00000187187	0.0673010314290017
+ENSG00000164535	0.626678711036067
+ENSG00000074319	0.141747131927701
+ENSG00000079974	0.104846712647907
+ENSG00000236455	0.834124432865021
+ENSG00000139910	0.0211327609700787
+ENSG00000146350	0.251022586344015
+ENSG00000226593	0.977966189132836
+ENSG00000168096	0.222148826908676
+ENSG00000237054	0.748712777850785
+ENSG00000222046	0.561041034597618
+ENSG00000146733	0.442751177372582
+ENSG00000226752	0.548180462194071
+ENSG00000235512	0.718076460105824
+ENSG00000023330	0.834349231696745
+ENSG00000142599	0.548733863838133
+ENSG00000232581	0.973634566382512
+ENSG00000141367	0.00537192271584848
+ENSG00000117758	0.796647367006103
+ENSG00000109171	0.000371851094282113
+ENSG00000236753	0.000469075570654849
+ENSG00000196632	0.10252438656706
+ENSG00000179163	0.989002919945346
+ENSG00000198961	1.85548661216501e-07
+ENSG00000068650	1.64814572209972e-21
+ENSG00000112874	0.126870662663767
+ENSG00000138798	0.13477970140713
+ENSG00000219553	0.388834641422751
+ENSG00000230146	0.593500373773932
+ENSG00000140265	0.0555098760163621
+ENSG00000226703	0.460780913379528
+ENSG00000223620	0.271178001494457
+ENSG00000210100	0.341356502707118
+ENSG00000114315	0.66929962734241
+ENSG00000171163	0.000542430244185824
+ENSG00000230667	0.958340430536335
+ENSG00000119041	0.0445508124775845
+ENSG00000172315	0.791268622208275
+ENSG00000240894	0.000270557593001133
+ENSG00000176444	0.465240392284943
+ENSG00000142871	0.599421389783789
+ENSG00000132155	0.969977232655304
+ENSG00000141699	0.472282974151857
+ENSG00000183022	0.88171604311573
+ENSG00000138750	0.000473164943921549
+ENSG00000213917	0.834717076418868
+ENSG00000210174	0.406297745231691
+ENSG00000242600	0.78099016194162
+ENSG00000237939	0.000127576617082142
+ENSG00000234231	0.625168414271394
+ENSG00000108591	0.293923806750737
+ENSG00000118564	0.0218979451944304
+ENSG00000164418	0.366937865909014
+ENSG00000169116	0.0841008903850122
+ENSG00000175390	0.0109107654480781
+ENSG00000227057	0.235082445260648
+ENSG00000139718	0.697748037441959
+ENSG00000140416	1.8351436472524e-12
+ENSG00000170296	0.567376217320079
+ENSG00000187994	0.521600107778299
+ENSG00000161888	2.84802631728728e-05
+ENSG00000214389	0.58370424283351
+ENSG00000241606	0.0777100830167171
+ENSG00000229956	0.232011923457365
+ENSG00000197045	0.45208416379658
+ENSG00000134153	0.0393794982783833
+ENSG00000166340	0.0258672117131957
+ENSG00000214181	0.155532868241774
+ENSG00000134291	1.97536477205398e-07
+ENSG00000124783	3.19048389052264e-11
+ENSG00000133816	0.0421247286346602
+ENSG00000179988	0.703083720636867
+ENSG00000162227	0.294447906778803
+ENSG00000180178	0.318068717116931
+ENSG00000179455	0.646312013505138
+ENSG00000013275	0.320114825218948
+ENSG00000185885	0.00280891062346273
+ENSG00000137806	0.556745175643341
+ENSG00000083544	0.181887048934119
+ENSG00000236468	0.504629413891876
+ENSG00000187210	2.70567506454935e-06
+ENSG00000130592	0.0839358627495497
+ENSG00000155100	0.0261385939546889
+ENSG00000109920	0.576628351585347
+ENSG00000116580	0.507569702102779
+ENSG00000140396	0.480918464972665
+ENSG00000226268	0.349072786986557
+ENSG00000132604	0.994157437323838
+ENSG00000166974	0.085266487876245
+ENSG00000152527	0.00851330031377092
+ENSG00000239524	0.967402562660884
+ENSG00000230869	0.867171025349532
+ENSG00000125733	0.00549809263925402
+ENSG00000128604	0.683324928493172
+ENSG00000149483	0.740120600078225
+ENSG00000196549	4.25513386445625e-11
+ENSG00000072864	0.937250941164921
+ENSG00000233503	0.00289852894603367
+ENSG00000227184	0.0178211848980379
+ENSG00000130695	0.157471072602482
+ENSG00000146425	0.863334172770623
+ENSG00000170113	0.171566673238683
+ENSG00000128965	1.7876942502964e-25
+ENSG00000188039	0.000491103244433359
+ENSG00000196119	0.549814887505804
+ENSG00000128973	0.171280382523589
+ENSG00000198431	0.0337053257675948
+ENSG00000122194	0.163117043675274
+ENSG00000198515	0.411005067947749
+ENSG00000130827	0.17500546524189
+ENSG00000118420	0.307424555497213
+ENSG00000163832	0.321380308084623
+ENSG00000119326	0.0381645741714451
+ENSG00000226607	0.678409115373721
+ENSG00000102349	0.545934209461732
+ENSG00000162819	0.963329044709558
+ENSG00000143198	0.446962940925833
+ENSG00000213742	0.0744365576973667
+ENSG00000136720	0.882419010992449
+ENSG00000225544	0.983077577955376
+ENSG00000178184	0.609774953217749
+ENSG00000220131	0.947991820009244
+ENSG00000152457	0.620954294969761
+ENSG00000168078	0.00966687478945068
+ENSG00000137824	0.947505935064819
+ENSG00000092445	0.861223715992281
+ENSG00000116171	0.0105423889707543
+ENSG00000124615	0.0105499938670161
+ENSG00000135250	0.00391935066082065
+ENSG00000153147	0.658698634912749
+ENSG00000241083	0.307033285487775
+ENSG00000217716	0.939864566015052
+ENSG00000143418	0.20237084119094
+ENSG00000239604	0.748712777850785
+ENSG00000100292	0.684686930400066
+ENSG00000158092	0.00452330377201751
+ENSG00000227543	0.609913552025554
+ENSG00000236086	0.563578561860096
+ENSG00000242140	0.621518906259699
+ENSG00000123562	0.492304820220296
+ENSG00000155636	0.00117935446868699
+ENSG00000160199	0.0471403497801092
+ENSG00000230551	0.00536017695117343
+ENSG00000125944	0.0119495316064059
+ENSG00000079246	0.16438908591432
+ENSG00000154743	0.935708260248787
+ENSG00000163376	0.535575269003758
+ENSG00000168597	0.581452183873335
+ENSG00000213711	0.29955358744234
+ENSG00000163577	0.0977549612953701
+ENSG00000239926	0.744832034633535
+ENSG00000099910	0.889367861303436
+ENSG00000134463	0.938094132343364
+ENSG00000120907	0.0711046249255138
+ENSG00000224892	0.861084367960524
+ENSG00000125901	0.550316672787864
+ENSG00000009844	0.644828435398987
+ENSG00000163191	0.0240573695189013
+ENSG00000124549	0.00341679649247192
+ENSG00000085377	0.551127239399187
+ENSG00000100441	0.90019334109319
+ENSG00000168612	0.0594000220003413
+ENSG00000129354	0.173480850277782
+ENSG00000163900	0.352979127473741
+ENSG00000163743	0.15539552756718
+ENSG00000213148	0.985048810837663
+ENSG00000103932	0.838254156793931
+ENSG00000204392	0.00205960710440216
+ENSG00000234639	0.357123305218129
+ENSG00000101294	0.0854486037190526
+ENSG00000042445	0.560624855234317
+ENSG00000229044	0.656389838922064
+ENSG00000105355	0.291875383847233
+ENSG00000157637	0.952015953897977
+ENSG00000186056	0.54894089296009
+ENSG00000090020	0.0844002639423982
+ENSG00000114120	1.9096885471534e-22
+ENSG00000214975	0.136787756870408
+ENSG00000164209	0.0606163554212245
+ENSG00000118096	0.27883485650015
+ENSG00000236163	0.0829568868931521
+ENSG00000230243	0.963329044709558
+ENSG00000147669	0.0432217762647185
+ENSG00000213904	0.950638559811454
+ENSG00000213880	0.419143622796816
+ENSG00000124181	0.00093391115418322
+ENSG00000197697	0.500457250297295
+ENSG00000235698	0.553730877274996
+ENSG00000112531	2.04055566619737e-11
+ENSG00000241772	0.985748114126972
+ENSG00000164308	0.623814887114911
+ENSG00000189143	0.128686067372818
+ENSG00000198865	0.000110968243649007
+ENSG00000167642	2.33232225748004e-06
+ENSG00000156973	0.805053229495908
+ENSG00000139233	0.536834780251597
+ENSG00000074211	0.721379469500436
+ENSG00000110906	0.408142351828347
+ENSG00000236570	0.711548225998763
+ENSG00000112365	0.0926341540839103
+ENSG00000162444	0.325038568691797
+ENSG00000143970	8.42814463661532e-05
+ENSG00000179918	2.52821918394173e-18
+ENSG00000170619	0.761883961761675
+ENSG00000187172	0.875440720303501
+ENSG00000119669	0.402350995530089
+ENSG00000074054	0.120184779584797
+ENSG00000114416	0.862139271561761
+ENSG00000204805	0.647563154599603
+ENSG00000226637	0.808666563269323
+ENSG00000213092	0.658698634912749
+ENSG00000116209	0.0072223349585748
+ENSG00000241923	0.303289893139539
+ENSG00000092208	0.142441040143205
+ENSG00000161692	0.868354248252297
+ENSG00000018699	0.734374788514334
+ENSG00000134765	0.00650215110876595
+ENSG00000232943	0.701549702363261
+ENSG00000171055	0.00148466914736854
+ENSG00000170412	0.88891990694387
+ENSG00000180884	0.458441720542912
+ENSG00000213066	0.80547549639133
+ENSG00000189343	0.690305853891637
+ENSG00000152377	7.4292956255214e-06
+ENSG00000137642	0.268435747292594
+ENSG00000230406	0.13401701674262
+ENSG00000027697	0.002840466182828
+ENSG00000138685	0.548466549084201
+ENSG00000125691	1.15003598686071e-07
+ENSG00000139192	0.649756977698652
+ENSG00000170142	6.38922101876979e-14
+ENSG00000236735	0.848420495778619
+ENSG00000127226	0.899320127523039
+ENSG00000213033	0.360884039315709
+ENSG00000174483	0.260193846869692
+ENSG00000232676	0.560624855234317
+ENSG00000181359	0.592517124081931
+ENSG00000114735	0.535010072830088
+ENSG00000084073	0.923914050086403
+ENSG00000132879	0.0393568923556353
+ENSG00000187504	0.0441101602396413
+ENSG00000131100	0.000106436767813105
+ENSG00000022556	0.27883485650015
+ENSG00000128590	1.73800036802318e-21
+ENSG00000214029	0.917064559966224
+ENSG00000163322	0.675001698592716
+ENSG00000164332	0.20454326671199
+ENSG00000188529	0.0161433556599521
+ENSG00000164930	0.984153316362751
+ENSG00000188863	0.233043132401159
+ENSG00000198746	0.721379469500436
+ENSG00000231434	0.725608381839331
+ENSG00000168916	0.00589024091625099
+ENSG00000203837	1.76892833362719e-07
+ENSG00000118507	0.449912308591957
+ENSG00000184319	0.366678423622579
+ENSG00000130349	0.0160421479898614
+ENSG00000100478	0.119406328267409
+ENSG00000185189	0.624428577795196
+ENSG00000113621	0.000222224973480795
+ENSG00000238251	0.874940743959374
+ENSG00000198250	2.74474802092663e-05
+ENSG00000232905	0.20532113298844
+ENSG00000206560	1.18683304929125e-05
+ENSG00000225374	0.894456494069142
+ENSG00000236330	0.315576488077443
+ENSG00000136048	0.750473149432026
+ENSG00000146574	0.772807530778178
+ENSG00000129518	0.0459798175019202
+ENSG00000111652	0.634193344204788
+ENSG00000136709	0.554407246784547
+ENSG00000159259	0.262366605763669
+ENSG00000205628	0.798268587926075
+ENSG00000236739	0.382890111338818
+ENSG00000118680	4.1968818844451e-05
+ENSG00000174799	0.742300334521863
+ENSG00000227376	0.996194084342179
+ENSG00000079215	0.162453281378504
+ENSG00000224628	0.191864473181457
+ENSG00000197121	0.290794059600547
+ENSG00000151690	0.00537072754790089
+ENSG00000230531	0.906787427531995
+ENSG00000126226	0.311778628629739
+ENSG00000074071	0.00113433808990478
+ENSG00000100577	0.957727988445661
+ENSG00000086289	0.968664254628913
+ENSG00000205208	0.0550710401653758
+ENSG00000134326	0.748712777850785
+ENSG00000157423	0.999510507884463
+ENSG00000239569	0.328888885510785
+ENSG00000164241	0.876441153890778
+ENSG00000161040	0.831091903231873
+ENSG00000174705	0.244064101688463
+ENSG00000197888	0.00134653046466952
+ENSG00000141448	0.236835594384422
+ENSG00000181690	0.326440628237822
+ENSG00000166788	0.411378011058103
+ENSG00000101473	0.0171413081804384
+ENSG00000204396	0.0483007758935841
+ENSG00000168826	0.552443415574652
+ENSG00000155729	0.0991597147747372
+ENSG00000142082	0.638923880981661
+ENSG00000143727	0.750662288343334
+ENSG00000203995	0.984084091008067
+ENSG00000165055	0.812569903475227
+ENSG00000213971	0.627749833317985
+ENSG00000224453	0.976708700408519
+ENSG00000108960	0.911297258283906
+ENSG00000183506	0.848060111100076
+ENSG00000099139	0.676269590957853
+ENSG00000111331	0.0182585761489983
+ENSG00000133226	0.993938540221067
+ENSG00000217801	0.542666342284879
+ENSG00000130227	0.832276261107283
+ENSG00000164144	0.265975159558312
+ENSG00000128731	0.629112082740044
+ENSG00000079785	0.94307244855189
+ENSG00000106948	0.05112788313254
+ENSG00000115107	0.00183983255792611
+ENSG00000236696	0.193376341017005
+ENSG00000198482	0.37380351144772
+ENSG00000173681	0.0716154000382221
+ENSG00000204164	0.985737910608511
+ENSG00000228612	0.748712777850785
+ENSG00000003096	0.00042794028375702
+ENSG00000180881	0.136030933129489
+ENSG00000205084	0.90764052404365
+ENSG00000159173	0.2498290003939
+ENSG00000197535	0.107477968331359
+ENSG00000223382	0.0390812398780999
+ENSG00000183309	0.949877448246991
+ENSG00000215099	0.977533446702643
+ENSG00000116685	0.130258856790993
+ENSG00000181472	0.783562229232973
+ENSG00000132274	0.912935375903614
+ENSG00000145494	0.532946096201434
+ENSG00000122644	0.00147110292924849
+ENSG00000157107	0.000216975256848586
+ENSG00000145354	0.360340226327433
+ENSG00000158467	0.810768292961056
+ENSG00000164934	0.596506037729255
+ENSG00000134986	1.41212629180466e-07
+ENSG00000121988	0.913419273715737
+ENSG00000178996	0.10888972327876
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/gene_ids.loc	Fri Feb 26 08:49:59 2016 -0500
@@ -0,0 +1,42 @@
+knownGene	knownGene, UCSC Genes, NA, Entrez Gene ID
+knownGeneOld3	knownGeneOld3, Old UCSC Genes, NA, 
+ccdsGene	ccdsGene, CCDS, NA, 
+refGene	refGene, RefSeq Genes, NA, Entrez Gene ID
+xenoRefGene	xenoRefGene, Other RefSeq, NA, 
+vegaGene	vegaGene, Vega Genes, Vega Protein Genes, HAVANA Pseudogene ID
+vegaPseudoGene	vegaPseudoGene, Vega Genes, Vega Pseudogenes, HAVANA Pseudogene ID
+ensGene	ensGene, Ensembl Genes, NA, Ensembl gene ID
+acembly	acembly, AceView Genes, NA, 
+sibGene	sibGene, SIB Genes, NA, 
+nscanPasaGene	nscanPasaGene, N-SCAN, N-SCAN PASA-EST, 
+nscanGene	nscanGene, N-SCAN, N-SCAN, 
+sgpGene	sgpGene, SGP Genes, NA, 
+geneid	geneid, Geneid Genes, NA, 
+genscan	genscan, Genscan Genes, NA, 
+exoniphy	exoniphy, Exoniphy, NA, 
+augustusHints	augustusHints, Augustus, Augustus Hints, 
+augustusXRA	augustusXRA, Augustus, Augustus De Novo, 
+augustusAbinitio	augustusAbinitio, Augustus, Augustus Ab Initio, 
+acescan	acescan, ACEScan, NA, 
+lincRNAsTranscripts	lincRNAsTranscripts, lincRNAsTranscripts, NA, Name of gene
+wgEncodeGencodeManualV3	wgEncodeGencodeManualV3, Gencode Genes, Gencode Manual, Ensembl gene ID
+wgEncodeGencodeAutoV3	wgEncodeGencodeAutoV3, Gencode Genes, Gencode Auto, Ensembl gene ID
+wgEncodeGencodePolyaV3	wgEncodeGencodePolyaV3, Gencode Genes, Gencode PolyA, Ensembl gene ID
+wgEncodeGencodeBasicV17	wgEncodeGencodeBasicV17, GENCODE Genes V17, NA, Ensembl gene ID
+wgEncodeGencodeCompV17	wgEncodeGencodeCompV17, GENCODE Genes V17, NA, Ensembl gene ID
+wgEncodeGencodePseudoGeneV17	wgEncodeGencodePseudoGeneV17, GENCODE Genes V17, NA, Ensembl gene ID
+wgEncodeGencode2wayConsPseudoV17	wgEncodeGencode2wayConsPseudoV17, GENCODE Genes V17, NA, Ensembl gene ID
+wgEncodeGencodePolyaV17	wgEncodeGencodePolyaV17, GENCODE Genes V17, NA, Ensembl gene ID
+wgEncodeGencodeBasicV14	wgEncodeGencodeBasicV14, GENCODE Genes V14, NA, Ensembl gene ID
+wgEncodeGencodeCompV14	wgEncodeGencodeCompV14, GENCODE Genes V14, NA, Ensembl gene ID
+wgEncodeGencodePseudoGeneV14	wgEncodeGencodePseudoGeneV14, GENCODE Genes V14, NA, Ensembl gene ID
+wgEncodeGencode2wayConsPseudoV14	wgEncodeGencode2wayConsPseudoV14, GENCODE Genes V14, NA, Ensembl gene ID
+wgEncodeGencodePolyaV14	wgEncodeGencodePolyaV14, GENCODE Genes V14, NA, Ensembl gene ID
+wgEncodeGencodeBasicV7	wgEncodeGencodeBasicV7, GENCODE Genes V7, NA, Ensembl gene ID
+wgEncodeGencodeCompV7	wgEncodeGencodeCompV7, GENCODE Genes V7, NA, Ensembl gene ID
+wgEncodeGencodePseudoGeneV7	wgEncodeGencodePseudoGeneV7, GENCODE Genes V7, NA, Ensembl gene ID
+wgEncodeGencode2wayConsPseudoV7	wgEncodeGencode2wayConsPseudoV7, GENCODE Genes V7, NA, Ensembl gene ID
+wgEncodeGencodePolyaV7	wgEncodeGencodePolyaV7, GENCODE Genes V7, NA, Ensembl gene ID
+flyBaseGene	flyBaseGene, FlyBase Genes, NA, Name of canonical transcript in cluster
+sgdGene	sgdGene, SGD Genes, NA, Name of canonical transcript in cluster
+geneSymbol	geneSymbol, refGene, refFlat, Gene Symbol
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/genomes.loc	Fri Feb 26 08:49:59 2016 -0500
@@ -0,0 +1,170 @@
+hg38	hg38, Human, Dec. 2013, Genome Reference Consortium GRCh38
+hg19	hg19, Human, Feb. 2009, Genome Reference Consortium GRCh37
+hg18	hg18, Human, Mar. 2006, NCBI Build 36.1
+hg17	hg17, Human, May 2004, NCBI Build 35
+hg16	hg16, Human, Jul. 2003, NCBI Build 34
+vicPac2	vicPac2, Alpaca, Mar. 2013, Broad Institute Vicugna_pacos-2.0.1
+vicPac1	vicPac1, Alpaca, Jul. 2008, Broad Institute VicPac1.0
+dasNov3	dasNov3, Armadillo, Dec. 2011, Broad Institute DasNov3
+otoGar3	otoGar3, Bushbaby, Mar. 2011, Broad Institute OtoGar3
+papHam1	papHam1, Baboon, Nov. 2008, Baylor College of Medicine HGSC Pham_1.0
+papAnu2	papAnu2, Baboon, Mar. 2012, Baylor College of Medicine Panu_2.0
+felCat8	felCat8, Cat, Nov. 2014, ICGSC Felis_catus_8.0
+felCat5	felCat5, Cat, Sep. 2011, ICGSC Felis_catus-6.2
+felCat4	felCat4, Cat, Dec. 2008, NHGRI catChrV17e
+felCat3	felCat3, Cat, Mar. 2006, Broad Institute Release 3
+panTro4	panTro4, Chimp, Feb. 2011, CGSC Build 2.1.4
+panTro3	panTro3, Chimp, Oct. 2010, CGSC Build 2.1.3
+panTro2	panTro2, Chimp, Mar. 2006, CGSC Build 2.1
+panTro1	panTro1, Chimp, Nov. 2003, CGSC Build 1.1
+criGri1	criGri1, Chinese hamster, Jul. 2013, Beijing Genomics Institution-Shenzhen C_griseus_v1.0
+bosTau8	bosTau8, Cow, Jun. 2014, University of Maryland v3.1.1
+bosTau7	bosTau7, Cow, Oct. 2011, Baylor College of Medicine HGSC Btau_4.6.1
+bosTau6	bosTau6, Cow, Nov. 2009, University of Maryland v3.1
+bosTau4	bosTau4, Cow, Oct. 2007, Baylor College of Medicine HGSC Btau_4.0
+bosTau3	bosTau3, Cow, Aug. 2006, Baylor College of Medicine HGSC Btau_3.1
+bosTau2	bosTau2, Cow, Mar. 2005, Baylor College of Medicine HGSC Btau_2.0
+canFam3	canFam3, Dog, Sep. 2011, Broad Institute v3.1
+canFam2	canFam2, Dog, May 2005, Broad Institute v2.0
+canFam1	canFam1, Dog, Jul. 2004, Broad Institute v1.0
+turTru2	turTru2, Dolphin, Oct. 2011, Baylor College of Medicine Ttru_1.4
+loxAfr3	loxAfr3, Elephant, Jul. 2009, Broad Institute LoxAfr3
+musFur1	musFur1, Ferret, Apr. 2011, Ferret Genome Sequencing Consortium MusPutFur1.0
+nomLeu3	nomLeu3, Gibbon, Oct. 2012, Gibbon Genome Sequencing Consortium Nleu3.0
+nomLeu2	nomLeu2, Gibbon, Jun. 2011, Gibbon Genome Sequencing Consortium Nleu1.1
+nomLeu1	nomLeu1, Gibbon, Jan. 2010, Gibbon Genome Sequencing Consortium Nleu1.0
+gorGor3	gorGor3, Gorilla, May 2011, Wellcome Trust Sanger Institute gorGor3.1
+cavPor3	cavPor3, Guinea pig, Feb. 2008, Broad Institute cavPor3
+eriEur2	eriEur2, Hedgehog, May 2012, Broad Institute EriEur2.0
+eriEur1	eriEur1, Hedgehog, Jun. 2006, Broad Institute Draft_v1
+equCab2	equCab2, Horse, Sep. 2007, Broad Institute EquCab2
+equCab1	equCab1, Horse, Jan. 2007, Broad Institute EquCab1
+dipOrd1	dipOrd1, Kangaroo rat, Jul. 2008, Baylor/Broad Institute DipOrd1.0
+triMan1	triMan1, Manatee, Oct. 2011, Broad Institute TriManLat1.0
+calJac3	calJac3, Marmoset, Mar. 2009, WUSTL Callithrix_jacchus-v3.2
+calJac1	calJac1, Marmoset, Jun. 2007, WUSTL Callithrix_jacchus-v2.0.2
+pteVam1	pteVam1, Megabat, Jul. 2008, Broad Institute Ptevap1.0
+myoLuc2	myoLuc2, Microbat, Jul. 2010, Broad Institute MyoLuc2.0
+balAcu1	balAcu1, Minke whale, Oct. 2013, KORDI BalAcu1.0
+mm10	mm10, Mouse, Dec. 2011, Genome Reference Consortium GRCm38
+mm9	mm9, Mouse, Jul. 2007, NCBI Build 37
+mm8	mm8, Mouse, Feb. 2006, NCBI Build 36
+mm7	mm7, Mouse, Aug. 2005, NCBI Build 35
+micMur2	micMur2, Mouse lemur, May 2015, Baylor/Broad Institute Mmur_2.0
+micMur1	micMur1, Mouse lemur, Jul. 2007, Broad Institute MicMur1.0
+hetGla2	hetGla2, Naked mole-rat, Jan. 2012, Broad Institute HetGla_female_1.0
+hetGla1	hetGla1, Naked mole-rat, Jul. 2011, Beijing Genomics Institute HetGla_1.0
+monDom5	monDom5, Opossum, Oct. 2006, Broad Institute release MonDom5
+monDom4	monDom4, Opossum, Jan. 2006, Broad Institute release MonDom4
+monDom1	monDom1, Opossum, Oct. 2004, Broad Institute release MonDom1
+ponAbe2	ponAbe2, Orangutan, Jul. 2007, WUSTL Pongo_albelii-2.0.2
+ailMel1	ailMel1, Panda, Dec. 2009, BGI-Shenzhen AilMel 1.0
+susScr3	susScr3, Pig, Aug. 2011, Swine Genome Sequencing Consortium Sscrofa10.2
+susScr2	susScr2, Pig, Nov. 2009, Swine Genome Sequencing Consortium Sscrofa9.2
+ochPri3	ochPri3, Pika, May 2012, Broad Institute OchPri3.0
+ochPri2	ochPri2, Pika, Jul. 2008, Broad Institute OchPri2
+ornAna2	ornAna2, Platypus, Feb. 2007, WUSTL v5.0.1
+ornAna1	ornAna1, Platypus, Mar. 2007, WUSTL v5.0.1
+oryCun2	oryCun2, Rabbit, Apr. 2009, Broad Institute release OryCun2
+rn6	rn6, Rat, Jul. 2014, RGSC Rnor_6.0
+rn5	rn5, Rat, Mar. 2012, RGSC Rnor_5.0
+rn4	rn4, Rat, Nov. 2004, Baylor College of Medicine HGSC v3.4
+rn3	rn3, Rat, Jun. 2003, Baylor College of Medicine HGSC v3.1
+rheMac3	rheMac3, Rhesus, Oct. 2010, Beijing Genomics Institute CR_1.0
+rheMac2	rheMac2, Rhesus, Jan. 2006, Baylor College of Medicine HGSC v1.0 Mmul_051212
+proCap1	proCap1, Rock hyrax, Jul. 2008, Baylor College of Medicine HGSC Procap1.0
+oviAri3	oviAri3, Sheep, Aug. 2012, ISGC Oar_v3.1
+oviAri1	oviAri1, Sheep, Feb. 2010, ISGC Ovis aries 1.0
+sorAra2	sorAra2, Shrew, Aug. 2008, Broad Institute SorAra2.0
+sorAra1	sorAra1, Shrew, Jun. 2006, Broad Institute SorAra1.0
+choHof1	choHof1, Sloth, Jul. 2008, Broad Institute ChoHof1.0
+speTri2	speTri2, Squirrel, Nov. 2011, Broad Institute SpeTri2.0
+saiBol1	saiBol1, Squirrel monkey, Oct. 2011, Broad Institute SaiBol1.0
+tarSyr2	tarSyr2, Tarsier, Sep. 2013, WashU Tarsius_syrichta-2.0.1
+tarSyr1	tarSyr1, Tarsier, Aug. 2008, WUSTL/Broad Institute Tarsyr1.0
+sarHar1	sarHar1, Tasmanian devil, Feb. 2011, Wellcome Trust Sanger Institute Devil_refv7.0
+echTel2	echTel2, Tenrec, Nov. 2012, Broad Institute EchTel2.0
+echTel1	echTel1, Tenrec, Jul. 2005, Broad Institute echTel1
+tupBel1	tupBel1, Tree shrew, Dec. 2006, Broad Institute Tupbel1.0
+macEug2	macEug2, Wallaby, Sep. 2009, Tammar Wallaby Genome Sequencing Consortium Meug_1.1
+cerSim1	cerSim1, White rhinoceros, May 2012, Broad Institute CerSimSim1.0
+allMis1	allMis1, American alligator, Aug. 2012, Int. Crocodilian Genomes Working Group allMis0.2
+gadMor1	gadMor1, Atlantic cod, May 2010, Genofisk GadMor_May2010
+melUnd1	melUnd1, Budgerigar, Sep. 2011, WUSTL v6.3
+galGal4	galGal4, Chicken, Nov.
+2011, ICGC Gallus-gallus-4.0
+galGal3	galGal3, Chicken, May 2006, WUSTL Gallus-gallus-2.1
+galGal2	galGal2, Chicken, Feb. 2004, WUSTL Gallus-gallus-1.0
+latCha1	latCha1, Coelacanth, Aug. 2011, Broad Institute LatCha1
+calMil1	calMil1, Elephant shark, Dec. 2013, IMCB Callorhinchus_milli_6.1.3
+fr3	fr3, Fugu, Oct. 2011, JGI v5.0
+fr2	fr2, Fugu, Oct. 2004, JGI v4.0
+fr1	fr1, Fugu, Aug. 2002, JGI v3.0
+petMar2	petMar2, Lamprey, Sep. 2010, WUGSC 7.0
+petMar1	petMar1, Lamprey, Mar. 2007, WUSTL v3.0
+anoCar2	anoCar2, Lizard, May 2010, Broad Institute AnoCar2
+anoCar1	anoCar1, Lizard, Feb. 2007, Broad Institute AnoCar1
+oryLat2	oryLat2, Medaka, Oct. 2005, NIG v1.0
+geoFor1	geoFor1, Medium ground finch, Apr. 2012, BGI GeoFor_1.0 / NCBI 13302
+oreNil2	oreNil2, Nile tilapia, Jan. 2011, Broad Institute Release OreNil1.1
+chrPic1	chrPic1, Painted turtle, Dec. 2011, IPTGSC Chrysemys_picta_bellii-3.0.1
+gasAcu1	gasAcu1, Stickleback, Feb. 2006, Broad Institute Release 1.0
+tetNig2	tetNig2, Tetraodon, Mar. 2007, Genoscope v7
+tetNig1	tetNig1, Tetraodon, Feb. 2004, Genoscope v7
+melGal1	melGal1, Turkey, Dec. 2009, Turkey Genome Consortium v2.01
+xenTro7	xenTro7, X. tropicalis, Sep. 2012, JGI v.7.0
+xenTro3	xenTro3, X. tropicalis, Nov. 2009, JGI v.4.2
+xenTro2	xenTro2, X. tropicalis, Aug. 2005, JGI v.4.1
+xenTro1	xenTro1, X. tropicalis, Oct. 2004, JGI v.3.0
+taeGut2	taeGut2, Zebra finch, Feb. 2013, WashU taeGut324
+taeGut1	taeGut1, Zebra finch, Jul. 2008, WUSTL v3.2.4
+danRer10	danRer10, Zebrafish, Sep. 2014, Genome Reference Consortium GRCz10 
+danRer7	danRer7, Zebrafish, Jul. 2010, Sanger Institute Zv9 
+danRer6	danRer6, Zebrafish, Dec. 2008, Sanger Institute Zv8 
+danRer5	danRer5, Zebrafish, Jul. 2007, Sanger Institute Zv7 
+danRer4	danRer4, Zebrafish, Mar. 2006, Sanger Institute Zv6 
+danRer3	danRer3, Zebrafish, May 2005, Sanger Institute Zv5 
+ci2	ci2, C. intestinalis, Mar. 2005, JGI v2.0
+ci1	ci1, C. intestinalis, Dec. 2002, JGI v1.0
+braFlo1	braFlo1, Lancelet, Mar. 2006, JGI v1.0
+strPur2	strPur2, S. purpuratus, Sep. 2006, Baylor College of Medicine HGSC v. Spur 2.1
+strPur1	strPur1, S. purpuratus, Apr. 2005, Baylor College of Medicine HGSC v. Spur_0.5
+apiMel2	apiMel2, A. mellifera, Jan. 2005, Baylor College of Medicine HGSC v.Amel_2.0 
+apiMel1	apiMel1, A. mellifera, Jul. 2004, Baylor College of Medicine HGSC v.Amel_1.2 
+anoGam1	anoGam1, A. gambiae, Feb. 2003, IAGP v.MOZ2
+droAna2	droAna2, D. ananassae, Aug. 2005, Agencourt Arachne release
+droAna1	droAna1, D. ananassae, Jul. 2004, TIGR Celera release
+droEre1	droEre1, D. erecta, Aug. 2005, Agencourt Arachne release
+droGri1	droGri1, D. grimshawi, Aug. 2005, Agencourt Arachne release
+dm6	dm6, D. melanogaster, Aug. 2014, BDGP Release 6 + ISO1 MT
+dm3	dm3, D. melanogaster, Apr. 2006, BDGP Release 5
+dm2	dm2, D. melanogaster, Apr. 2004, BDGP Release 4
+dm1	dm1, D. melanogaster, Jan. 2003, BDGP Release 3
+droMoj2	droMoj2, D. mojavensis, Aug. 2005, Agencourt Arachne release
+droMoj1	droMoj1, D. mojavensis, Aug. 2004, Agencourt Arachne release
+droPer1	droPer1, D. persimilis, Oct. 2005, Broad Institute release
+dp3	dp3, D. pseudoobscura, Nov. 2004, Flybase Release 1.0
+dp2	dp2, D. pseudoobscura, Aug. 2003, Baylor College of Medicine HGSC Freeze 1
+droSec1	droSec1, D. sechellia, Oct. 2005, Broad Institute Release 1.0
+droSim1	droSim1, D. simulans, Apr. 2005, WUSTL Release 1.0
+droVir2	droVir2, D. virilis, Aug. 2005, Agencourt Arachne release
+droVir1	droVir1, D. virilis, Jul. 2004, Agencourt Arachne release
+droYak2	droYak2, D. yakuba, Nov. 2005, WUSTL Release 2.0
+droYak1	droYak1, D. yakuba, Apr. 2004, WUSTL Release 1.0
+caePb2	caePb2, C. brenneri, Feb. 2008, WUSTL 6.0.1
+caePb1	caePb1, C. brenneri, Jan. 2007, WUSTL 4.0
+cb3	cb3, C. briggsae, Jan. 2007, WUSTL Cb3
+cb1	cb1, C. briggsae, Jul. 2002, WormBase v. cb25.agp8
+ce10	ce10, C. elegans, Oct. 2010, WormBase v. WS220
+ce6	ce6, C. elegans, May 2008, WormBase v. WS190
+ce4	ce4, C. elegans, Jan. 2007, WormBase v. WS170
+ce2	ce2, C. elegans, Mar. 2004, WormBase v. WS120
+caeJap1	caeJap1, C. japonica, Mar. 2008, WUSTL 3.0.2
+caeRem3	caeRem3, C. remanei, May 2007, WUSTL 15.0.1
+caeRem2	caeRem2, C. remanei, Mar. 2006, WUSTL 1.0
+priPac1	priPac1, P. pacificus, Feb. 2007, WUSTL 5.0
+aplCal1	aplCal1, Sea Hare, Sep. 2008, Broad Release Aplcal2.0
+sacCer3	sacCer3, Yeast, April 2011, SGD April 2011 sequence
+sacCer2	sacCer2, Yeast, June 2008, SGD June 2008 sequence
+sacCer1	sacCer1, Yeast, Oct. 2003, SGD 1 Oct 2003 sequence
+eboVir3	eboVir3, Ebola Virus, June 2014, Sierra Leone 2014 (G3683/KM034562.1)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/test-data/tool_data_table_conf.xml	Fri Feb 26 08:49:59 2016 -0500
@@ -0,0 +1,11 @@
+<tables>
+    <!-- Location of Picard dict file and other files -->
+    <table name="go_genomes" comment_char="#">
+        <columns>value, name</columns>
+        <file path="${__HERE__}/test-data/genomes.loc" />
+    </table>
+    <table name="go_gene_ids" comment_char="#">
+        <columns>value, name</columns>
+        <file path="${__HERE__}/test-data/gene_ids.loc" />
+    </table>
+</tables>
\ No newline at end of file
--- a/tool_data_table_conf.xml.sample	Thu Feb 25 08:49:20 2016 -0500
+++ b/tool_data_table_conf.xml.sample	Fri Feb 26 08:49:59 2016 -0500
@@ -1,7 +1,11 @@
 <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" />
+    <!-- Location of Picard dict file and other files -->
+    <table name="go_genomes" comment_char="#">
+        <columns>value, name</columns>
+        <file path="${__HERE__}/test-data/genomes.loc" />
+    </table>
+    <table name="go_gene_ids" comment_char="#">
+        <columns>value, name</columns>
+        <file path="${__HERE__}/test-data/gene_ids.loc" />
     </table>
 </tables>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/tool_data_table_conf.xml.sample.test	Fri Feb 26 08:49:59 2016 -0500
@@ -0,0 +1,11 @@
+<tables>
+    <!-- Location of Picard dict file and other files -->
+    <table name="go_genomes" comment_char="#">
+        <columns>value, name</columns>
+        <file path="tool-data/genomes.loc" />
+    </table>
+    <table name="go_gene_ids" comment_char="#">
+        <columns>value, name</columns>
+        <file path="tool-data/gene_ids.loc" />
+    </table>
+</tables>