changeset 0:82e0af566160 draft

Uploaded
author fubar
date Wed, 12 Jun 2013 02:58:43 -0400
parents
children 34cbb9e749da
files rgedgeR/datatypes_conf_xml.sample rgedgeR/installBioC.R rgedgeR/rgGSEA.py rgedgeR/rgGSEAcolumns.xml rgedgeR/rgToolFactory.py rgedgeR/rgedgeR.xml rgedgeR/rgedgeRglm.xml rgedgeR/rgedgeRpaired.xml rgedgeR/rgedgeRpaired.xml.iaas1 rgedgeR/test-data/edgeRtest1out.html rgedgeR/test-data/edgeRtest1out.xls rgedgeR/test-data/gentestdata.sh rgedgeR/test-data/gentestdata.sh~ rgedgeR/test-data/test_bams2mx.xls rgedgeR/tool_dependencies.xml
diffstat 15 files changed, 9466 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/datatypes_conf_xml.sample	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,2 @@
+<datatype extension="gseagmt" type="galaxy.datatypes.tabular:Tabular" subclass="True" display_in_upload="true" mimetype="application/vnd.ms-excel"/>
+<datatype extension="gseachip" type="galaxy.datatypes.tabular:Tabular" subclass="True" display_in_upload="true" mimetype="application/vnd.ms-excel"/>
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/installBioC.R	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,4 @@
+source('http://bioconductor.org/biocLite.R')
+installme=c('edgeR','limma','DESeq','DEXSeq','ggplot2','gplots')
+biocLite()
+biocLite(installme)
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/rgGSEA.py	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,494 @@
+"""
+April 2013
+eeesh GSEA does NOT respect the mode flag!
+
+Now realise that the creation of the input rank file for gsea needs to take the lowest p value for duplicate 
+feature names. To make Ish's life easier, remove duplicate gene ids from any gene set to stop GSEA from 
+barfing.
+
+October 14 2012
+Amazingly long time to figure out that GSEA fails with useless error message if any filename contains a dash "-"
+eesh.
+
+Added history .gmt source - requires passing a faked name to gsea 
+Wrapper for GSEA http://www.broadinstitute.org/gsea/index.jsp
+Started Feb 22 
+Copyright 2012 Ross Lazarus
+All rights reserved
+Licensed under the LGPL
+
+called eg as
+
+#!/bin/sh
+GALAXY_LIB="/data/extended/galaxy/lib"
+if [ "$GALAXY_LIB" != "None" ]; then
+    if [ -n "$PYTHONPATH" ]; then
+        PYTHONPATH="$GALAXY_LIB:$PYTHONPATH"
+    else
+        PYTHONPATH="$GALAXY_LIB"
+    fi
+    export PYTHONPATH
+fi
+
+cd /data/extended/galaxy/database/job_working_directory/027/27311
+python /data/extended/galaxy/tools/rgenetics/rgGSEA.py --input_tab "/data/extended/galaxy/database/files/033/dataset_33806.dat"  --adjpvalcol "5" --signcol "2"
+--idcol "1" --outhtml "/data/extended/galaxy/database/files/034/dataset_34455.dat" --input_name "actaearly-Controlearly-actalate-Controllate_topTable.xls"
+--setMax "500" --setMin "15" --nPerm "1000" --plotTop "20"
+--gsea_jar "/data/extended/galaxy/tool-data/shared/jars/gsea2-2.0.12.jar"
+--output_dir "/data/extended/galaxy/database/job_working_directory/027/27311/dataset_34455_files" --mode "Max_probe"
+ --title " actaearly-Controlearly-actalate-Controllate_interpro_GSEA" --builtin_gmt "/data/genomes/gsea/3.1/IPR_DOMAIN.gmt"
+
+
+"""
+import optparse
+import tempfile
+import os
+import sys
+import subprocess
+import time
+import shutil
+import glob
+import math
+import re
+
+KEEPSELECTION = False # detailed records for selection of multiple probes
+
+def timenow():
+    """return current time as a string
+    """
+    return time.strftime('%d/%m/%Y %H:%M:%S', time.localtime(time.time()))
+
+
+
+def fix_subdir(adir,destdir):
+    """ Galaxy wants everything in the same files_dir
+    if os.path.exists(adir):
+        for (d,dirs,files) in os.path.walk(adir):
+            for f in files:
+                sauce = os.path.join(d,f) 
+                shutil.copy(sauce,destdir)   
+    """
+
+    def fixAffycrap(apath=''):
+        """class='richTable'>RUNNING ES</th><th class='richTable'>CORE ENRICHMENT</th><tr><td class='lessen'>1</td>
+        <td><a href='https://www.affymetrix.com/LinkServlet?probeset=LBR'>LBR</a></td><td></td><td></td><td>1113</td>
+        <td>0.194</td><td>-0.1065</td><td>No</td></tr><tr><td class='lessen'>2</td><td>
+        <a href='https://www.affymetrix.com/LinkServlet?probeset=GGPS1'>GGPS1</a></td><td></td><td></td><td>4309</td><td>0.014</td><td>-0.4328</td>
+        <td>No</td></tr>
+        """
+        html = []
+        try:
+            html = open(apath,'r').readlines()       
+        except:
+             return html
+        for i,row in enumerate(html):
+            row = re.sub('https\:\/\/www.affymetrix.com\/LinkServlet\?probeset=',"http://www.genecards.org/index.php?path=/Search/keyword/",row)
+            html[i] = row
+        return html
+
+    cleanup = False
+    if os.path.exists(adir):
+        flist = os.listdir(adir) # get all files created
+        for f in flist:
+           apath = os.path.join(adir,f)
+           dest = os.path.join(destdir,f)
+           if not os.path.isdir(apath):
+               if os.path.splitext(f)[1].lower() == '.html':
+                   html = fixAffycrap(apath)
+                   fixed = open(apath,'w')
+                   fixed.write('\n'.join(html))
+                   fixed.write('\n')
+                   fixed.close()
+               if not os.path.isfile(dest):
+                   shutil.copy(apath,dest)
+           else:
+               fix_subdir(apath,destdir)
+        if cleanup:
+            try:
+                shutil.rmtree(path=adir,ignore_errors=True)
+            except:
+                pass
+
+
+
+def getFileString(fpath, outpath):
+    """
+    format a nice file size string
+    """
+    size = ''
+    fp = os.path.join(outpath, fpath)
+    s = fpath
+    if os.path.isfile(fp):
+        n = float(os.path.getsize(fp))
+        if n > 2**20:
+            size = ' (%1.1f MB)' % (n/2**20)
+        elif n > 2**10:
+            size = ' (%1.1f KB)' % (n/2**10)
+        elif n > 0:
+            size = ' (%d B)' % (int(n))
+        s = '%s %s' % (fpath, size) 
+    return s
+
+class gsea_wrapper:
+    """
+    GSEA java desktop client has a CL interface. CL can be gleaned by clicking the 'command line' button after setting up an analysis
+    We don't want gsea to do the analysis but it can read .rnk files containing rows of identifiers and an evidence weight such as the signed t statistic from limma for differential expression
+(vgalaxy)rlazarus@iaas1:~/public_html/idle_illumina_analysis$ cat gseaHumanREFSEQ.sh 
+#!/bin/bash
+for RNK in `ls *.rnk`
+do
+DIRNAME=${RNK%.*}
+echo $DIRNAME
+qsub -cwd -b y java -Xmx4096m -cp /data/app/bin/gsea2-2.07.jar xtools.gsea.GseaPreranked -gmx ../msigdb.v3.0.symbols.gmt -collapse true -mode Max_probe -norm meandiv 
+-nperm 1000 -rnk $RNK -scoring_scheme weighted -rpt_label $RNK -chip ../RefSeq_human.chip -include_only_symbols true -make_sets true -plot_top_x 20 -rnd_seed timestamp 
+-set_max 500 -set_min 15 -zip_report false -out gseaout/${DIRNAME} -gui false
+done
+    """
+    
+    def __init__(self,myName=None,opts=None):
+        """ setup cl for gsea
+        """
+        self.idcol = 0
+        self.signcol = 0
+        self.adjpvalcol = 0
+        self.progname=myName
+        self.opts = opts
+        remove_duplicates=True
+        if not os.path.isdir(opts.output_dir):
+            try:
+                os.makedirs(opts.output_dir)
+            except:
+                print >> sys.stderr,'##Error: GSEA wrapper unable to create or find output directory %s. Stopping' % (opts.output_dir)
+                sys.exit(1)
+        fakeGMT = re.sub('[^a-zA-Z0-9_]+', '', opts.input_name) # gives a more useful title for the GSEA report
+        fakeGMT = os.path.join(opts.output_dir,fakeGMT)
+        fakeGMT = os.path.abspath(fakeGMT)
+        fakeRanks = '%s.rnk' % fakeGMT
+        if not fakeGMT.endswith('.gmt'):
+            fakeGMT = '%s.gmt' % fakeGMT
+        if opts.builtin_gmt and opts.history_gmt:
+            newfile = open(fakeGMT,'w')
+            subprocess.call(['cat',opts.builtin_gmt,opts.history_gmt],stdout=newfile)
+            newfile.close()
+        elif opts.history_gmt:
+           subprocess.call(['cp',opts.history_gmt,fakeGMT])
+        else:       
+           subprocess.call(['cp',opts.builtin_gmt,fakeGMT])
+        # remove dupes from each gene set
+        gmt = open(fakeGMT,'r').readlines()
+        gmt = [x for x in gmt if len(x.split('\t')) > 3]
+        ugmt = []
+        for i,row in enumerate(gmt):
+            rows = row.rstrip().split('\t')
+            gmtname = rows[0]
+            gmtcomment = rows[1]
+            glist = list(set(rows[2:]))
+            newgmt = [gmtname,gmtcomment]
+            newgmt += glist
+            ugmt.append('\t'.join(newgmt))
+        gmt = open(fakeGMT,'w')
+        gmt.write('\n'.join(ugmt))
+        gmt.write('\n')
+        gmt.close()
+        if opts.input_ranks:
+            infname = opts.input_ranks
+            rdat = open(opts.input_ranks,'r').readlines() # suck in and remove blank ids that cause gsea to barf rml april 10 2012
+            rdat = [x.rstrip().split('\t') for x in rdat[1:]] # ignore head
+            dat = [[x[0],x[1],x[1]] for x in rdat] 
+            # fake same structure as input tabular file
+            try:
+                pvals = [float(x[1]) for x in dat]
+                signs = [float(x[1]) for x in dat]
+            except:
+                print >> sys.stderr, '## error converting floating point - cannot process this input'
+                sys.exit(99)
+        else: # read tabular
+            self.idcol = int(opts.idcol) - 1
+            self.signcol = int(opts.signcol) - 1
+            self.adjpvalcol = int(opts.adjpvalcol) - 1
+            maxcol = max(self.idcol,self.signcol,self.adjpvalcol)
+            infname = opts.input_tab
+            indat = open(opts.input_tab,'r').readlines()
+            dat = [x.rstrip().split('\t') for x in indat[1:]]
+            dat = [x for x in dat if len(x) > maxcol]
+            dat = [[x[self.idcol],x[self.adjpvalcol],x[self.signcol]] for x in dat] # reduce to rank form 
+            pvals = [float(x[1]) for x in dat]
+            outofrange = [x for x in pvals if ((x < 0.0) or (x > 1.0))]
+            assert len(outofrange) == 0, '## p values outside 0-1 encountered - was that the right column for adjusted p value?'
+            signs = [float(x[2]) for x in dat]
+            outofrange = [i for i,x in enumerate(signs) if (not x) and (dat[i][self.signcol] <> '0')]
+            bad = [dat[x][2] for x in outofrange] 
+            assert len(outofrange) == 0, '## null numeric values encountered for sign - was that the right column? %s' % bad 
+        ids = [x[0] for x in dat]
+        res = []
+        self.comments = []
+        useme = []
+        for i,row in enumerate(dat):
+            if row[1].upper() != 'NA' and row[2].upper() != 'NA' and row[0] != '' :
+                useme.append(i)
+        lost = len(dat) - len(useme)
+        if lost <> 0:
+            newdat = [dat[x] for x in useme]
+            del dat
+            dat = newdat  
+            print >> sys.stdout, '## %d lost - NA values or null id' % lost
+        if remove_duplicates:
+            uids = list(set(ids)) # complex procedure to get min pval for each unique id
+            if len(uids) <> len(ids): # dupes - deal with mode
+                print >> sys.stdout,'## Dealing with %d uids in %d ids' % (len(uids),len(ids))
+                ures = {}
+                for i,id in enumerate(ids):
+                    p = pvals[i]
+                    ures.setdefault(id,[])
+                    ures[id].append((p,signs[i]))
+                for id in uids:
+                    tlist = ures[id]
+                    tp = [x[0] for x in tlist]
+                    ts = [x[1] for x in tlist]
+                    if len(tp) == 1:
+                        p = tp[0]
+                        sign = ts[0]
+                    else:
+                        if  opts.mode == "Max_probe":
+                            p = min(tp)
+                            sign = ts[tp.index(p)]
+                        else: # guess median - too bad if even count
+                            tp.sort()
+                            ltp = len(tp)
+                            ind = ltp/2 # yes, this is wrong for evens but what if sign wobbles?
+                            if ltp % 2 == 1: # odd
+                                ind += 1 # take the median                            
+                            p = tp[ind]
+                            sign = ts[ind]
+                        if KEEPSELECTION:
+                              self.comments.append('## for id=%s, got tp=%s, ts=%s, chose p=%f, sign =%f'\
+                                   % (id,str(tp),str(ts),p,sign))
+                    if opts.input_ranks: # must be a rank file
+                        res.append((id,'%f' % p))
+                    else:
+                        if p == 0.0:
+                            p = 1e-99
+                        try:
+                            lp = -math.log10(p) # large positive if low p value
+                        except ValueError:
+                            lp = 0.0
+                        if sign < 0:
+                            lp = -lp # if negative, swap p to negative
+                        res.append((id,'%f' % lp))
+            else: # no duplicates
+                for i,row in enumerate(dat):
+                    (id,p,sign) = (row[0],float(row[1]),float(row[2]))
+                    if opts.input_ranks: # must be a rank file
+                        res.append((id,'%f' % p))
+                    else:
+                        if p == 0.0:
+                            p = 1e-99
+                        try:
+                            lp = -math.log10(p) # large positive if low p value
+                        except ValueError:
+                            lp = 0.0
+                        if sign < 0:
+                            lp = -lp # if negative, swap p to negative
+                        res.append((id,'%f' % lp))
+        else:
+            for i,row in enumerate(dat):
+                (id,p,sign) = (row[0],float(row[1]),float(row[2]))
+                if opts.input_ranks: # must be a rank file
+                    res.append((id,'%f' % p))
+                else:
+                    if p == 0.0:
+                        p = 1e-99
+                    try:
+                        lp = -math.log10(p) # large positive if low p value
+                    except ValueError:
+                        lp = 0.0
+                    if sign < 0:
+                        lp = -lp # if negative, swap p to negative
+                    res.append((id,'%f' % lp))
+        len1 = len(ids)
+        len2 = len(ranks)
+        delta = len1 - len2
+        if delta <> 0:
+            print >> sys.stdout,'NOTE: %d of %d rank input file %s rows deleted - dup, null or NA IDs, pvals or logFCs' % (delta,len1,infname)
+        ranks = [(float(x[1]),x) for x in ranks] # decorate
+        ranks.sort()
+        ranks.reverse()
+        ranks = [x[1] for x in ranks] # undecorate
+        if opts.chip == '': # if mouse - need HUGO
+             ranks = [[x[0].upper(),x[1]] for x in ranks]
+             print >> sys.stdout, '## Fixed any lower case - now have',','.join([x[0] for x in ranks[:5]])
+        ranks = ['\t'.join(x) for x in ranks]
+        if len(ranks) < 2:
+             print >> sys.stderr,'Input %s has 1 or less rows with two tab delimited fields - please check the tool documentation' % infname
+             sys.exit(1)
+        print '### opening %s and writing %s' % (fakeRanks,str(ranks[:10]))
+        rclean = open(fakeRanks,'w')
+        rclean.write('contig\tscore\n')
+        rclean.write('\n'.join(ranks)) 
+        rclean.write('\n')
+        rclean.close()
+        cl = []
+        a = cl.append  
+        a('java -Xmx6G -cp')
+        a(opts.gsea_jar)
+        a('xtools.gsea.GseaPreranked')
+        a('-gmx %s' % fakeGMT) # ensure .gmt extension as required by GSEA - gene sets to use
+        a('-gui false')    # use preranked file mode and no gui
+        a('-make_sets true -rnd_seed timestamp') # more things from the GUI command line display
+        a('-norm meandiv -zip_report false -scoring_scheme weighted')            # ? need to set these? 
+        a('-rnk %s' % fakeRanks) # input ranks file symbol (the chip file is the crosswalk for ids in first column)
+        a('-out %s' % opts.output_dir) 
+        a('-set_max %s' % opts.setMax)
+        a('-set_min %s' % opts.setMin)
+        a('-mode %s' % opts.mode)
+        if opts.chip > '':
+           #a('-chip %s -collapse true -include_only_symbols true' % opts.chip)   
+           a('-chip %s -collapse true' % opts.chip)   
+        else:
+           a("-collapse false") # needed if no chip 
+        a('-nperm %s' % opts.nPerm)
+        a('-rpt_label %s' % opts.title)
+        a('-plot_top_x %s' % opts.plotTop)
+        self.cl = cl
+        self.comments.append('## GSEA command line:')
+        self.comments.append(' '.join(self.cl))
+        self.fakeRanks = fakeRanks
+        self.fakeGMT = fakeGMT
+     
+    def grepIds(self):
+        """
+        """
+        found = []
+        allids = open(self.opts.input_ranks,'r').readlines()
+        allids = [x.strip().split() for x in allids]
+        allids = [x[0] for x in allids] # list of ids
+        gmtpath = os.path.split(self.opts.fakeGMT)[0] # get path to all chip
+
+    def run(self):
+        """
+        
+        """
+        tlog = os.path.join(self.opts.output_dir,"gsea_runner.log")
+        sto = open(tlog,'w')
+        x = subprocess.Popen(' '.join(self.cl),shell=True,stdout=sto,stderr=sto,cwd=self.opts.output_dir)
+        retval = x.wait()
+        sto.close()
+        d = glob.glob(os.path.join(self.opts.output_dir,'%s*' % self.opts.title))
+        if len(d) > 0:
+            fix_subdir(d[0],self.opts.output_dir)       
+        htmlfname = os.path.join(self.opts.output_dir,'index.html')     
+        try:
+            html = open(htmlfname,'r').readlines()
+            html = [x.strip() for x in html if len(x.strip()) > 0]
+            if len(self.comments) > 0:
+                s = ['<pre>']
+                s += self.comments
+                s.append('</pre>')
+                try:
+                    i = html.index('<div id="footer">')
+                except:
+                    i = len(html) - 7 # fudge
+                html = html[:i] + s + html[i:]
+        except:
+            html = []
+            htmlhead = '<html><head></head><body>'
+            html.append('## Galaxy GSEA wrapper failure')
+            html.append('## Unable to find index.html in %s - listdir=%s' % (d,' '.join(os.listdir(self.opts.output_dir))))
+            html.append('## Command line was %s' % (' '.join(self.cl)))
+            html.append('## commonly caused by mismatched ID/chip selection')
+            glog = open(os.path.join(self.opts.output_dir,'gsea_runner.log'),'r').readlines()
+            html.append('## gsea_runner.log=%s' % '\n'.join(glog))
+            #tryme = self.grepIds()
+            retval = 1
+            print >> sys.stderr,'\n'.join(html)
+            html = ['%s<br/>' % x for x in html]
+            html.insert(0,htmlhead)
+            html.append('</body></html>')
+        htmlf = file(self.opts.outhtml,'w')
+        htmlf.write('\n'.join(html))
+        htmlf.write('\n')
+        htmlf.close()
+        os.unlink(self.fakeRanks)
+        os.unlink(self.fakeGMT)
+        if opts.outtab_neg:
+            tabs = glob.glob(os.path.join(opts.output_dir,"gsea_report_for_*.xls"))
+            if len(tabs) > 0:
+                for tabi,t in enumerate(tabs):
+                    tkind = os.path.basename(t).split('_')[4].lower()
+                    if tkind == 'neg':
+                       outtab = opts.outtab_neg
+                    elif tkind == 'pos':
+                       outtab = opts.outtab_pos
+                    else:
+                       print >> sys.stderr, '## tab file matched %s which is not "neg" or "pos" in 4th segment %s' % (t,tkind)
+                       sys.exit()
+                    content = open(t).readlines()
+                    tabf = open(outtab,'w')
+                    tabf.write(''.join(content))
+                    tabf.close()
+            else:
+                print >> sys.stdout, 'Odd, maketab = %s but no matches - tabs = %s' % (makeTab,tabs)
+        return retval
+        
+
+if __name__ == "__main__":
+    """ 
+    called as:
+   <command interpreter="python">rgGSEA.py --input_ranks "$input1"  --outhtml "$html_file"
+       --setMax "$setMax" --setMin "$setMin" --nPerm "$nPerm" --plotTop "$plotTop" --gsea_jar "$GALAXY_DATA_INDEX_DIR/shared/jars/gsea2-2.07.jar" 
+       --output_dir "$html_file.files_path" --use_gmt ""${use_gmt.fields.path}"" --chip "${use_chip.fields.path}"
+  </command>
+    """
+    op = optparse.OptionParser()
+    a = op.add_option
+    a('--input_ranks',default=None)
+    a('--input_tab',default=None)
+    a('--input_name',default=None)
+    a('--use_gmt',default=None)
+    a('--history_gmt',default=None)
+    a('--builtin_gmt',default=None)
+    a('--history_gmt_name',default=None)
+    a('--setMax',default="500")
+    a('--setMin',default="15")
+    a('--nPerm',default="1000") 
+    a('--title',default="GSEA report") 
+    a('--chip',default='')
+    a('--plotTop',default='20')
+    a('--outhtml',default=None)
+    a('--makeTab',default=None)
+    a('--output_dir',default=None)
+    a('--outtab_neg',default=None)
+    a('--outtab_pos',default=None)
+    a('--adjpvalcol',default=None)
+    a('--signcol',default=None)
+    a('--idcol',default=None)
+    a('--mode',default='Max_probe')
+    a('-j','--gsea_jar',default='/usr/local/bin/gsea2-2.07.jar')
+    opts, args = op.parse_args() 
+    assert os.path.isfile(opts.gsea_jar),'## GSEA runner unable to find supplied gsea java desktop executable file %s' % opts.gsea_jar
+    if opts.input_ranks:
+        inpf = opts.input_ranks
+    else:
+        inpf = opts.input_tab
+        assert opts.idcol <> None, '## GSEA runner needs an id column if a tabular file provided'
+        assert opts.signcol <> None, '## GSEA runner needs a sign column if a tabular file provided'
+        assert opts.adjpvalcol <> None, '## GSEA runner needs an adjusted p value column if a tabular file provided'
+    assert os.path.isfile(inpf),'## GSEA runner unable to open supplied input file %s' % inpf
+    if opts.chip > '':
+        assert os.path.isfile(opts.chip),'## GSEA runner unable to open supplied chip file %s' % opts.chip
+    some = None
+    if opts.history_gmt <> None:
+        some = 1
+        assert os.path.isfile(opts.history_gmt),'## GSEA runner unable to open supplied history gene set matrix (.gmt) file %s' % opts.history_gmt
+    if opts.builtin_gmt <> None:
+        some = 1
+        assert os.path.isfile(opts.builtin_gmt),'## GSEA runner unable to open supplied history gene set matrix (.gmt) file %s' % opts.builtin_gmt
+    assert some, '## GSEA runner needs a gene set matrix file - none chosen?'
+    opts.title = re.sub('[^a-zA-Z0-9_]+', '', opts.title)
+    myName=os.path.split(sys.argv[0])[-1]
+    gse = gsea_wrapper(myName, opts=opts)
+    retcode = gse.run()
+    if retcode <> 0:
+        sys.exit(retcode) # indicate failure to job runner
+    
+    
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/rgGSEAcolumns.xml	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,834 @@
+<tool id="rgGSEAcolumns" name="Gene set enrichment" version="0.05">
+  <description>using a generic tabular file</description>
+  <requirements>
+      <requirement type="package" version="2.0.12">gsea_jar</requirement>
+      <requirement type="set_environment">GSEAJAR_PATH</requirement>
+  </requirements>
+  <command interpreter="python">rgGSEA.py --input_tab "$input1"  --adjpvalcol "$adjpvalcol" --signcol "$signcol" 
+       --idcol "$idcol" --outhtml "$html_file" --input_name "${input1.name}"
+       --setMax "$setMax" --setMin "$setMin" --nPerm "$nPerm" --plotTop "$plotTop" 
+       --gsea_jar "\$GSEAJAR_PATH" 
+       --output_dir "$html_file.files_path" --mode "$mode" --title "$title"
+#if $makeTab.value=='Yes'
+ --outtab_pos "$outtab_pos" --outtab_neg "$outtab_neg"
+#end if
+#if $gmtSource.refgmtSource == "indexed" or $gmtSource.refgmtSource == "both":
+--builtin_gmt "${gmtSource.builtinGMT.fields.path}"
+#end if
+#if $gmtSource.refgmtSource == "history" or $gmtSource.refgmtSource == "both":
+--history_gmt "${gmtSource.ownGMT}" --history_gmt_name "${gmtSource.ownGMT.name}"
+#end if
+#if $chipSource.refchipSource=="builtin"
+ --chip "${chipSource.builtinChip.fields.path}"
+#end if
+#if $chipSource.refchipSource=="history"
+ --chip "${chipSource.ownChip}"
+#end if
+</command>
+  <inputs>
+    <param name="input1"  type="data" format="tabular" label="Select a tab delimited file with a probe id, adjusted p value and a signed weight (eg t-test statistic) on each row"
+       help=""/>
+    <param name="adjpvalcol" label="Column containing a p value for the DEG statistical test" 
+              help = "Use RAW p-values - not FDR adjusted as these have a non GSEA friendly non-uniform distribution"
+              type="data_column"  data_ref="input1" numerical="True" 
+              multiple="false" use_header_names="true" size="5">
+        <validator type="no_options" message="Please select a p value column."/>
+    </param>
+    <param name="signcol" label="Column containing the DE sign - eg log fold change so positive/negative values = upregulated/downregulated in treatment" 
+         type="data_column"  data_ref="input1" numerical="True" 
+         multiple="false" use_header_names="true" size="5">
+        <validator type="no_options" message="Please select a sign column."/>
+    </param>
+    <param name="idcol" label="Column containing a gene id (refseq, symbol or Entrez" 
+         type="data_column"  data_ref="input1" numerical="False" 
+         multiple="false" use_header_names="true" size="5">
+        <validator type="no_options" message="Please select an id  column."/>
+    </param>
+
+    <param name="title" type="text" value="GSEA" size="80" label="Title for job outputs" help="Supply a meaningful name here to remind you what the outputs contain"/>
+    <param name="setMin" type="integer" label="Minimum gene set size to prune (default=15)" size="5" value="15"/>
+    <param name="setMax" type="integer" label="Maximum gene set size to prune (default=500)" size="5" value="500"/>
+    <param name="nPerm" type="integer" label="Number of permutations (default=1000)" size="7" value="1000"/>
+    <param name="plotTop" type="integer" label="Number of top gene sets to plot and present in detailed reports(default=20)" size="10" value="20"/>
+    <param name="mode" type="select" label="Mode for dealing with duplicated gene ids" >
+        <option value="Max_probe" selected="true">Use the most extreme value</option>
+        <option value="Median_of_probes">Use the median of all supplied values</option>
+    </param>
+    <param name="makeTab" type="select" label="Create a tabular report containing ALL gene sets for downstream analysis" >
+        <option value="Yes">Yes</option>
+        <option value="No" selected="true">No</option>
+    </param>
+    <conditional name="chipSource" >
+        <param name="refchipSource" type="select" label="Translate the rank file IDs (first column) using a GSEA 'chip' lookup table">
+        <option value="builtin">Use a builtin GSEA 'chip' file</option>
+        <option value="history">Use one of the GSEA 'chip' files in my history</option>
+        <option value="no" selected="true">IDs are already gene symbols - no translation needed  </option>
+        </param>
+        <when value="no">
+        </when>
+        <when value="builtin">
+           <param name="builtinChip" type="select" label="Select a GSEA 'chip' to map each probe id in the input file to a gene symbol">
+              <options from_data_table="gseaChip_3.1">
+              <filter type="sort_by" column="2" />
+              <validator type="no_options" message="No chip tables are available - please see the Galaxy GSEA tool documentation for instructions on installing them" />
+              </options>
+           </param>
+        </when>
+      <when value="history">
+        <param name="ownChip" type="data" format="gseachip" label="Select an existing gseachip filefrom your history. Probe_id matching ids in your input file and a gene_symbol must be the first 2 tabular columns. Header row required."
+           help='see docs at http://www.broadinstitute.org/cancer/software/gsea/wiki/index.php/Data_formats#CHIP:_Chip_file_format_.28.2A.chip.29'>
+            <validator type="no_options" message="Need a gseachip datatype - tabular file, probe_id gene_symbol as first 2 columns. Header row required. Convert datatypes (pencil icon) of existing history tabular files if necessary"/>
+        </param>
+      </when>
+    </conditional>
+    <conditional name="gmtSource">
+      <param name="refgmtSource" type="select" label="Use a gene set (.gmt) from your history or use a built-in (MSigDB etc) gene set">
+        <option value="indexed" selected="true">Use a built-in gene set</option>
+        <option value="history">Use a gene set from my history</option>
+        <option value="both">Add a gene set from my history to a built in gene set</option>
+      </param>
+      <when value="indexed">
+        <param name="builtinGMT" type="select" label="Select a gene set matrix (.gmt) file to use for the analysis">
+          <options from_data_table="gseaGMT_3.1">
+            <filter type="sort_by" column="2" />
+            <validator type="no_options" message="No GMT v3.1 files are available - please install them"/>
+          </options>
+        </param>
+      </when>
+      <when value="history">
+        <param name="ownGMT" type="data" format="gmt" label="Select a Gene Set from your history" />
+      </when>
+      <when value="both">
+        <param name="ownGMT" type="data" format="gseagmt" label="Select a Gene Set from your history" />
+        <param name="builtinGMT" type="select" label="Select a gene set matrix (.gmt) file to use for the analysis">
+          <options from_data_table="gseaGMT_3.1">
+            <filter type="sort_by" column="2" />
+            <validator type="no_options" message="No GMT v3.1 files are available - please install them and make sure they match [tool-data]/gseaGMT_3.1.loc, editing as needed"/>
+          </options>
+        </param>
+       </when>
+    </conditional>
+  </inputs>
+  <outputs>
+    <data format="html" name="html_file" label="${title}.html"/>
+    <data format="tabular" name="outtab_pos"  label="${title}_pos_allsets.xls">
+    <filter>makeTab=="Yes"</filter>
+    </data>
+    <data format="tabular" name="outtab_neg" label="${title}_neg_allsets.xls">
+    <filter>makeTab=="Yes"</filter>
+    </data>
+  </outputs>
+  <tests>
+  <test>
+      <param name="input1" value="gsea_test_DGE.xls"/>
+      <param name="ownGMT" value="gsea_test_DGE.xls"/>
+      <param name="adjpvalcol" value="5"/>
+      <param name="signcol" value="2"/>
+      <param name="idcol" value="1"/>
+      <param name="plotTop" value="2"/>
+      <param name="makeTab" value="No"/>
+      <param name="refchipSource" value="no"/>
+      <param name="refgmtSource" value="history"/>
+      <param name="html_file" value="gseatestout.html">
+         <assert_contents>
+              <has_text text="GSEA Report for Dataset" />
+              <has_text text="enrichment results in html"/>
+         </assert_contents>
+      </param>
+      <param name="setMax" value="500"/>
+      <param name="setMin" value="15"/>
+      <param name="nPerm" value="100"/>
+      <param name="output_dir" value="gseatestout"/>
+      <param name="mode" value="Max_probe"/>
+      <param name="title" value="GSEA test"/>
+      <param name="builtin_gmt" value="gseatestdata.gmt"/>
+  </test>
+  </tests>
+<help>
+**What it does**
+
+Performs Gene set enrichment analysis using GSEA_ from the Broad as described in 2005Paper_ and v3.1 of msigdb
+
+Refer to http://www.pnas.org/cgi/content/abstract/0506580102v1 for details of the method.
+
+**Input**
+
+A tabular file with a header row and some columns containing probe ids or gene names; a p value or t-test statistic reflecting the
+strength and a signed quantity such as log fold change or a t-test statistic reflecting the direction of differential gene expression from edgeR for counts
+or some other valid analysis.
+Probe names can be translated using the chip file option (see below)
+A filter has been added to remove NA and null id rows as these can't be used. A summary will appear in stdout in the page linked from the "i" (info) button for the output
+
+**Gene sets**
+
+If you have your own gene sets as .gmt files (see GUIDE_ for details of format) upload them in your history and use them by nominating a history sourced gmt.
+
+Alternatively, use one of the built in MSigDB_ (molecular signatures database) sets. 
+There may be additional locally provided sets such as starBase
+
+Optionally, a local gmt can be merged with a built in one if you want to see how they perform competitively
+
+Select the most appropriate subset of MSigDB gene sets or use all by choosing msigdb.v3.0.symbols.
+A non-cancer subset called c2_c3_c5_all.v3.0.symbols is recommended if you are working with non-cancer biology.
+ 
+
+**Chip**
+
+If your input file contains HUGO gene symbols (TEK, SLC38A1...etc) then you do not need to specify a 'chip'.
+
+GSEA software allows you to specify a translation table from common microarray probe IDs to gene symbols - select the option to use a chip file and choose the one that matches your probe id's
+Failure to match the translation correctly will generally result in failure of the job since none of your input data will be translated properly.
+
+**Output**
+
+A report as html - see the GUIDE_ for a guide on interpretation
+
+
+**Attribution**
+
+This Galaxy tool wrapper was written by Ross Lazarus.
+It executes the GSEA_ java application available using MSigDB and Chip files obtained from the GSEA_ web site 
+
+
+**Chip ID samples**
+ 
+You may be able to look for probe ids in similar form to the ones you have in the list below to find the correct GSEA 'chip' file if you do not have HUGO gene symbols
+
+    ::
+   
+        AG.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        11986_at        ---     calcium-dependent lipid-binding protein, putative
+        11987_at        ---     zinc finger (C3HC4-type RING finger) family protein
+        11988_at        ---     WD-40 repeat family protein
+
+        Agilent_Human1A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_23_P100001    LOC400451       hypothetical gene supported by AK075564; BC060873
+        A_23_P100011    AP3S2   adaptor-related protein complex 3, sigma 2 subunit
+        A_23_P10002     CEP63   centrosome protein Cep63
+
+        Agilent_Human1Av2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_23_P100001    LOC400451       hypothetical gene supported by AK075564; BC060873
+        A_23_P100011    AP3S2   adaptor-related protein complex 3, sigma 2 subunit
+        A_23_P10002     CEP63   centrosome protein Cep63
+
+        Agilent_Human1B.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_32_P10002     TUBA2   tubulin, alpha 2
+        A_32_P100076    RPL19   ribosomal protein L19
+        A_32_P100100    THOC3   THO complex 3
+
+        Agilent_Human1_cDNA.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1       RNASEH2A        ribonuclease H2, large subunit
+        10      SF3B1   splicing factor 3b, subunit 1, 155kDa
+        100     S100A16 S100 calcium binding protein A16
+
+        Agilent_HumanGenome.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_23_P100001    LOC400451       hypothetical gene supported by AK075564; BC060873
+        A_23_P100011    NULL    NULL
+        A_23_P100022    SV2B    synaptic vesicle glycoprotein 2B
+
+        Agilent_Mouse_cDNA.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1000982 SLC6A9  solute carrier family 6 (neurotransmitter transporter, glycine), member 9
+        1001007 IGF1    insulin-like growth factor 1
+        1001011 FCNA    ficolin A
+
+        Agilent_MouseDev.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_65_P00523     NULL    NULL
+        A_65_P00524     NULL    NULL
+        A_65_P00525     SFTPD   surfactant associated protein D
+
+        Agilent_MouseGenome.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_51_P100021    NULL    NULL
+        A_51_P100034    2310075G12RIK   RIKEN cDNA 2310075G12 gene
+        A_51_P100052    SLITRK2 SLIT and NTRK-like family, member 2
+
+        Agilent_MouseOligo.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_51_P100021    NULL    NULL
+        A_51_P100034    2310075G12RIK   RIKEN cDNA 2310075G12 gene
+        A_51_P100052    SLITRK2 SLIT and NTRK-like family, member 2
+
+        Agilent_RatGenome_G4131A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_42_P453055    LU      Lutheran blood group (Auberger b antigen included)
+        A_42_P453737    NULL    NULL
+        A_42_P453894    RGD1306682_PREDICTED    similar to RIKEN cDNA 1810046J19 (predicted)
+
+        Agilent_RatOligo.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_42_P453131    CNTN1   contactin 1
+        A_42_P453151    TTC8_PREDICTED  tetratricopeptide repeat domain 8 (predicted)
+        A_42_P453162    NULL    NULL
+
+        APPLERA_ABI1700.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        100002  NULL    NULL
+        100003  NULL    NULL
+        100027  ZNF192  zinc finger protein 192
+
+        ATH1_121501.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        244901_at       ---     ---
+        244902_at       ---     ---
+        244903_at       ---     ---
+
+        AtlasMouse1.2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        MA099   HTR1A   5-hydroxytryptamine (serotonin) receptor 1A
+        MA015   JARID2  jumonji, AT rich interactive domain 2
+        M443    CDKN2C  cyclin-dependent kinase inhibitor 2C (p18, inhibits CDK4)
+
+        AtlasRat1.2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        R484    TPP2    tripeptidylpeptidase II
+        RG348   MOS     v-mos moloney murine sarcoma viral oncogene homolog
+        RG119   KCNJ1   potassium inwardly-rectifying channel, subfamily J, member 1
+
+        Bovine.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-BioB-3_at  ---     ---
+        AFFX-BioB-5_at  ---     ---
+        AFFX-BioB-M_at  ---     ---
+
+        Caltech16KMouse.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        6712    CCL6    chemokine (C-C motif) ligand 6
+        8563    ACTL7B  actin-like 7b
+        8434    1700049M11RIK   RIKEN cDNA 1700049M11 gene
+
+        Caltech16KOligoMouse.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        6712    GCA     grancalcin, EF-hand calcium binding protein
+        8563    MARVELD2        MARVEL (membrane-associating) domain containing 2
+        8434    BC048825        NULL
+
+        Canine_2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-BioB-3_at  ---     ---
+        AFFX-BioB-5_at  ---     ---
+        AFFX-BioB-M_at  ---     ---
+
+        Clontech_Atlas_13K.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-A01   NULL    NULL
+        1-A02   A2M     alpha-2-macroglobulin
+        1-A03   AADAC   arylacetamide deacetylase (esterase)
+
+        Clontech_BD_Atlas.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A01a    PCP4    Purkinje cell protein 4
+        A01b    NULL    NULL
+        A01c    PMP22   peripheral myelin protein
+
+        CNMCMuscleChip.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        HSPD4570_at     MBP     myelin basic protein
+        HSPD7328_at     MAPK12  mitogen-activated protein kinase 12
+        HSPD17028_i_at  DIA1    diaphorase (NADH) (cytochrome b-5 reductase)
+
+        CodeLink_Human_Whole_Genome.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        GE469530        NULL    NULL
+        GE469548        TMEM1   transmembrane protein 1
+        GE469549        NULL    NULL
+
+        CodeLink_UniSet_Human_20K_I_Bioarray.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        000106CB1_PROBE1        NDUFA4  NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa
+        000136CB1_PROBE1        MRPS33  mitochondrial ribosomal protein S33
+        000278CB1_PROBE1        FDFT1   farnesyl-diphosphate farnesyltransferase 1
+
+        CodeLink_UniSet_Human_I_Bioarray.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AA001334_PROBE1 ZHX2    zinc fingers and homeoboxes 2
+        AA002191_PROBE1 PITPNA  phosphatidylinositol transfer protein, alpha
+        AA004381_PROBE1 NULL    NULL
+
+        CodeLink_UniSet_Human_II_Bioarray.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        000106CB1_PROBE1        NDUFA4  NADH dehydrogenase (ubiquinone) 1 alpha subcomplex, 4, 9kDa
+        000136CB1_PROBE1        MRPS33  mitochondrial ribosomal protein S33
+        000278CB1_PROBE1        FDFT1   farnesyl-diphosphate farnesyltransferase 1
+
+        CodeLink_UniSet_Rat_I_Bioarray.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AA799301_PROBE1 NULL    NULL
+        AA799313_PROBE1 RGD:1303279     sialyltransferase 10 (alpha-2,3-sialyltransferase VI)
+        AA799329_PROBE1 NULL    NULL
+
+        DrosGenome1.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        141200_at       CG9418  CG9418
+        141201_at       CG17840 CG17840
+        141202_at       QKR58E-3        quaking related 58E-3
+
+        Drosophila_2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1616608_a_at    GPDH    Glycerol 3 phosphate dehydrogenase
+        1622892_s_at    CG33057 /// MKG-P       CG33057 /// monkey king protein
+        1622893_at      IM3 /// RPS10B  Immune induced molecule 3 /// Ribosomal protein S10b
+
+        G4110A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_23_P7033      MAGEF1  melanoma antigen, family F, 1
+        A_23_P170713    A_23_P170713    ***description missing***
+        A_23_P107801    FLJ21742        hypothetical protein FLJ21742
+
+        G4110Av2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A_23_P7033      MAGEF1  melanoma antigen, family F, 1
+        A_23_P170713    A_23_P170713    No description available
+        A_23_P107801    FLJ21742        hypothetical protein FLJ21742
+
+        GENE_SYMBOL.chip 
+        Probe Set ID    Gene Symbol     Gene Title      Aliases 
+        A1BG    A1BG    alpha-1-B glycoprotein  GABDKFZP686F0970ABGHYST2477A1B
+        A2M     A2M     alpha-2-macroglobulin   DKFZP779B086S863-7ALPHA 2MFWP007CPAMD5
+        A2ML1   A2ML1   alpha-2-macroglobulin-like 1    FLJ39129DKFZP686O1010FLJ41598DKFZP686G1812FLJ25179CPAMD9DKFZP686D2011FLJ16045FLJ41607DKFZP686C1729FLJ41597DKFZP686L1821
+
+        GenosysCytokineV2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        M05.2   GDF11   growth differentiation factor 11
+        M22.2   AE000170        No description available
+        E06.3   IL5     interleukin 5 (colony-stimulating factor, eosinophil)
+
+        HC_G110.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1000_at MAPK3   mitogen-activated protein kinase 3
+        1001_at TIE1    tyrosine kinase with immunoglobulin-like and EGF-like domains 1
+        1002_f_at       CYP2C19 cytochrome P450, family 2, subfamily C, polypeptide 19
+
+        HG_Focus.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1007_s_at       DDR1    discoidin domain receptor family, member 1
+        1053_at RFC2    replication factor C (activator 1) 2, 40kDa
+        117_at  HSPA6 /// LOC652878     heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
+
+        HG_U133A_2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1007_s_at       DDR1    discoidin domain receptor family, member 1
+        1053_at RFC2    replication factor C (activator 1) 2, 40kDa
+        117_at  HSPA6 /// LOC652878     heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
+
+        HG_U133AAofAv2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1007_s_at       DDR1    discoidin domain receptor family, member 1
+        1053_at RFC2    replication factor C (activator 1) 2, 40kDa
+        117_at  HSPA6 /// LOC652878     heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
+
+        HG_U133A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1007_s_at       DDR1    discoidin domain receptor family, member 1
+        1053_at RFC2    replication factor C (activator 1) 2, 40kDa
+        117_at  HSPA6 /// LOC652878     heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
+
+        HG_U133B.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        200000_s_at     PRPF8   PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae) /// PRP8 pre-mRNA processing factor 8 homolog (S. cerevisiae)
+        200001_at       CAPNS1  calpain, small subunit 1 /// calpain, small subunit 1
+        200002_at       RPL35   ribosomal protein L35 /// ribosomal protein L35
+
+        HG_U133_Plus_2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1007_s_at       DDR1    discoidin domain receptor family, member 1
+        1053_at RFC2    replication factor C (activator 1) 2, 40kDa
+        117_at  HSPA6 /// LOC652878     heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
+
+        HG_U95Av2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1000_at MAPK3   mitogen-activated protein kinase 3
+        1001_at TIE1    tyrosine kinase with immunoglobulin-like and EGF-like domains 1
+        1002_f_at       CYP2C19 cytochrome P450, family 2, subfamily C, polypeptide 19
+
+        HG_U95B.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        41880_at        ---     Transcribed locus
+        41881_at        FLJ40142        FLJ40142 protein
+        41882_at        FBXO42  F-box protein 42
+
+        HG_U95C.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        48609_r_at      KIAA1333        KIAA1333
+        48610_at        C20ORF102       chromosome 20 open reading frame 102
+        48612_at        N4BP1 /// LOC653213     Nedd4 binding protein 1 /// similar to Nedd4 binding protein 1
+
+        HG_U95D.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        67020_at        ---     Transcribed locus
+        67021_at        FAM44B  Family with sequence similarity 44, member B
+        67023_at        ---     Transcribed locus
+
+        HG_U95E.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        67022_at        PIP5K2B Phosphatidylinositol-4-phosphate 5-kinase, type II, beta
+        67024_at        CASD1   CAS1 domain containing 1
+        67026_at        NFASC   neurofascin homolog (chicken)
+
+        HPCGGCompugenAnnotations.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        MGI:1913066     SH3MD2  Sh3md2, SH3 multiple domains 2
+        MGI:1913099     5430413I02RIK   5430413I02Rik, RIKEN cDNA 5430413I02 gene
+        MGI:98848       TSHB    Tshb, thyroid stimulating hormone, beta subunit
+
+        HT_HG_U133A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1007_s_at       DDR1    discoidin domain receptor family, member 1
+        1053_at RFC2    replication factor C (activator 1) 2, 40kDa
+        117_at  HSPA6 /// LOC652878     heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
+
+        Hu35KsubA.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AA000993_at     PRDM8   PR domain containing 8
+        AA001296_s_at   PHF23   PHD finger protein 23
+        AA002245_at     ZC3H11A zinc finger CCCH-type containing 11A
+
+        Hu35KsubB.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-BioB-3_at  ---     ---
+        AFFX-BioB-3_st  ---     ---
+        AFFX-BioB-5_at  ---     ---
+
+        Hu35KsubC.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-BioB-3_at  ---     ---
+        AFFX-BioB-3_st  ---     ---
+        AFFX-BioB-5_at  ---     ---
+
+        Hu35KsubD.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-BioB-3_at  ---     ---
+        AFFX-BioB-3_st  ---     ---
+        AFFX-BioB-5_at  ---     ---
+
+        Hu6800.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A28102_at       GABRA3  gamma-aminobutyric acid (GABA) A receptor, alpha 3
+        AB000114_at     OMD     osteomodulin
+        AB000115_at     IFI44L  interferon-induced protein 44-like
+
+        Illumina_Human.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-A-1   BCAP31  B-cell receptor-associated protein 31
+        1-A-10  NSFL1C  NSFL1 (p97) cofactor (p47)
+        1-A-11  C20ORF24        chromosome 20 open reading frame 24
+
+        ilmn_HumanHT_12_V4_0_R1_15002873_B.chip 
+        Probe Set ID    Gene Symbol     Gene Title      Entrez Gene ID  
+        ILMN_1725881    LOC23117        PREDICTED: Homo sapiens KIAA0220-like protein, transcript variant 11 (LOC23117), mRNA.  23117
+        ILMN_1910180            Homo sapiens cDNA: FLJ21027 fis, clone CAE07110 -999
+        ILMN_1804174    FCGR2B  PREDICTED: Homo sapiens Fc fragment of IgG, low affinity IIb, receptor (CD32) (FCGR2B), mRNA.   2213
+
+        ilmn_MouseRef_8_V2_0_R3_11278551_A.chip 
+        Probe Set ID    Gene Symbol     Gene Title      Entrez Gene ID  
+        ILMN_2607609    YIF1B   Mus musculus Yip1 interacting factor homolog B (S. cerevisiae) (Yif1b), mRNA.   77254
+        ILMN_1238674    2700007P21RIK   Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA.    212772
+        ILMN_3062534    2700007P21RIK   Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA.    212772
+
+        ilmn_MouseWG_6_V2_0_R3_11278593_A.chip 
+        Probe Set ID    Gene Symbol     Gene Title      Entrez Gene ID  
+        ILMN_1243094    THRSP   NULL    -999
+        ILMN_1238674    2700007P21RIK   Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA.    212772
+        ILMN_2454720    2700007P21RIK   Mus musculus RIKEN cDNA 2700007P21 gene (2700007P21Rik), transcript variant 2, mRNA.    212772
+
+        labonweb_human.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-A1    GAPD    glyceraldehyde-3-phosphate dehydrogenase
+        1-A10   BMP5    bone morphogenetic protein 5
+        1-A11   C9ORF78 chromosome 9 open reading frame 78
+
+        lymphochip.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1317148 TNF     tumor necrosis factor (TNF superfamily, member 2)
+        814251  SLAMF1  signaling lymphocytic activation molecule family member 1
+        712899___1      AA282233        zt12d02.s1 NCI_CGAP_GCB1 Homo sapiens cDNA clone
+
+        MG_U74Av2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        100001_at       CD3G    CD3 antigen, gamma polypeptide
+        100002_at       ITIH3   inter-alpha trypsin inhibitor, heavy chain 3
+        100003_at       RYR1    ryanodine receptor 1, skeletal muscle
+
+        MG_U74Bv2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        104769_at       LIMA1   LIM domain and actin binding 1
+        104770_at       ---     16 days neonate heart cDNA, RIKEN full-length enriched library, clone:D830033B01 product:unclassifiable, full insert sequence
+        104771_at       RAC2    RAS-related C3 botulinum substrate 2
+
+        MG_U74Cv2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        128520_at       CCDC97  coiled-coil domain containing 97
+        128523_at       A730063M14RIK   RIKEN cDNA A730063M14 gene
+        128529_at       A930009G19RIK   RIKEN cDNA A930009G19 gene
+
+        MOE430A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1415670_at      COPG    coatomer protein complex, subunit gamma
+        1415671_at      ATP6V0D1        ATPase, H+ transporting, lysosomal V0 subunit D1
+        1415672_at      GOLGA7  golgi autoantigen, golgin subfamily a, 7
+
+        MOE430B.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1415670_at      COPG    coatomer protein complex, subunit gamma
+        1415671_at      ATP6V0D1        ATPase, H+ transporting, lysosomal V0 subunit D1
+        1415672_at      GOLGA7  golgi autoantigen, golgin subfamily a, 7
+
+        Mouse430_2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1415670_at      COPG    coatomer protein complex, subunit gamma
+        1415671_at      ATP6V0D1        ATPase, H+ transporting, lysosomal V0 subunit D1
+        1415672_at      GOLGA7  golgi autoantigen, golgin subfamily a, 7
+
+        Mouse430A_2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1415670_at      COPG    coatomer protein complex, subunit gamma
+        1415671_at      ATP6V0D1        ATPase, H+ transporting, lysosomal V0 subunit D1
+        1415672_at      GOLGA7  golgi autoantigen, golgin subfamily a, 7
+
+        Mu11KsubA.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        aa000148_s_at   NIP7    nuclear import 7 homolog (S. cerevisiae)
+        AA000151_at     1200011I18RIK   RIKEN cDNA 1200011I18 gene
+        aa000380_s_at   TARDBP  TAR DNA binding protein
+
+        Mu11KsubB.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-18SRNAMur/X00686_3_at      ---     ---
+        AFFX-18SRNAMur/X00686_5_at      ---     ---
+        AFFX-18SRNAMur/X00686_M_at      ---     ---
+
+        Mu19KsubA.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-18SRNAMur/X00686_3_at      ---     ---
+        AFFX-18SRNAMur/X00686_5_at      ---     ---
+        AFFX-18SRNAMur/X00686_M_at      ---     ---
+
+        Mu19KsubB.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-18SRNAMur/X00686_3_at      ---     ---
+        AFFX-18SRNAMur/X00686_5_at      ---     ---
+        AFFX-18SRNAMur/X00686_M_at      ---     ---
+
+        Mu19KsubC.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-18SRNAMur/X00686_3_at      ---     ---
+        AFFX-18SRNAMur/X00686_5_at      ---     ---
+        AFFX-18SRNAMur/X00686_M_at      ---     ---
+
+        MWG_Human_30K_A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-A1    IFNA8   interferon, alpha 8
+        1-A10   AGL     amylo-1, 6-glucosidase, 4-alpha-glucanotransferase (glycogen debranching enzyme, glycogen storage disease type III)
+        1-A11   NULL    NULL
+
+        MWG_Human_30K_B.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-A10   ADAM11  a disintegrin and metalloproteinase domain 11
+        1-A11   NULL    NULL
+        1-A12   MAST3   microtubule associated serine/threonine kinase 3
+
+        Netherland_cancer_institute_operon_human_35k.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        H200001046      ZZZ3    zinc finger, ZZ domain containing 3 [Homo sapiens]. [Source:RefSeq;Acc:NM_015534]
+        H200011098      ZZEF1   zinc finger, ZZ-type with EF hand domain 1 [Homo sapiens]. [Source:RefSeq;Acc:NM_015113]
+        H200006223      ZYX     Zyxin (Zyxin 2). [Source:Uniprot/SWISSPROT;Acc:Q15942]
+
+        Netherland_cancer_institute_operon_mouse_FOOk.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        M300012631      ZZEF1   NULL
+        M300012632      ZZEF1   NULL
+        M200002019      ZYX     Zyxin. [Source:Uniprot/SWISSPROT;Acc:Q62523]
+
+        NIA15k.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        H3051B03        BG067146        H3051B03-3 NIA Mouse 15K cDNA Clone Set Mus musculus cDNA
+        H3067H02        BG068648        H3067H02-3 NIA Mouse 15K cDNA Clone Set Mus musculus cDNA
+        H3121E03        AK029878        NULL
+
+        OPERON_HUMANv2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-A01   NULL    NULL
+        1-A02   NULL    NULL
+        1-A03   NAT2    N-acetyltransferase 2 (arylamine N-acetyltransferase)
+
+        OPERON_HUMANv3.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-A03   TSPAN6  tetraspanin 6
+        1-A04   AK2     adenylate kinase 2
+        1-A05   NULL    NULL
+
+        RAE230A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1367452_at      SUMO2   SMT3 suppressor of mif two 3 homolog 2 (yeast)
+        1367453_at      CDC37   cell division cycle 37 homolog (S. cerevisiae)
+        1367454_at      COPB2   coatomer protein complex, subunit beta 2 (beta prime)
+
+        RAE230B.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1367452_at      SUMO2   SMT3 suppressor of mif two 3 homolog 2 (yeast)
+        1367453_at      CDC37   cell division cycle 37 homolog (S. cerevisiae)
+        1367454_at      COPB2   coatomer protein complex, subunit beta 2 (beta prime)
+
+        Rat230_2.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1367452_at      SUMO2   SMT3 suppressor of mif two 3 homolog 2 (yeast)
+        1367453_at      CDC37   cell division cycle 37 homolog (S. cerevisiae)
+        1367454_at      COPB2   coatomer protein complex, subunit beta 2 (beta prime)
+
+        RefSeq_human.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        NM_030625       CXXC6   CXXC finger 6
+        NM_181776       SLC36A2 solute carrier family 36 (proton/amino acid symporter), member 2
+        NM_152616       TRIM42  tripartite motif-containing 42
+
+        RefSeq_NP_Human.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        NP_000005       A2M     alpha-2-macroglobulin
+        NP_000006       NAT2    N-acetyltransferase 2 (arylamine N-acetyltransferase)
+        NP_000007       ACADM   acyl-Coenzyme A dehydrogenase, C-4 to C-12 straight chain
+
+        RefSeq_NP_Mouse.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AAF62769        NULL    NULL
+        AAF62770        NULL    NULL
+        AAF62771        NULL    NULL
+
+        RefSeq_NP_Rat.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        NP_007225       NULL    NULL
+        NP_007226       NULL    NULL
+        NP_007227       NULL    NULL
+
+        Research_Genetics.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-a-1   NULL    NULL
+        1-a-10  WNT2    wingless-type MMTV integration site family member 2
+        1-a-11  VHL     von Hippel-Lindau tumor suppressor
+
+        RG_U34A.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A01157cds_s_at  LIPF    lipase, gastric
+        A03913cds_s_at  SERPINE2        serine (or cysteine) proteinase inhibitor, clade E, member 2
+        A04674cds_s_at  UCP1    uncoupling protein 1 (mitochondrial, proton carrier)
+
+        RG_U34B.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-BioB-3_at  ---     ---
+        AFFX-BioB-3_st  ---     ---
+        AFFX-BioB-5_at  ---     ---
+
+        RG_U34C.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AA012646_i_at   ---     Transcribed locus
+        AA012646_r_at   ---     Transcribed locus
+        AA012654_at     ---     Transcribed locus
+
+        RN_U34.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        A03913cds_s_at  SERPINE2        serine (or cysteine) proteinase inhibitor, clade E, member 2
+        A17753cds_s_at  DRD3    dopamine receptor D3
+        AA848563_s_at   HSPA1A /// HSPA1B_MAPPED        heat shock 70kD protein 1A /// heat shock 70kD protein 1B (mapped)
+
+        Rosetta50K.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1360465 RANBP9  RAN binding protein 9
+        1176829 LOC375449       similar to microtubule associated testis specific serine/threonine protein kinase
+        1351074 NEDD4L  neural precursor cell expressed, developmentally down-regulated 4-like
+
+        Rosetta.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        NM_000504       F10     coagulation factor X
+        Contig32955_RC  ARL6IP6 ADP-ribosylation-like factor 6 interacting protein 6
+        AK000455        MGC16733        hypothetical gene MGC16733 similar to CG12113
+
+        RT_U34.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AA108277_at     HSPH1   heat shock 105kDa/110kDa protein 1
+        AA108308_i_at   MDM2_PREDICTED  Transformed mouse 3T3 cell double minute 2 homolog (mouse) (predicted)
+        AA108308_s_at   ---     ---
+
+        RZPD_Human_Ensembl1.1.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        RZPDp203A011001D        SARDH   sarcosine dehydrogenase
+        RZPDp203A011002D        ARHGAP22        Rho GTPase activating protein 22
+        RZPDp203A011003D        CNGA3   cyclic nucleotide gated channel alpha 3
+
+        RZPD_Human_ORF_Clones_Gateway.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        RZPDo834A0110D - Gateway (closed)       PTD015  PTD015 protein
+        RZPDo834A0114D - Gateway (closed)       TRIB3   tribbles homolog 3 (Drosophila)
+        RZPDo834A0116D - Gateway (closed)       ORM2    orosomucoid 2
+
+        RZPD_Human_Unigene3.1.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        HU3_p983A011001D        SARDH   sarcosine dehydrogenase
+        HU3_p983A011002D        ARHGAP22        Rho GTPase activating protein 22
+        HU3_p983A011003D        CNGA3   cyclic nucleotide gated channel alpha 3
+
+        Seq_Accession.chip 
+        Probe Set ID    Gene Symbol
+        AA017197        C21ORF36
+        AA191116        MTVR2
+        AA280701        CXYORF7
+
+        Stanford.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        IMAGE:703849    DDB2    damage-specific DNA binding protein 2, 48kDa
+        IMAGE:1301778   ZFY     zinc finger protein, Y-linked
+        IMAGE:795810    HS.99503HS.520681       Homo sapiens transcribed sequenceHomo sapiens, clone IMAGE:4823270, mRNA
+
+        Stanford_Source_Accessions.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AI848107        0610010K14RIK   RIKEN cDNA 0610010K14 gene
+        AK002491        0610010K14RIK   RIKEN cDNA 0610010K14 gene
+        AK003842        0610010K14RIK   RIKEN cDNA 0610010K14 gene
+
+        TIGR_31K_Human_Set.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1-1     NULL    NULL
+        1-10    WNT2    wingless-type MMTV integration site family member 2
+        1-11    VHL     von Hippel-Lindau tumor suppressor
+
+        TIGR_40K_Human_Set.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        10      NULL    NULL
+        100     TEX27   testis expressed sequence 27
+        1000    HOXA1   homeo box A1
+
+        U133_X3P.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1053_3p_at      RFC2    replication factor C (activator 1) 2, 40kDa
+        117_3p_at       HSPA6 /// LOC652878     heat shock 70kDa protein 6 (HSP70B') /// similar to heat shock 70kDa protein 6 (HSP70B)
+        1494_3p_f_at    CYP2A6  cytochrome P450, family 2, subfamily A, polypeptide 6
+
+        UCLA_NIH_33K.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        1020181 NULL    NULL
+        1020315 VAV2    vav 2 oncogene
+        1020478 AP1GBP1 AP1 gamma subunit binding protein 1
+
+        Zebrafish.chip 
+        Probe Set ID    Gene Symbol     Gene Title
+        AFFX-BioB-3_at  ---     ---
+        AFFX-BioB-5_at  ---     ---
+        AFFX-BioB-M_at  ---     ---
+
+
+ .. _LGPL: http://www.gnu.org/copyleft/lesser.html
+ .. _GSEA: http://www.broadinstitute.org/gsea
+ .. _GUIDE: http://www.broadinstitute.org/gsea/doc/GSEAUserGuideFrame.html?_Interpreting_GSEA_Results
+ .. _MSigDB: http://www.broadinstitute.org/gsea/msigdb/index.jsp
+ .. _2005Paper: http://www.pnas.org/content/102/43/15545.full
+
+</help>
+
+</tool>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/rgToolFactory.py	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,575 @@
+# rgToolFactory.py
+# see https://bitbucket.org/fubar/galaxytoolfactory/wiki/Home
+# 
+# copyright ross lazarus (ross stop lazarus at gmail stop com) May 2012
+# 
+# all rights reserved
+# Licensed under the LGPL
+# suggestions for improvement and bug fixes welcome at https://bitbucket.org/fubar/galaxytoolfactory/wiki/Home
+#
+# January 2013
+# problem pointed out by Carlos Borroto
+# added escaping for <>$ - thought I did that ages ago...
+#
+# August 11 2012 
+# changed to use shell=False and cl as a sequence
+
+# This is a Galaxy tool factory for simple scripts in python, R or whatever ails ye.
+# It also serves as the wrapper for the new tool.
+# 
+# you paste and run your script
+# Only works for simple scripts that read one input from the history.
+# Optionally can write one new history dataset,
+# and optionally collect any number of outputs into links on an autogenerated HTML page.
+
+# DO NOT install on a public or important site - please.
+
+# installed generated tools are fine if the script is safe.
+# They just run normally and their user cannot do anything unusually insecure
+# but please, practice safe toolshed.
+# Read the fucking code before you install any tool 
+# especially this one
+
+# After you get the script working on some test data, you can
+# optionally generate a toolshed compatible gzip file
+# containing your script safely wrapped as an ordinary Galaxy script in your local toolshed for
+# safe and largely automated installation in a production Galaxy.
+
+# If you opt for an HTML output, you get all the script outputs arranged
+# as a single Html history item - all output files are linked, thumbnails for all the pdfs.
+# Ugly but really inexpensive.
+# 
+# Patches appreciated please. 
+#
+#
+# long route to June 2012 product
+# Behold the awesome power of Galaxy and the toolshed with the tool factory to bind them
+# derived from an integrated script model  
+# called rgBaseScriptWrapper.py
+# Note to the unwary:
+#   This tool allows arbitrary scripting on your Galaxy as the Galaxy user
+#   There is nothing stopping a malicious user doing whatever they choose
+#   Extremely dangerous!!
+#   Totally insecure. So, trusted users only
+#
+# preferred model is a developer using their throw away workstation instance - ie a private site.
+# no real risk. The universe_wsgi.ini admin_users string is checked - only admin users are permitted to run this tool.
+#
+
+import sys 
+import shutil 
+import subprocess 
+import os 
+import time 
+import tempfile 
+import optparse
+import tarfile
+import re
+import shutil
+import math
+
+progname = os.path.split(sys.argv[0])[1] 
+myversion = 'V000.2 June 2012' 
+verbose = False 
+debug = False
+toolFactoryURL = 'https://bitbucket.org/fubar/galaxytoolfactory'
+
+def timenow():
+    """return current time as a string
+    """
+    return time.strftime('%d/%m/%Y %H:%M:%S', time.localtime(time.time()))
+
+cheetah_escape_table = {
+     "$": "\$"
+     }
+
+cheetah_unescape_table = {
+     "\$": "$"
+     }
+
+def html_escape(t):
+     """Unescape \$ first in case already done
+     cheetah barfs if any $ without \
+     xml parsing is controlled with <![CDATA[...]]>
+     """
+     text = t
+     for k in cheetah_unescape_table.keys():
+          text = text.replace(k,cheetah_unescape_table[k])
+     for k in cheetah_escape_table.keys():
+          text = text.replace(k,cheetah_escape_table[k])
+     return text
+
+
+class ScriptRunner:
+    """class is a wrapper for an arbitrary script
+    """
+
+    def __init__(self,opts=None,treatbashSpecial=True):
+        """
+        cleanup inputs, setup some outputs
+        
+        """
+        self.treatbashSpecial = treatbashSpecial
+        if opts.output_dir: # simplify for the tool tarball
+            os.chdir(opts.output_dir)
+        self.thumbformat = 'jpg'
+        self.opts = opts
+        self.toolname = re.sub('[^a-zA-Z0-9_]+', '', opts.tool_name) # a sanitizer now does this but..
+        self.toolid = self.toolname
+        self.myname = sys.argv[0] # get our name because we write ourselves out as a tool later
+        self.pyfile = self.myname # crude but efficient - the cruft won't hurt much
+        self.xmlfile = '%s.xml' % self.toolname
+        s = open(self.opts.script_path,'r').readlines()
+        s = [x.rstrip() for x in s] # remove pesky dos line endings if needed
+        self.script = '\n'.join(s)
+        fhandle,self.sfile = tempfile.mkstemp(prefix=self.toolname,suffix=".%s" % (opts.interpreter))
+        tscript = open(self.sfile,'w') # use self.sfile as script source for Popen
+        tscript.write(self.script)
+        tscript.close()
+        self.escapedS = [html_escape(x) for x in s] # for restructured text in help
+        self.escapedScript = '\n'.join(self.escapedS)
+        self.indentedScript = '\n'.join([' %s' % x for x in s]) # for restructured text in help
+        if opts.output_dir: # may not want these complexities 
+            self.tlog = os.path.join(opts.output_dir,"%s_runner.log" % self.toolname)
+            art = '%s.%s' % (self.toolname,opts.interpreter)
+            artpath = os.path.join(self.opts.output_dir,art) # need full path
+            artifact = open(artpath,'w') # use self.sfile as script source for Popen
+            artifact.write(self.script)
+            artifact.close()
+        self.cl = []
+        self.html = []
+        a = self.cl.append
+        a(opts.interpreter)
+        if self.treatbashSpecial and opts.interpreter in ['bash','sh']:
+            a(self.sfile)
+        else:
+            a('-') # stdin
+        a(opts.input_tab)
+        a(opts.output_tab)
+        self.outFormats = 'tabular' # TODO make this an option at tool generation time
+        self.inputFormats = 'tabular' # TODO make this an option at tool generation time
+        self.test1Input = '%s_test1_input.xls' % self.toolname
+        self.test1Output = '%s_test1_output.xls' % self.toolname
+        self.test1HTML = '%s_test1_output.html' % self.toolname
+
+    def makeXML(self):
+        """
+        Create a Galaxy xml tool wrapper for the new script as a string to write out
+        fixme - use templating or something less fugly than this example of what we produce
+
+        <tool id="reverse" name="reverse" version="0.01">
+            <description>a tabular file</description>
+            <command interpreter="python">
+            reverse.py --script_path "$runMe" --interpreter "python" 
+            --tool_name "reverse" --input_tab "$input1" --output_tab "$tab_file" 
+            </command>
+            <inputs>
+            <param name="input1"  type="data" format="tabular" label="Select a suitable input file from your history"/><param name="job_name" type="text" label="Supply a name for the outputs to remind you what they contain" value="reverse"/>
+
+            </inputs>
+            <outputs>
+            <data format="tabular" name="tab_file" label="${job_name}"/>
+
+            </outputs>
+            <help>
+            
+**What it Does**
+
+Reverse the columns in a tabular file
+
+            </help>
+            <configfiles>
+            <configfile name="runMe">
+            
+# reverse order of columns in a tabular file
+import sys
+inp = sys.argv[1]
+outp = sys.argv[2]
+i = open(inp,'r')
+o = open(outp,'w')
+for row in i:
+     rs = row.rstrip().split('\t')
+     rs.reverse()
+     o.write('\t'.join(rs))
+     o.write('\n')
+i.close()
+o.close()
+ 
+
+            </configfile>
+            </configfiles>
+            </tool>
+        
+        """ 
+        newXML="""<tool id="%(toolid)s" name="%(toolname)s" version="%(tool_version)s">
+%(tooldesc)s
+%(command)s
+<inputs>
+%(inputs)s
+</inputs>
+<outputs>
+%(outputs)s
+</outputs>
+<configfiles>
+<configfile name="runMe">
+<![CDATA[   
+%(script)s
+]]>
+</configfile>
+</configfiles>
+%(tooltests)s
+<help>
+<![CDATA[   
+%(help)s
+]]>
+</help>
+</tool>""" 
+# needs a dict with toolname, toolid, interpreter, scriptname, command, inputs as a multi line string ready to write, outputs ditto, help ditto
+               
+        newCommand="""<command interpreter="python">
+            %(toolname)s.py --script_path "$runMe" --interpreter "%(interpreter)s" 
+            --tool_name "%(toolname)s" %(command_inputs)s %(command_outputs)s 
+            </command>""" # may NOT be an input or htmlout
+        tooltestsTabOnly = """<tests><test>
+        <param name="input1" value="%(test1Input)s" ftype="tabular"/>
+        <param name="job_name" value="test1"/>
+        <param name="runMe" value="$runMe"/>
+        <output name="tab_file" file="%(test1Output)s" ftype="tabular"/>
+        </test></tests>"""
+        tooltestsHTMLOnly = """<tests><test>
+        <param name="input1" value="%(test1Input)s" ftype="tabular"/>
+        <param name="job_name" value="test1"/>
+        <param name="runMe" value="$runMe"/>
+        <output name="html_file" file="%(test1HTML)s" ftype="html" lines_diff="5"/>
+        </test></tests>"""
+        tooltestsBoth = """<tests><test>
+        <param name="input1" value="%(test1Input)s" ftype="tabular"/>
+        <param name="job_name" value="test1"/>
+        <param name="runMe" value="$runMe"/>
+        <output name="tab_file" file="%(test1Output)s" ftype="tabular" />
+        <output name="html_file" file="%(test1HTML)s" ftype="html" lines_diff="10"/>
+        </test></tests>"""
+        xdict = {}
+        xdict['tool_version'] = self.opts.tool_version
+        xdict['test1Input'] = self.test1Input
+        xdict['test1HTML'] = self.test1HTML
+        xdict['test1Output'] = self.test1Output   
+        if self.opts.make_HTML and self.opts.output_tab <> 'None':
+            xdict['tooltests'] = tooltestsBoth % xdict
+        elif self.opts.make_HTML:
+            xdict['tooltests'] = tooltestsHTMLOnly % xdict
+        else:
+            xdict['tooltests'] = tooltestsTabOnly % xdict
+        xdict['script'] = self.escapedScript 
+        # configfile is least painful way to embed script to avoid external dependencies
+        # but requires escaping of <, > and $ to avoid Mako parsing
+        if self.opts.help_text:
+            xdict['help'] = open(self.opts.help_text,'r').read()
+        else:
+            xdict['help'] = 'Please ask the tool author for help as none was supplied at tool generation'
+        coda = ['**Script**','Pressing execute will run the following code over your input file and generate some outputs in your history::\n']
+        coda.append(self.indentedScript)
+        coda.append('\n\n')
+        coda.append('**Attribution** This Galaxy tool was created by %s at %s\nusing the Galaxy Tool Factory.' % (self.opts.user_email,timenow()))
+        coda.append('See %s for details of that project' % (toolFactoryURL))
+        coda.append('Please cite: Creating re-usable tools from scripts: The Galaxy Tool Factory. Ross Lazarus; Antony Kaspi; Mark Ziemann; The Galaxy Team. ')
+        coda.append('Bioinformatics 2012; doi: 10.1093/bioinformatics/bts573')
+        xdict['help'] = '%s\n%s' % (xdict['help'],'\n'.join(coda))
+        if self.opts.tool_desc:
+            xdict['tooldesc'] = '<description>%s</description>' % self.opts.tool_desc
+        else:
+            xdict['tooldesc'] = ''
+        xdict['command_outputs'] = '' 
+        xdict['outputs'] = '' 
+        if self.opts.input_tab <> 'None':
+            xdict['command_inputs'] = '--input_tab "$input1" ' # the space may matter a lot if we append something
+            xdict['inputs'] = '<param name="input1"  type="data" format="%s" label="Select a suitable input file from your history"/> \n' % self.inputFormats
+        else:
+            xdict['command_inputs'] = '' # assume no input - eg a random data generator       
+            xdict['inputs'] = ''
+        xdict['inputs'] += '<param name="job_name" type="text" label="Supply a name for the outputs to remind you what they contain" value="%s"/> \n' % self.toolname
+        xdict['toolname'] = self.toolname
+        xdict['toolid'] = self.toolid
+        xdict['interpreter'] = self.opts.interpreter
+        xdict['scriptname'] = self.sfile
+        if self.opts.make_HTML:
+            xdict['command_outputs'] += ' --output_dir "$html_file.files_path" --output_html "$html_file" --make_HTML "yes" '
+            xdict['outputs'] +=  ' <data format="html" name="html_file" label="${job_name}.html"/>\n'
+        if self.opts.output_tab <> 'None':
+            xdict['command_outputs'] += ' --output_tab "$tab_file"'
+            xdict['outputs'] += ' <data format="%s" name="tab_file" label="${job_name}"/>\n' % self.outFormats
+        xdict['command'] = newCommand % xdict
+        xmls = newXML % xdict
+        xf = open(self.xmlfile,'w')
+        xf.write(xmls)
+        xf.write('\n')
+        xf.close()
+        # ready for the tarball
+
+
+    def makeTooltar(self):
+        """
+        a tool is a gz tarball with eg
+        /toolname/tool.xml /toolname/tool.py /toolname/test-data/test1_in.foo ...
+        """
+        retval = self.run()
+        if retval:
+            print >> sys.stderr,'## Run failed. Cannot build yet. Please fix and retry'
+            sys.exit(1)
+        self.makeXML()
+        tdir = self.toolname
+        os.mkdir(tdir)
+        if self.opts.input_tab <> 'None': # no reproducible test otherwise? TODO: maybe..
+            testdir = os.path.join(tdir,'test-data')
+            os.mkdir(testdir) # make tests directory
+            shutil.copyfile(self.opts.input_tab,os.path.join(testdir,self.test1Input))
+            if self.opts.output_tab <> 'None':
+                shutil.copyfile(self.opts.output_tab,os.path.join(testdir,self.test1Output))
+            if self.opts.make_HTML:
+                shutil.copyfile(self.opts.output_html,os.path.join(testdir,self.test1HTML))
+            if self.opts.output_dir:
+                shutil.copyfile(self.tlog,os.path.join(testdir,'test1_out.log'))
+        op = '%s.py' % self.toolname # new name
+        outpiname = os.path.join(tdir,op) # path for the tool tarball
+        pyin = os.path.basename(self.pyfile) # our name - we rewrite ourselves (TM)
+        notes = ['# %s - a self annotated version of %s generated by running %s\n' % (op,pyin,pyin),]
+        notes.append('# to make a new Galaxy tool called %s\n' % self.toolname)
+        notes.append('# User %s at %s\n' % (self.opts.user_email,timenow()))
+        pi = open(self.pyfile,'r').readlines() # our code becomes new tool wrapper (!) - first Galaxy worm
+        notes += pi
+        outpi = open(outpiname,'w')
+        outpi.write(''.join(notes))
+        outpi.write('\n')
+        outpi.close()
+        stname = os.path.join(tdir,self.sfile)
+        if not os.path.exists(stname):
+            shutil.copyfile(self.sfile, stname)
+        xtname = os.path.join(tdir,self.xmlfile)
+        if not os.path.exists(xtname):
+            shutil.copyfile(self.xmlfile,xtname)
+        tarpath = "%s.gz" % self.toolname
+        tar = tarfile.open(tarpath, "w:gz")
+        tar.add(tdir,arcname=self.toolname)
+        tar.close()
+        shutil.copyfile(tarpath,self.opts.new_tool)
+        shutil.rmtree(tdir)
+        ## TODO: replace with optional direct upload to local toolshed?
+        return retval
+
+    def compressPDF(self,inpdf=None,thumbformat='png'):
+        """need absolute path to pdf
+        """
+        assert os.path.isfile(inpdf), "## Input %s supplied to %s compressPDF not found" % (inpdf,self.myName)
+        hf,hlog = tempfile.mkstemp(suffix="%s.log" % self.toolname)
+        sto = open(hlog,'w')
+        outpdf = '%s_compressed' % inpdf
+        cl = ["gs", "-sDEVICE=pdfwrite", "-dNOPAUSE", "-dBATCH", "-sOutputFile=%s" % outpdf,inpdf]
+        x = subprocess.Popen(cl,stdout=sto,stderr=sto,cwd=self.opts.output_dir)
+        retval1 = x.wait()
+        if retval1 == 0:
+            os.unlink(inpdf)
+            shutil.move(outpdf,inpdf)
+        outpng = '%s.%s' % (os.path.splitext(inpdf)[0],thumbformat)
+        cl2 = ['convert', inpdf, outpng]
+        x = subprocess.Popen(cl2,stdout=sto,stderr=sto,cwd=self.opts.output_dir)
+        retval2 = x.wait()
+        sto.close()
+        retval = retval1 or retval2
+        return retval
+
+
+    def getfSize(self,fpath,outpath):
+        """
+        format a nice file size string
+        """
+        size = ''
+        fp = os.path.join(outpath,fpath)
+        if os.path.isfile(fp):
+            size = '0 B'
+            n = float(os.path.getsize(fp))
+            if n > 2**20:
+                size = '%1.1f MB' % (n/2**20)
+            elif n > 2**10:
+                size = '%1.1f KB)' % (n/2**10)
+            elif n > 0:
+                size = '%d B' % (int(n))
+        return size
+
+    def makeHtml(self):
+        """ Create an HTML file content to list all the artifacts found in the output_dir
+        """
+
+        galhtmlprefix = """<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
+        <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
+        <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
+        <meta name="generator" content="Galaxy %s tool output - see http://g2.trac.bx.psu.edu/" /> 
+        <title></title> 
+        <link rel="stylesheet" href="/static/style/base.css" type="text/css" /> 
+        </head> 
+        <body> 
+        <div class="toolFormBody"> 
+        """ 
+        galhtmlattr = """<hr/><div class="infomessage">This tool (%s) was generated by the <a href="https://bitbucket.org/fubar/galaxytoolfactory/overview">Galaxy Tool Factory</a></div><br/>""" 
+        galhtmlpostfix = """</div></body></html>\n"""
+
+        flist = os.listdir(self.opts.output_dir)
+        flist = [x for x in flist if x <> 'Rplots.pdf']
+        flist.sort()
+        html = []
+        html.append(galhtmlprefix % progname)
+        html.append('<div class="infomessage">Galaxy Tool "%s" run at %s</div><br/>' % (self.toolname,timenow()))
+        fhtml = []
+        if len(flist) > 0:
+            pdflist = []
+            npdf = len([x for x in flist if os.path.splitext(x)[-1].lower() == '.pdf'])
+            nacross = 1
+            if npdf > 0:
+               nacross = int(round(math.log(npdf,2)))
+            nacross = max(1,nacross)
+            width = min(400,int(1200/nacross))
+            for rownum,fname in enumerate(flist):
+                dname,e = os.path.splitext(fname)
+                sfsize = self.getfSize(fname,self.opts.output_dir)
+                if e.lower() == '.pdf' : # compress and make a thumbnail
+                    thumb = '%s.%s' % (dname,self.thumbformat)
+                    pdff = os.path.join(self.opts.output_dir,fname)
+                    retval = self.compressPDF(inpdf=pdff,thumbformat=self.thumbformat)
+                    if retval == 0:
+                        pdflist.append((fname,thumb))
+                if (rownum+1) % 2 == 0:
+                    fhtml.append('<tr class="odd_row"><td><a href="%s">%s</a></td><td>%s</td></tr>' % (fname,fname,sfsize))
+                else:
+                    fhtml.append('<tr><td><a href="%s">%s</a></td><td>%s</td></tr>' % (fname,fname,sfsize))
+            ntogo = nacross # counter for table row padding with empty cells
+            if len(pdflist) > 0:
+                html.append('<div><table class="simple" cellpadding="2" cellspacing="2">\n<tr>')
+                for i,paths in enumerate(pdflist):
+                    fname,thumb = paths
+                    s= """<td><a href="%s"><img src="%s" title="Click to download a PDF of %s" hspace="5" width="%d" 
+                       alt="Image called %s"/></a></td>\n""" % (fname,thumb,fname,width,fname)
+                    if ((i+1) % nacross == 0):
+                        s += '</tr>\n'
+                        ntogo = 0
+                        if i < (npdf - 1): # more to come
+                            s += '<tr>'
+                            ntogo = nacross
+                    else:
+                        ntogo -= 1
+                    html.append(s)
+                if html[-1].strip().endswith('</tr>'):
+                    html.append('</table></div>\n')
+                else:
+                    if ntogo > 0: # pad
+                        html.append('<td>&nbsp;</td>'*ntogo)
+                    html.append('</tr></table></div>\n')
+        if len(fhtml) > 0:
+           fhtml.insert(0,'<div><table class="colored" cellpadding="3" cellspacing="3"><tr><th>Output File Name (click to view)</th><th>Size</th></tr>\n')
+           fhtml.append('</table></div><br/>')
+           html += fhtml # add all non-pdf files to the end of the display
+        else:
+            html.append('<div class="warningmessagelarge">### Error - %s returned no files - please confirm that parameters are sane</div>' % self.opts.interpreter)
+        rlog = open(self.tlog,'r').readlines()
+        rlog = [x for x in rlog if x.strip() > '']
+        if len(rlog) > 1:
+            html.append('<div class="toolFormTitle">%s log</div><pre>\n' % self.opts.interpreter)
+            html += rlog
+            html.append('</pre>\n')
+        html.append(galhtmlattr % (self.toolname))
+        html.append(galhtmlpostfix)
+        htmlf = file(self.opts.output_html,'w')
+        htmlf.write('\n'.join(html))
+        htmlf.write('\n')
+        htmlf.close()
+        self.html = html
+
+
+    def run(self):
+        """
+        scripts must be small enough not to fill the pipe!
+        """
+        if self.treatbashSpecial and self.opts.interpreter in ['bash','sh']:
+          retval = self.runBash()
+        else:
+            if self.opts.output_dir:
+                sto = open(self.tlog,'w')
+                sto.write('## Toolfactory generated command line = %s\n' % ' '.join(self.cl))
+                sto.flush()
+                p = subprocess.Popen(self.cl,shell=False,stdout=sto,stderr=sto,stdin=subprocess.PIPE,cwd=self.opts.output_dir)
+            else:
+                p = subprocess.Popen(self.cl,shell=False,stdin=subprocess.PIPE)
+            p.stdin.write(self.script)
+            p.stdin.close()
+            retval = p.wait()
+            if self.opts.output_dir:
+                sto.close()
+            if self.opts.make_HTML:
+                self.makeHtml()
+        return retval
+
+    def runBash(self):
+        """
+        cannot use - for bash so use self.sfile
+        """
+        if self.opts.output_dir:
+            s = '## Toolfactory generated command line = %s\n' % ' '.join(self.cl)
+            sto = open(self.tlog,'w')
+            sto.write(s)
+            sto.flush()
+            p = subprocess.Popen(self.cl,shell=False,stdout=sto,stderr=sto,cwd=self.opts.output_dir)
+        else:
+            p = subprocess.Popen(self.cl,shell=False)            
+        retval = p.wait()
+        if self.opts.output_dir:
+            sto.close()
+        if self.opts.make_HTML:
+            self.makeHtml()
+        return retval
+  
+
+def main():
+    u = """
+    This is a Galaxy wrapper. It expects to be called by a special purpose tool.xml as:
+    <command interpreter="python">rgBaseScriptWrapper.py --script_path "$scriptPath" --tool_name "foo" --interpreter "Rscript"
+    </command>
+    """
+    op = optparse.OptionParser()
+    a = op.add_option
+    a('--script_path',default=None)
+    a('--tool_name',default=None)
+    a('--interpreter',default=None)
+    a('--output_dir',default=None)
+    a('--output_html',default=None)
+    a('--input_tab',default="None")
+    a('--output_tab',default="None")
+    a('--user_email',default='Unknown')
+    a('--bad_user',default=None)
+    a('--make_Tool',default=None)
+    a('--make_HTML',default=None)
+    a('--help_text',default=None)
+    a('--tool_desc',default=None)
+    a('--new_tool',default=None)
+    a('--tool_version',default=None)
+    opts, args = op.parse_args()
+    assert not opts.bad_user,'UNAUTHORISED: %s is NOT authorized to use this tool until Galaxy admin adds %s to admin_users in universe_wsgi.ini' % (opts.bad_user,opts.bad_user)
+    assert opts.tool_name,'## Tool Factory expects a tool name - eg --tool_name=DESeq'
+    assert opts.interpreter,'## Tool Factory wrapper expects an interpreter - eg --interpreter=Rscript'
+    assert os.path.isfile(opts.script_path),'## Tool Factory wrapper expects a script path - eg --script_path=foo.R'
+    if opts.output_dir:
+        try:
+            os.makedirs(opts.output_dir)
+        except:
+            pass
+    r = ScriptRunner(opts)
+    if opts.make_Tool:
+        retcode = r.makeTooltar()
+    else:
+        retcode = r.run()
+    os.unlink(r.sfile)
+    if retcode:
+        sys.exit(retcode) # indicate failure to job runner
+
+
+if __name__ == "__main__":
+    main()
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/rgedgeR.xml	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,504 @@
+<tool id="rgedgeR" name="edgeR" version="0.18">
+  <description>digital DGE between two groups of replicates</description>
+  <command interpreter="python">
+     rgToolFactory.py --script_path "$runme" --interpreter "Rscript" --tool_name "edgeR" 
+    --output_dir "$html_file.files_path" --output_html "$html_file" --output_tab "$outtab" --make_HTML "yes"
+  </command>
+  <inputs>
+    <param name="input1"  type="data" format="tabular" label="Select an input matrix - rows are contigs, columns are counts for each sample"
+       help="Use the HTSeq based count matrix preparation tool to create these count matrices from BAM files and a GTF file"/>
+    <param name="title" type="text" value="DGE" size="80" label="Title for job outputs" help="Supply a meaningful name here to remind you what the outputs contain">
+      <sanitizer invalid_char="">
+        <valid initial="string.letters,string.digits"><add value="_" /> </valid>
+      </sanitizer>
+    </param>
+    <param name="treatment_name" type="text" value="Treatment" size="50" label="Treatment Name"/>
+    <param name="Treat_cols" label="Select columns containing treatment." type="data_column" data_ref="input1" numerical="True" 
+         multiple="true" use_header_names="true" size="120" display="checkboxes">
+        <validator type="no_options" message="Please select at least one column."/>
+    </param>
+    <param name="control_name" type="text" value="Control" size="50" label="Control Name"/>
+    <param name="Control_cols" label="Select columns containing control." type="data_column" data_ref="input1" numerical="True" 
+         multiple="true" use_header_names="true" size="120" display="checkboxes" optional="true">
+    </param>
+    <param name="fQ" type="float" value="0.3" size="5" label="Non-differential contig count quantile threshold - zero to analyze all non-zero read count contigs"
+     help="May be a good or a bad idea depending on the biology and the question. EG 0.3 = sparsest 30% of contigs with at least one read are removed before analysis"/>
+    <param name="useQuantile" type="boolean" truevalue="T" checked='false' falsevalue="" size="1" label="Non differential filter - remove contigs below a threshold (1 per million) for half or more samples"
+     help="May be a good or a bad idea depending on the biology and the question. This was the old default. Quantile based is available as an alternative"/>
+    <param name="priorn" type="integer" value="4" size="3" label="prior.df for tagwise dispersion - lower value = more emphasis on each tag's variance - note this used to be prior.n"
+     help="Zero = auto-estimate. 1 to force high variance tags out. Use a small value to 'smooth' small samples. See edgeR docs and note below"/>
+    <param name="fdrthresh" type="float" value="0.05" size="5" label="P value threshold for FDR filtering for amily wise error rate control"
+     help="Conventional default value of 0.05 recommended"/>
+    <param name="fdrtype" type="select" label="FDR (Type II error) control method" 
+         help="Use fdr or bh typically to control for the number of tests in a reliable way">
+            <option value="fdr" selected="true">fdr</option>
+            <option value="BH">Benjamini Hochberg</option>
+            <option value="BY">Benjamini Yukateli</option>
+            <option value="bonferroni">Bonferroni</option>
+            <option value="hochberg">Hochberg</option>
+            <option value="holm">Holm</option>
+            <option value="hommel">Hommel</option>
+            <option value="none">no control for multiple tests</option>
+    </param>
+  </inputs>
+  <outputs>
+    <data format="tabular" name="outtab" label="${title}.xls"/>
+    <data format="html" name="html_file" label="${title}.html"/>
+    <data format="gsearank" name="outgsea" label="${title}.gsearank">
+        <filter> makeRank == 'Yes' </filter>
+    </data>
+  </outputs>
+<configfiles>
+<configfile name="runme">
+
+# edgeR.Rscript
+# updated npv 2011 for R 2.14.0 and edgeR 2.4.0 by ross
+# Performs DGE on a count table containing n replicates of two conditions
+#
+# Parameters
+#
+# 1 - Output Dir
+
+# Original edgeR code by: S.Lunke and A.Kaspi
+sink(stdout(),append=T,type="message")
+reallybig = log10(.Machine\$double.xmax)
+reallysmall = log10(.Machine\$double.xmin)
+require('stringr')
+require('gplots')
+library('ggplot2')
+library('gridExtra')
+
+hmap2 = function(cmat,nsamp=100,outpdfname='heatmap2.pdf', TName='Treatment',group=NA,myTitle='title goes here')
+{
+# Perform clustering for significant pvalues after controlling FWER
+    samples = colnames(cmat)
+    gu = unique(group)
+    if (length(gu) == 2) {
+        col.map = function(g) {if (g==gu[1]) "#FF0000" else "#0000FF"}
+        pcols = unlist(lapply(group,col.map))        
+        } else {
+        colours = rainbow(length(gu),start=0,end=4/6)
+        pcols = colours[match(group,gu)]        }
+    print(paste('pcols',pcols))
+    gn = rownames(cmat)
+    dm = cmat[(! is.na(gn)),] 
+    # remove unlabelled hm rows
+    nprobes = nrow(dm)
+    # sub = paste('Showing',nprobes,'contigs ranked for evidence of differential abundance')
+    if (nprobes &gt; nsamp) {
+      dm =dm[1:nsamp,]
+      #sub = paste('Showing',nsamp,'contigs ranked for evidence for differential abundance out of',nprobes,'total')
+    }
+    newcolnames = substr(colnames(dm),1,20)
+    colnames(dm) = newcolnames
+    pdf(outpdfname)
+    heatmap.2(dm,main=myTitle,ColSideColors=pcols,col=topo.colors(100),dendrogram="col",key=T,density.info='none',
+         Rowv=F,scale='row',trace='none',margins=c(8,8),cexRow=0.4,cexCol=0.5)
+    dev.off()
+}
+
+hmap = function(cmat,nmeans=4,outpdfname="heatMap.pdf",nsamp=250,TName='Treatment',group=NA,myTitle="Title goes here")
+{
+    # for 2 groups only was
+    #col.map = function(g) {if (g==TName) "#FF0000" else "#0000FF"}
+    #pcols = unlist(lapply(group,col.map))
+    gu = unique(group)
+    colours = rainbow(length(gu),start=0.3,end=0.6)
+    pcols = colours[match(group,gu)]
+    nrows = nrow(cmat)
+    mtitle = paste(myTitle,'Heatmap: n contigs =',nrows)
+    if (nrows &gt; nsamp)  {
+               cmat = cmat[c(1:nsamp),]
+               mtitle = paste('Heatmap: Top ',nsamp,' DE contigs (of ',nrows,')',sep='')
+          }
+    newcolnames = substr(colnames(cmat),1,20)
+    colnames(cmat) = newcolnames
+    pdf(outpdfname)
+    heatmap(cmat,scale='row',main=mtitle,cexRow=0.3,cexCol=0.4,Rowv=NA,ColSideColors=pcols)
+    dev.off()
+}
+
+qqPlot = function(descr='Title',pvector, ...)
+# stolen from https://gist.github.com/703512
+{
+    o = -log10(sort(pvector,decreasing=F))
+    e = -log10( 1:length(o)/length(o) )
+    o[o==-Inf] = reallysmall
+    o[o==Inf] = reallybig
+    pdfname = paste(gsub(" ","", descr , fixed=TRUE),'pval_qq.pdf',sep='_')
+    maint = paste(descr,'QQ Plot')
+    pdf(pdfname)
+    plot(e,o,pch=19,cex=1, main=maint, ...,
+        xlab=expression(Expected~~-log[10](italic(p))),
+        ylab=expression(Observed~~-log[10](italic(p))),
+        xlim=c(0,max(e)), ylim=c(0,max(o)))
+    lines(e,e,col="red")
+    grid(col = "lightgray", lty = "dotted")
+    dev.off()
+}
+
+smearPlot = function(DGEList,deTags, outSmear, outMain)
+        {
+        pdf(outSmear)
+        plotSmear(DGEList,de.tags=deTags,main=outMain)
+        grid(col="blue")
+        dev.off()
+        }
+
+
+
+boxPlot = function(rawdat,tmdat,maint,myTitle) 
+  {
+  # give up on boxplot - it's just too buggy
+  rscolnames = substr(colnames(rawdat),1,25)
+  colnames(rawdat) = rscolnames
+  ccolnames = substr(colnames(tmdat),1,25)
+  colnames(tmdat) = ccolnames
+  print(paste('rawdat',paste(rscolnames,collapse=',')))
+  print(paste('tmdat',paste(ccolnames,collapse=',')))
+  pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"sampleBoxplot.pdf",sep='_')
+  raw = data.frame(rawdat)
+  cn = rscolnames
+  rdat = reshape(raw, direction="long",varying=list(cn),v.names="counts",times=cn)
+  rdat\$Sample = factor(rdat\$time,levels=cn)
+  rdat\$Counts = log(rdat\$counts + 0.1)
+  p1 = ggplot(rdat,aes(x=Sample,y=Counts)) + geom_boxplot(notch=T) + ylab("log Count")
+  p1 = p1 + theme(axis.text.x  = element_text(angle=90, size=9)) + ggtitle('Raw Contig Counts')
+  raw = data.frame(tmdat)
+  cn = ccolnames
+  rdat = reshape(raw, direction="long",varying=list(cn),v.names="counts",times=cn)
+  rdat\$Sample = factor(rdat\$time,levels=cn)
+  rdat\$Counts = log(rdat\$counts + 0.1)
+  p2 = ggplot(rdat,aes(x=Sample,y=Counts)) + geom_boxplot(notch=T) + ylab("log Count")
+  p2 = p2 + theme(axis.text.x  = element_text(angle=90, size=9)) + ggtitle('Normalised Contig Counts')
+  pdf(pdfname)
+  grid.arrange(p1,p2,nrow=1)
+  dev.off()
+}
+
+cumPlot = function(rawrs,cleanrs,maint,myTitle)
+{   # updated to use ecdf
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        defpar = par(no.readonly=T)
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lrs = log(rawrs,10) 
+        lim = max(lrs)
+        hist(lrs,breaks=100,main=paste('Before:',maint),xlab="# Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle, xlim=c(0,lim),las=1)
+        grid(col="blue")
+        lrs = log(cleanrs,10) 
+        hist(lrs,breaks=100,main=paste('After:',maint),xlab="# Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle,xlim=c(0,lim),las=1)
+        grid(col="blue")
+        dev.off()
+        par(defpar)
+}
+
+cumPlot1 = function(rawrs,cleanrs,maint,myTitle)
+{   # updated to use ecdf
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lastx = max(rawrs)
+        rawe = knots(ecdf(rawrs))
+        cleane = knots(ecdf(cleanrs))
+        cy = 1:length(cleane)/length(cleane)
+        ry = 1:length(rawe)/length(rawe)
+        plot(rawe,ry,type='l',main=paste('Before',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        plot(cleane,cy,type='l',main=paste('After',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        dev.off()
+}
+
+
+
+edgeIt = function (Count_Matrix,group,outputfilename,fdrtype='fdr',priorn=5,fdrthresh=0.05,outputdir='.',
+    myTitle='edgeR',libSize=c(),useQuantile="T",filterquantile=0.2,subjects=c()) {
+
+        # Error handling
+        if (length(unique(group))!=2){
+                print("Number of conditions identified in experiment does not equal 2")
+                q()
+        }
+        require(edgeR)
+        mt = paste(unlist(strsplit(myTitle,'_')),collapse=" ")
+        allN = nrow(Count_Matrix)
+        nscut = round(ncol(Count_Matrix)/2)
+        colTotmillionreads = colSums(Count_Matrix)/1e6
+        rawrs = rowSums(Count_Matrix)
+        nonzerod = Count_Matrix[(rawrs &gt; 0),] # remove all zero count genes
+        nzN = nrow(nonzerod)
+        nzrs = rowSums(nonzerod)
+        zN = allN - nzN
+        print('# Quantiles for non-zero row counts:',quote=F)
+        print(quantile(nzrs,probs=seq(0,1,0.1)),quote=F)
+        if (useQuantile == "T")
+        {
+        gt1rpin3 = rowSums(Count_Matrix/expandAsMatrix(colTotmillionreads,dim(Count_Matrix)) &gt;= 1) &gt;= nscut
+        lo = colSums(Count_Matrix[!gt1rpin3,])
+        workCM = Count_Matrix[gt1rpin3,]
+        cleanrs = rowSums(workCM)
+        cleanN = length(cleanrs)
+        meth = paste( "After removing",length(lo),"contigs with fewer than",nscut,"sample read counts &gt;= 1 per million, there are",sep="")
+        print(paste("Read",allN,"contigs. Removed",zN,"contigs with no reads.",meth,cleanN,"contigs"),quote=F)
+        maint = paste('Filter &gt;=1/million reads in &gt;=',nscut,'samples')
+        }
+        else {
+        useme = (nzrs &gt; quantile(nzrs,filterquantile))
+        workCM = nonzerod[useme,]
+        lo = colSums(nonzerod[!useme,])
+        cleanrs = rowSums(workCM)
+        cleanN = length(cleanrs)
+        meth = paste("After filtering at count quantile =",filterquantile,"there are",sep="")
+        print(paste('Read',allN,"contigs. Removed",zN,"with no reads.",meth,cleanN,"contigs"),quote=F)
+        maint = paste('Filter below',filterquantile,'quantile')
+        }
+        cumPlot(rawrs=rawrs,cleanrs=cleanrs,maint=maint,myTitle=myTitle)
+
+        print(paste("# Total low count contigs per sample = ",paste(lo,collapse=',')),quote=F)
+        rsums = rowSums(workCM)
+        # Setup DGEList object
+        DGEList = DGEList(counts=workCM, group = group)
+        #Extract T v C names
+        TName=unique(group)[1]
+        CName=unique(group)[2]
+        if (length(subjects) == 0) { mydesign = model.matrix(~group)
+               } else { sf = factor(subjects)
+                       mydesign = model.matrix(~sf+group)
+                       }
+        print.noquote(paste('Using samples:',paste(colnames(workCM),collapse=',')))
+        print.noquote('Using design matrix:')
+        print.noquote(mydesign)
+        print.noquote(paste("prior.df =",priorn))
+        DGEList = calcNormFactors(DGEList)
+        DGEList = estimateGLMCommonDisp(DGEList,mydesign)
+        comdisp = DGEList\$common.dispersion
+        DGEList = estimateGLMTrendedDisp(DGEList,mydesign)
+        DGEList = estimateGLMTagwiseDisp(DGEList,mydesign)
+        DGLM = glmFit(DGEList,design=mydesign)
+        co = length(colnames(mydesign))
+        DE = glmLRT(DGLM,coef=co) # always last one - subject is first if needed
+        goodness = gof(DGLM, pcutoff=fdrthresh)
+        if (sum(goodness\$outlier) &gt; 0) {
+            print.noquote('GLM outliers:')
+            print.noquote(rownames(DE)[(goodness\$outlier != 0)])
+            z = limma::zscoreGamma(goodness\$gof.statistic, shape=goodness\$df/2, scale=2)
+            pdf(paste(outputdir,paste(mt,"GoodnessofFit.pdf",sep='_'),sep='/'))
+            qq = qqnorm(z, panel.first=grid(), main="tagwise dispersion")
+            abline(0,1,lwd=3)
+            points(qq\$x[goodness\$outlier],qq\$y[goodness\$outlier], pch=16, col="dodgerblue")
+            dev.off()
+            } else { print('No GLM fit outlier genes found\n')}
+        estpriorn = getPriorN(DGEList)
+        print(paste("Common Dispersion =",comdisp,"CV = ",sqrt(comdisp),"getPriorN = ",estpriorn),quote=F)
+        efflib = DGEList\$samples\$lib.size*DGEList\$samples\$norm.factors
+        normData = (1e+06*DGEList\$counts/efflib)
+        #normData = (1e+06 * DGEList\$counts/expandAsMatrix(DGEList\$samples\$lib.size, dim(DGEList)))
+        colnames(normData) = paste( colnames(normData),'N',sep="_")
+        print(paste('Raw sample read totals',paste(colSums(nonzerod,na.rm=T),collapse=',')))
+        nzd = data.frame(log(nonzerod + 1e-2,10))
+        boxPlot(rawdat=nzd,tmdat=normData,maint='TMM Normalisation',myTitle=myTitle)
+        #Prepare our output file
+        output = cbind(
+                Name=as.character(rownames(DGEList\$counts)),
+                DE\$table,
+                adj.p.value=p.adjust(DE\$table\$PValue, method=fdrtype),
+                Dispersion=DGEList\$tagwise.dispersion,totreads=rsums,normData,
+                DGEList\$counts
+        )
+        soutput = output[order(output\$PVal),] # sorted into p value order - for quick toptable
+        nreads = soutput\$totreads # ordered same way
+        print('# writing output',quote=F)
+        write.table(soutput,outputfilename, quote=FALSE, sep="\t",row.names=F)
+        tt = topTags(DE,n=nrow(DE))
+        rn = rownames(tt\$table)
+        reg = "^chr([0-9]+):([0-9]+)-([0-9]+)"
+        org="hg19"
+        genecards="&lt;a href='http://www.genecards.org/index.php?path=/Search/keyword/"
+        ucsc = paste("&lt;a href='http://genome.ucsc.edu/cgi-bin/hgTracks?db=",org,sep='')
+        testreg = str_match(rn,reg)
+        if (sum(!is.na(testreg[,1]))/length(testreg[,1]) &gt; 0.9) # is ucsc style string
+        {
+          urls = paste(ucsc,'&amp;position=chr',testreg[,2],':',testreg[,3],"-",testreg[,4],"'&gt;",rn,'&lt;/a&gt;',sep='')
+        } else {
+          urls = paste(genecards,rn,"'&gt;",rn,'&lt;/a&gt;',sep="")
+        }
+        cat("# Top tags\n")
+        tt\$table = cbind(tt\$table,ntotreads=nreads,URL=urls) # add to end so table isn't laid out strangely
+        print(tt[1:50,])
+        pdf(paste(mt,"BCV_vs_abundance.pdf",sep='_'))
+        plotBCV(DGEList, cex=0.3, main="Biological CV vs abundance")
+        dev.off()
+        # Plot MAplot
+        fname = gsub(' ','_',myTitle,fixed=T)
+        deTags = rownames(output[output\$adj.p.value &lt; fdrthresh,])
+        nsig = length(deTags)
+        print(paste('#',nsig,'tags significant at adj p=',fdrthresh),quote=F)
+        print('# deTags',quote=F)
+        print(head(deTags))
+        dg = DGEList[order(DE\$table\$PValue),]
+        #normData = (1e+06 * dg\$counts/expandAsMatrix(dg\$samples\$lib.size, dim(dg)))
+        efflib = dg\$samples\$lib.size*dg\$samples\$norm.factors
+        normData = (1e+06*dg\$counts/efflib)
+        outpdfname=paste(mt,"heatmap.pdf",sep='_')
+        hmap2(normData,nsamp=100,TName=TName,group=group,outpdfname=outpdfname,myTitle=myTitle)
+        outSmear = paste(outputdir,paste(fname,"Smearplot.pdf",sep='_'),sep='/')
+        outMain = paste("Smear Plot for ",TName,' Vs ',CName,' (FDR@',fdrthresh,' N = ',nsig,')',sep='')
+        smearPlot(DGEList=DGEList,deTags=deTags, outSmear=outSmear, outMain = outMain)
+        qqPlot(descr=myTitle,pvector=DE\$table\$PValue)
+        # Plot MDS
+        ug = unique(group)
+        sample_colors =  match(DGEList\$samples\$group,ug) #ifelse (DGEList\$samples\$group==group[1], 1, 2)
+        pdf(paste(outputdir,paste(fname,"MDSplot.pdf",sep='_'),sep='/'))
+        plotMDS.DGEList(DGEList,main=paste("MDS Plot for",TName,'Vs',CName),cex=0.5,col=sample_colors,pch=sample_colors)
+        legend(x="topleft", legend = c(group[1],group[length(group)]),col=c(1,2), pch=19)
+        grid(col="blue")
+        dev.off()
+        if (FALSE==TRUE) {
+        # need a design matrix and glm to use this
+        glmfit = glmFit(DGEList, design)
+        goodness = gof(glmfit, pcutoff=fdrpval)
+        sum(goodness\$outlier)
+        rownames(d)[goodness\$outlier]
+        z = limma::zscoreGamma(goodness\$gof.statistic, shape=goodness\$df/2, scale=2)
+        pdf(paste(outputdir,paste(fname,"GoodnessofFit.pdf",sep='_'),sep='/'))
+        qq = qqnorm(z, panel.first=grid(), main="tagwise dispersion")
+        abline(0,1,lwd=3)
+        points(qq\$x[goodness\$outlier],qq\$y[goodness\$outlier], pch=16, col="dodgerblue")
+        dev.off()
+        }
+        #Return our main table
+        output
+
+}       #Done
+
+options(width=512)
+Out_Dir = "$html_file.files_path"
+Input =  "$input1"
+ORG = "$input1.dbkey"
+TreatmentName = "$treatment_name"
+TreatmentCols = "$Treat_cols"
+ControlName = "$control_name"
+ControlCols= "$Control_cols"
+outputfilename = "$outtab"
+fdrtype = "$fdrtype"
+priorn = $priorn
+fdrthresh = $fdrthresh
+useQuantile = "$useQuantile"
+fQ = $fQ # non-differential centile cutoff
+myTitle = "$title"
+makeRank = "$makeRank"
+outgsea = ""
+if (makeRank &gt; "") outgsea = "$outgsea"
+#Set our columns 
+TCols           = as.numeric(strsplit(TreatmentCols,",")[[1]])-1
+CCols           = as.numeric(strsplit(ControlCols,",")[[1]])-1 
+cat('# got TCols=')
+cat(TCols)
+cat('; CCols=')
+cat(CCols)
+cat('\n')
+
+
+# Create output dir if non existent
+  if (file.exists(Out_Dir) == F) dir.create(Out_Dir)
+
+Count_Matrix = read.table(Input,header=T,row.names=1,sep='\t')                           #Load tab file assume header
+Count_Matrix = Count_Matrix[,c(TCols,CCols)]
+rn = rownames(Count_Matrix)
+islib = rn %in% c('librarySize','NotInBedRegions')
+LibSizes = Count_Matrix[subset(rn,islib),][1] # take first
+Count_Matrix = Count_Matrix[subset(rn,! islib),]
+group = c(rep(TreatmentName,length(TCols)), rep(ControlName,length(CCols)) )             #Build a group descriptor
+group = factor(group, levels=c(ControlName,TreatmentName))
+colnames(Count_Matrix) = paste(group,colnames(Count_Matrix),sep="_")                   #Relable columns
+if (priorn &lt;= 0) {priorn = ceiling(20/(length(group)-1))} # estimate prior.n if not provided
+# see http://comments.gmane.org/gmane.comp.lang.r.sequencing/2009 
+results = edgeIt(Count_Matrix=Count_Matrix,group=group,outputfilename=outputfilename,fdrtype=fdrtype,priorn=priorn,fdrthresh=fdrthresh,
+   outputdir=Out_Dir,myTitle=myTitle,libSize=c(),useQuantile=useQuantile,filterquantile=fQ) #Run the main function
+# for the log
+
+
+sessionInfo()
+
+
+</configfile>
+</configfiles>
+<tests>
+<test>
+<param name='input1' value='DGEtest.xls' ftype='tabular' />
+ <param name='treatment_name' value='case' />
+ <param name='title' value='DGEtest' />
+ <param name='fdrtype' value='fdr' />
+ <param name='priorn' value="5" />
+ <param name='fdrthresh' value="0.05" />
+ <param name='control_name' value='control' />
+ <param name='Treat_cols' value='c3,c6,c9' />
+ <param name='Control_cols' value='c2,c5,c8' />
+ <output name='outtab' file='DGEtest1out.xls' ftype='tabular' compare='diff' />
+ <output name='html_file' file='DGEtest1out.html' ftype='html' compare='diff' lines_diff='20' />
+</test>
+</tests>
+<help>
+**What it does**
+
+Performs digital gene expression analysis between a treatment and control on a matrix.
+
+**Documentation** Please see documentation_ for methods and parameter details 
+
+**Input**
+
+A matrix consisting of non-negative integers. The matrix must have a unique header row identifiying the samples, as well as a unique set of row names 
+as  the first column.
+
+**Output**
+
+A matrix which consists the original data and relative expression levels and some helpful plots
+
+**Note on edgeR versions**
+
+The edgeR authors made a small cosmetic change in the name of one important variable (from p.value to PValue) 
+breaking this and all other code that assumed the old name for this variable, 
+between edgeR2.4.4 and 2.4.6 (the version for R 2.14 as at the time of writing). 
+This means that all code using edgeR is sensitive to the version. I think this was a very unwise thing 
+to do because it wasted hours of my time to track down and will similarly cost other edgeR users dearly
+when their old scripts break. This tool currently now works with 2.4.6.
+
+**Note on prior.N**
+
+http://seqanswers.com/forums/showthread.php?t=5591 says:
+
+*prior.n*
+
+The value for prior.n determines the amount of smoothing of tagwise dispersions towards the common dispersion. 
+You can think of it as like a "weight" for the common value. (It is actually the weight for the common likelihood 
+in the weighted likelihood equation). The larger the value for prior.n, the more smoothing, i.e. the closer your 
+tagwise dispersion estimates will be to the common dispersion. If you use a prior.n of 1, then that gives the 
+common likelihood the weight of one observation.
+
+In answer to your question, it is a good thing to squeeze the tagwise dispersions towards a common value, 
+or else you will be using very unreliable estimates of the dispersion. I would not recommend using the value that 
+you obtained from estimateSmoothing()---this is far too small and would result in virtually no moderation 
+(squeezing) of the tagwise dispersions. How many samples do you have in your experiment? 
+What is the experimental design? If you have few samples (less than 6) then I would suggest a prior.n of at least 10. 
+If you have more samples, then the tagwise dispersion estimates will be more reliable, 
+so you could consider using a smaller prior.n, although I would hesitate to use a prior.n less than 5. 
+
+**Attribution** Copyright Ross Lazarus (ross period lazarus at gmail period com) May 2012
+Derived from the implementation by Antony Kaspi and Sebastian Lunke at the BakerIDI
+
+All rights reserved.
+
+Licensed under the LGPL_
+
+.. _LGPL: http://www.gnu.org/copyleft/lesser.html
+.. _documentation: http://bioconductor.org/packages/release/bioc/html/edgeR.html
+</help>
+
+</tool>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/rgedgeRglm.xml	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,537 @@
+
+<tool id="rgedgeRglm" name="edgeRglm" version="0.18">
+  <description>digital DGE glm</description>
+  <command interpreter="python">
+     rgToolFactory.py --script_path "$runme" --interpreter "Rscript" --tool_name "edgeRglm" 
+    --output_dir "$html_file.files_path" --output_html "$html_file" --make_HTML "yes"
+  </command>
+  <inputs>
+    <param name="input1"  type="data" format="tabular" label="Select an input matrix - rows are contigs, columns are counts for each sample"
+       help="Use the DGE matrix preparation tool to create these matrices from BAM files and a BED file of contigs"/>
+    <param name="title" type="text" value="Factorial DGE" size="80" label="Title for job outputs" help="Supply a meaningful name here to remind you what the outputs contain">
+      <sanitizer invalid_char="">
+        <valid initial="string.letters,string.digits"><add value="_" /> </valid>
+      </sanitizer>
+    </param>
+    <param name="factor1name" type="text" value="Factor 1" size="80" label="Factor 1 name" help="Supply a meaningful name here to remind you when looking at the results">
+      <sanitizer invalid_char="">
+        <valid initial="string.letters,string.digits"><add value="_" /> </valid>
+      </sanitizer>
+    </param>
+    <param name="factor1" type="text" optional="false" size="120"
+       label="Enter comma separated values to indicate the factor level for all input file count columns"
+       help="EG if there are 4 columns of counts from 2 treatment replicates (2,4) and 2 control replicates (3,5) then enter 'treat,control,treat,control'">
+      <sanitizer>
+        <valid initial="string.digits,string.letters"><add value="," /> </valid>
+      </sanitizer>
+    </param>
+    <param name="factor2name" type="text" value="Factor 2" size="80" label="Factor 2 name" help="Supply a meaningful name here to remind you when looking at the results">
+      <sanitizer invalid_char="">
+        <valid initial="string.letters,string.digits"><add value="_" /> </valid>
+      </sanitizer>
+    </param>
+    <param name="factor2" type="text" optional="false" size="120"
+       label="Enter comma separated values to indicate factor 2 level for all input file count columns"
+       help="Leave blank if no factor 2, but eg if data from sample id A99 is in columns 2,4 and id C21 is in 3,5 then enter '1,2,1,2'">
+      <sanitizer>
+        <valid initial="string.digits,string.letters"><add value="," /> </valid>
+      </sanitizer>
+    </param>
+    <param name="fQ" type="float" value="0.3" size="5" label="Non-differential contig count quantile threshold - zero to analyze all non-zero read count contigs"
+     help="May be a good or a bad idea depending on the biology and the question. EG 0.3 = sparsest 30% of contigs with at least one read are removed before analysis"/>
+    <param name="useNDfilt" type="boolean" truevalue="T" checked='false' falsevalue="" size="1" label="Non differential filter - remove contigs below a threshold (1 per million) for half or more samples"
+     help="May be a good or a bad idea depending on the biology and the question. This was the old default. Quantile based is available as an alternative"/>
+    <param name="priorn" type="integer" value="4" size="3" label="prior.df for tagwise dispersion - higher value = more emphasis on each tag's variance - note this used to be prior.n"
+     help="Zero = auto-estimate. 1 to force high variance tags out. Use a small value to 'smooth' small samples. See edgeR docs and note below"/>
+    <param name="fdrthresh" type="float" value="0.05" size="5" label="P value threshold for FDR filtering for family wise error rate control"
+     help="Conventional default value of 0.05 recommended"/>
+    <param name="fdrtype" type="select" label="FDR (Type II error) control method" 
+         help="Use fdr or bh typically to control for the number of tests in a reliable way">
+            <option value="fdr" selected="true">fdr</option>
+            <option value="BH">Benjamini Hochberg</option>
+            <option value="BY">Benjamini Yukateli</option>
+            <option value="bonferroni">Bonferroni</option>
+            <option value="hochberg">Hochberg</option>
+            <option value="holm">Holm</option>
+            <option value="hommel">Hommel</option>
+            <option value="none">no control for multiple tests</option>
+    </param>
+  </inputs>
+  <outputs>
+    <data format="tabular" name="outtab1" label="${treatment1_name}-${control1_name}_topTable.xls"/>
+    <data format="tabular" name="outtab2" label="${treatment2_name}-${control2_name}_topTable.xls"/>
+    <data format="tabular" name="outtab3" label="${treatment1_name}-${control1_name}-${treatment2_name}-${control2_name}_topTable.xls"/>
+    <data format="html" name="html_file" label="${input1.name}_${title}.html"/>
+  </outputs>
+<configfiles>
+<configfile name="runme">
+# edgeR.Rscript
+# new nov 2012 for 2x2 factorial designs 
+# updated nov 2011 for R 2.14.0 and edgeR 2.4.0 by ross
+# Performs DGE on a count table containing n replicates of two conditions
+#
+
+reallybig = log10(.Machine\$double.xmax)
+reallysmall = log10(.Machine\$double.xmin)
+require('stringr')
+require('gplots')
+hmap2 = function(cmat,nsamp=100,outpdfname='heatmap2.pdf', TName='Treatment',group=NA,myTitle='title goes here')
+{
+    samples = colnames(cmat)
+    gu = unique(group)
+    if (length(gu) == 2) {
+        col.map = function(g) {if (g==gu[1]) "#FF0000" else "#0000FF"}
+        pcols = unlist(lapply(group,col.map))        
+        } else {
+        colours = rainbow(length(gu),start=0,end=4/6)
+        pcols = colours[match(group,gu)]        }
+    print(paste('pcols',pcols))
+    gn = rownames(cmat)
+    dm = cmat[(! is.na(gn)),] 
+    nprobes = nrow(dm)
+    if (nprobes &gt; nsamp) {
+      dm =dm[1:nsamp,]
+    }
+    newcolnames = substr(colnames(dm),1,20)
+    colnames(dm) = newcolnames
+    pdf(outpdfname)
+    heatmap.2(dm,main=myTitle,ColSideColors=pcols,col=topo.colors(100),dendrogram="col",key=T,density.info='none',
+         Rowv=F,scale='row',trace='none',margins=c(8,8),cexRow=0.4,cexCol=0.5)
+    dev.off()
+}
+
+hmap = function(cmat,nmeans=4,outpdfname="heatMap.pdf",nsamp=250,TName='Treatment',group=NA,myTitle="Title goes here")
+{
+    gu = unique(group)
+    colours = rainbow(length(gu),start=0.3,end=0.6)
+    pcols = colours[match(group,gu)]
+    nrows = nrow(cmat)
+    mtitle = paste(myTitle,'Heatmap: n contigs =',nrows)
+    if (nrows &gt; nsamp)  {
+               cmat = cmat[c(1:nsamp),]
+               mtitle = paste('Heatmap: Top ',nsamp,' DE contigs (of ',nrows,')',sep='')
+          }
+    newcolnames = substr(colnames(cmat),1,20)
+    colnames(cmat) = newcolnames
+    pdf(outpdfname)
+    heatmap(cmat,scale='row',main=mtitle,cexRow=0.3,cexCol=0.4,Rowv=NA,ColSideColors=pcols)
+    dev.off()
+}
+
+qqPlot = function(descr='Title',pvector, ...)
+{
+    o = -log10(sort(pvector,decreasing=F))
+    e = -log10( 1:length(o)/length(o) )
+    o[o==-Inf] = reallysmall
+    o[o==Inf] = reallybig
+    pdfname = paste(gsub(" ","", descr , fixed=TRUE),'pval_qq.pdf',sep='_')
+    maint = paste(descr,'QQ Plot')
+    pdf(pdfname)
+    plot(e,o,pch=19,cex=1, main=maint, ...,
+        xlab=expression(Expected~~-log[10](italic(p))),
+        ylab=expression(Observed~~-log[10](italic(p))),
+        xlim=c(0,max(e)), ylim=c(0,max(o)))
+    lines(e,e,col="red")
+    grid(col = "lightgray", lty = "dotted")
+    dev.off()
+}
+
+smearPlot = function(DGEList,deTags, outSmear, outMain)
+        {
+        pdf(outSmear)
+        plotSmear(DGEList,de.tags=deTags,main=outMain)
+        grid(col="blue")
+        dev.off()
+        }
+        
+boxPlot = function(rawrs,cleanrs,maint,myTitle)
+{    
+        newcolnames = substr(colnames(rawrs),1,15)
+        colnames(rawrs) = newcolnames
+        newcolnames = substr(colnames(cleanrs),1,15)
+        colnames(cleanrs) = newcolnames
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"sampleBoxplot.pdf",sep='_')
+        defpar = par(no.readonly=T)
+        pdf(pdfname,height=6,width=8)
+        par(mfrow=c(1,2)) 
+        boxplot(rawrs,main=paste('Before:',maint),col="maroon",las=3,cex.axis=0.4)
+        grid(col="blue")
+        lrs = log(cleanrs,10) 
+        boxplot(cleanrs,main=paste('After:',maint),col="maroon",las=3,cex.axis=0.4)
+        grid(col="blue")
+        dev.off()
+        par(defpar)
+}
+
+cumPlot = function(rawrs,cleanrs,maint,myTitle)
+{   
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        defpar = par(no.readonly=T)
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lrs = log(rawrs,10) 
+        lim = max(lrs)
+        hist(lrs,breaks=100,main=paste('Before:',maint),xlab="Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle, xlim=c(0,lim),las=1)
+        grid(col="blue")
+        lrs = log(cleanrs,10) 
+        hist(lrs,breaks=100,main=paste('After:',maint),xlab="Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle,xlim=c(0,lim),las=1)
+        grid(col="blue")
+        dev.off()
+        par(defpar)
+}
+
+cumPlot1 = function(rawrs,cleanrs,maint,myTitle)
+{   
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lastx = max(rawrs)
+        rawe = knots(ecdf(rawrs))
+        cleane = knots(ecdf(cleanrs))
+        cy = 1:length(cleane)/length(cleane)
+        ry = 1:length(rawe)/length(rawe)
+        plot(rawe,ry,type='l',main=paste('Before',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        plot(cleane,cy,type='l',main=paste('After',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        dev.off()
+}
+
+
+
+edgeIt = function (Count_Matrix,group,outtab1,outtab2,outtab3,fdrtype='fdr',priorn=5,fdrthresh=0.05,outputdir='.',
+                   myTitle='edgeR',libSize=c(),useQuantile=T,filterquantile=0.2,org='hg19') 
+{
+    
+    if (length(unique(group))!=4) {
+    print.noquote("Number of conditions identified in experiment does not equal 4 - full 2x2 factorial not possible")
+    q()
+    }
+    require(edgeR)
+    require(limma)
+    mt = paste(unlist(strsplit(myTitle,' ')),collapse="")
+    expfact = factor(group,levels=unique(group)) 
+    sampleTypes = levels(expfact)
+    mycontrast = NA
+    colnamesDesign = list()
+    allN = nrow(Count_Matrix)
+    nscut = round(ncol(Count_Matrix)/2)
+    colTotmillionreads = colSums(Count_Matrix)/1e6
+    rawrs = rowSums(Count_Matrix)
+    nonzerod = Count_Matrix[(rawrs &gt; 0),] 
+    nzN = nrow(nonzerod)
+    nzrs = rowSums(nonzerod)
+    zN = allN - nzN
+    print.noquote('Quantiles for non-zero row counts:')
+    print.noquote(quantile(nzrs,probs=seq(0,1,0.1)))
+    if (useQuantile == "T")
+    {
+      gt1rpin3 = rowSums(Count_Matrix/expandAsMatrix(colTotmillionreads,dim(Count_Matrix)) &gt;= 1) &gt;= nscut
+      lo = colSums(Count_Matrix[!gt1rpin3,])
+      workCM = Count_Matrix[gt1rpin3,]
+      cleanrs = rowSums(workCM)
+      cleanN = length(cleanrs)
+      meth = paste( "After removing",length(lo),"contigs with fewer than",nscut,"sample read counts &gt;= 1 per million, there are",sep="")
+      print.noquote(paste("Read",allN,"contigs. Removed",zN,"contigs with no reads.",meth,cleanN,"contigs"))
+      maint = paste('Filter &gt;= 1/million reads in &gt;=',nscut,'samples')
+    }  else {        
+      useme = (nzrs &gt; quantile(nzrs,filterquantile))
+      workCM = nonzerod[useme,]
+      lo = colSums(nonzerod[!useme,])
+      cleanrs = rowSums(workCM)
+      cleanN = length(cleanrs)
+      meth = paste("After filtering at count quantile =",filterquantile,"there are",sep="")
+      print.noquote(paste('Read',allN,"contigs. Removed",zN,"with no reads.",meth,cleanN,"contigs"))
+      maint = paste('Filter below',filterquantile,'quantile')
+    }
+    cumPlot(rawrs=rawrs,cleanrs=cleanrs,maint=maint,myTitle=myTitle)
+    print.noquote(paste("Total low count contigs per sample = ",paste(lo,collapse=',')))
+    rsums = rowSums(workCM)
+    allttn = c()
+    colnamesDesign = list()
+    l = sampleTypes
+    p1=paste(l[1],'-',l[2],sep='')
+    p2=paste(l[3],'-',l[4],sep='')
+    p3=paste('(',l[3],'-',l[4],') - (',l[1],'-',l[2],')',sep='')
+    colnamesDesign = list(comp1=p1,comp2=p2,diff=p3)
+    mydesign = model.matrix(~0+expfact)
+    colnames(mydesign) = sampleTypes   
+    mycontrast = makeContrasts(contrasts=colnamesDesign,levels=mydesign)
+    print.noquote('Design matrix=')
+    print(mydesign,quote=F)
+    print.noquote('Contrast matrix=')
+    print(mycontrast,quote=F)
+    print.noquote('Samples=')
+    print(colnames(workCM),quote=F)
+    DGEList = DGEList(counts=workCM, group = group)
+    print.noquote(paste("prior.df =",priorn))
+    DGEList = calcNormFactors(DGEList)
+    DGEList = estimateGLMCommonDisp(DGEList,mydesign)
+    comdisp = DGEList\$common.dispersion
+    DGEList = estimateGLMTrendedDisp(DGEList,mydesign)
+    DGEList = estimateGLMTagwiseDisp(DGEList,mydesign)
+    pdf(paste(mt,"BCV_vs_abundance.pdf",sep='_'))
+    plotBCV(DGEList, cex=0.3, main="Biological CV vs abundance")
+    dev.off()    
+    estpriorn = getPriorN(DGEList)
+    print(paste("Common Dispersion =",comdisp,"CV = ",sqrt(comdisp),"getPriorN = ",estpriorn),quote=F)
+    efflib = DGEList\$samples\$lib.size*DGEList\$samples\$norm.factors
+    normData = (1e+06*DGEList\$counts/efflib)
+    #normData = (1e+06 * DGEList\$counts/expandAsMatrix(DGEList\$samples\$lib.size, dim(DGEList)))
+    colnames(normData) = paste( colnames(normData),'N',sep="_")
+    boxPlot(rawrs=log(nonzerod),cleanrs=log(normData),maint='TMM Normalisation (log scale)',myTitle=myTitle)
+    ug = unique(group)
+    ncond = length(ug)
+    sample_colors =  match(DGEList\$samples\$group,ug) 
+    pdf(paste(outputdir,paste(mt,"MDSplot.pdf",sep='_'),sep='/'))
+    plotMDS.DGEList(DGEList,main=paste("MDS Plot for",myTitle),cex=0.5,col=sample_colors,pch=sample_colors)
+    legend(x="topleft", legend = sampleTypes,col=sample_colors, pch=19)
+    grid(col="blue")
+    dev.off()
+    cn = colnames(Count_Matrix)
+    print('Using design matrix:')
+    print(mydesign)
+    DGLM = glmFit(DGEList, mydesign)
+    goodness = gof(DGLM, pcutoff=fdrthresh)
+    if (sum(goodness\$outlier) &gt; 0) {
+        print.noquote('GLM outliers:')
+        print(paste(rownames(DGLM)[(goodness\$outlier != 0)],collapse=','),quote=F)
+        z = limma::zscoreGamma(goodness\$gof.statistic, shape=goodness\$df/2, scale=2)
+        pdf(paste(mt,"GoodnessofFit.pdf",sep='_'))
+        qq = qqnorm(z, panel.first=grid(), main="tagwise dispersion")
+        abline(0,1,lwd=3)
+        points(qq\$x[goodness\$outlier],qq\$y[goodness\$outlier], pch=16, col="dodgerblue")
+        dev.off()
+    } else { print('No GLM fit outlier genes found\n')}
+    outtabs = c(outtab1,outtab2,outtab3)
+    for (coeff in c(1:3))
+        {
+        DE = glmLRT(DGLM,contrast=mycontrast[,coeff])
+        cont = paste(unlist(strsplit(colnames(mycontrast)[coeff],' ')),collapse="")
+        output = cbind(Name=as.character(rownames(DGEList\$counts)),
+        DE\$table,adj.p.value=p.adjust(DE\$table\$PValue, method=fdrtype),
+        Dispersion=DGEList\$tagwise.dispersion,totreads=rsums,normData,
+        DGEList\$counts)
+        soutput = output[order(output\$PVal),] 
+        nreads = soutput\$totreads 
+        write.table(soutput,outtabs[coeff], quote=FALSE, sep="\t",row.names=F)
+        print.noquote(paste("Top tags for",cont))
+        genecards="&lt;a href='http://www.genecards.org/index.php?path=/Search/keyword/"
+        ucsc = paste("&lt;a href='http://genome.ucsc.edu/cgi-bin/hgTracks?db=",org,sep='')
+        tt = topTags(DE,n=nrow(DE))
+        rn = rownames(tt\$table)
+        reg = "^chr([0-9]+):([0-9]+)-([0-9]+)"
+        testreg = str_match(rn,reg)
+        isucsc = F
+        if (!is.na(testreg[1,])) {isucsc = T}
+        if (isucsc == T)
+        {
+          urls = paste(ucsc,'&amp;position=chr',testreg[,2],':',testreg[,3],"-",testreg[,4],"'&gt;",rn,'&lt;/a&gt;',sep='')
+        } else {
+          urls = paste(genecards,rn,"'&gt;",rn,'&lt;/a&gt;',sep="")
+        }
+        tt\$table = cbind(tt\$table,ntotreads=nreads,geneCardslink=urls) 
+        print.noquote(tt[1:50,])
+        deTags = rownames(output[output\$adj.p.value &lt; fdrthresh,])
+        nsig = length(deTags)
+        print(paste(nsig,'tags significant at adj p=',fdrthresh),quote=F)
+        outSmear = paste(outputdir,paste(mt,cont,"Smearplot.pdf",sep='_'),sep='/')
+        outMain = paste(cont,' (FDR@',fdrthresh,' N = ',nsig,')',sep='')
+        smearPlot(DGEList=DE,deTags=deTags, outSmear=outSmear, outMain = outMain)
+        qqPlot(descr=paste(myTitle,cont),pvector=DE\$table\$PValue)
+        }
+}
+
+rossDecide = function (object, adjust.method="BH", p.value=0.05,verbose=T) 
+{
+    if (!is(object, "DGEExact") &amp; !is(object, "DGELRT")) 
+        stop("Need DGEExact or DGELRT object")
+    DE = decideTestsDGE(object, adjust.method = adjust.method, p.value = p.value)
+    sumDE = summary(DE)
+    rownames(sumDE)[1] = "DOWN"
+    rownames(sumDE)[3] = "UP"
+    sumDE = sumDE[c(3, 1), ]
+    if (verbose) {
+        cat("\n")
+        cat("------------------------------------------------------", 
+            "\n")
+        cat(" Method for Selecting DEGs:", DEmethod, "\n")
+        cat(" Multiple Testing  method: ", MTestmethod, "- pval", 
+            PVcut, "\n")
+        cat("\n")
+        print.noquote(sumDE)
+        cat("------------------------------------------------------", 
+            "\n")
+    }
+    return(DE)
+}
+
+options(width=512)
+Out_Dir = "$html_file.files_path"
+Input =  "$input1"
+factor1name = "$factor1_name"
+factor1 = as.factor(strsplit("$factor1",","))
+factor2name = "$factor2_name"
+factor2 = as.factor(strsplit("$factor2",","))
+org = "$input1.dbkey"
+outtabs = strsplit("$outtab",",")
+fdrtype = "$fdrtype"
+priorn = $priorn
+fdrthresh = $fdrthresh
+useNDfilt = "$useNDfilt"
+fQ = $fQ 
+myTitle = "$title"
+
+print.noquote(paste('# got =',paste(CCols2,collapse=',')))
+Count_Matrix = read.table(Input,header=T,row.names=1,sep='\t')                           
+rn = rownames(Count_Matrix)
+nsamp = length(colnames(Count_Matrix))
+
+if (file.exists(Out_Dir) == F) dir.create(Out_Dir)
+print.noquote(paste('Got nsamp = ',nsamp,'org=',org))
+islib = rn %in% c('librarySize','NotInBedRegions')
+LibSizes = Count_Matrix[subset(rn,islib),][1] 
+Count_Matrix = Count_Matrix[subset(rn,! islib),]
+print(paste('Got groups =',paste(group,collapse=' ')))
+if (priorn &lt;= 0) {priorn = ceiling(20/(length(group)-1))} 
+cn = colnames(Count_Matrix)
+results = edgeIt(Count_Matrix,group=group,outtab1=outtab1,outtab2=outtab2,outtab3=outtab3,fdrtype,priorn,fdrthresh,
+                 Out_Dir,myTitle,libSize=c(),useQuantile=useNDfilt,filterquantile=fQ,org=org) 
+options(width=80)
+sessionInfo()
+
+</configfile>
+</configfiles>
+<tests>
+<test>
+<param name='input1' value='DGEtest.xls' ftype='tabular' />
+ <param name='treatment_name' value='case' />
+ <param name='title' value='DGEtest' />
+ <param name='fdrtype' value='fdr' />
+ <param name='priorn' value="5" />
+ <param name='fdrthresh' value="0.05" />
+ <param name='control_name' value='control' />
+ <param name='Treat_cols' value='c3,c6,c9' />
+ <param name='Control_cols' value='c2,c5,c8' />
+ <output name='outtab' file='DGEtest1out.xls' ftype='tabular' compare='diff' />
+ <output name='html_file' file='DGEtest1out.html' ftype='html' compare='diff' lines_diff='20' />
+</test>
+</tests>
+<help>
+**Executive Summary**
+This is a Galaxy wrapper exposing the Bioconductor edgeR_ package.
+There is a companion pairwise comparison tool but this is the two way model tool.
+It will help you to analyse the main effects in a 2 way anova.
+
+**If things go wrong**
+edgeR software is thoroughly documented at edgeR_Manual_ and the authors 
+provide excellent support on the Bioconductor users' mailing list for their code, but
+if this tool fails to run properly in Galaxy, please make sure you 
+fill in the form and send the administrators a Galaxy bug report. 
+If you have questions about the edgeR code this tool wraps, please 
+try the Bioconductor users' list. 
+
+**What data is it for?**
+Like the pairwise version, it takes a count matrix with columns containing reads per contig (NOT transformed!) for 
+multiple replicates in comparison groups. The counts can be any kind of counts. It was designed for
+short read sequence data - RNA-seq, miR-seq,...ChIP-seq. 
+
+**Slightly Longer Version**
+Performs digital gene expression factorial analysis for a 2x2 design.
+Factorial designs are old but good if you want to get at the individual effects and interaction between two factors.
+EG: a treatment applied to 2 different cell types, or two treatments applied in all 4 possible combinations (-a-b,-a,+b,+a-b,+a+b).
+Data with replicates in the four groups is supplied as a count matrix.
+The two primary comparisons are defined by selecting two sets of samples for comparison
+best thought of as control and treatment (whatever that means) for each of the main comparisons. 
+
+The interaction is defined as the difference between those two comparisons and is reported as a topTable as are the 
+primary comparisons.
+
+All comparisons are reported as separate tabular spreadsheets ordered by p value and a comprehensive summary is 
+provided in the html output.
+
+This code essentially embelishes the code described by Gordon Smythe in the limma documentation for a factorial 
+analysis.
+
+**Input**
+
+A matrix consisting of non-negative integers. The matrix must have a unique header row identifiying the samples, as well as a unique set of row names 
+as the first column.
+
+**Output**
+
+Tabular files which contain the statistical results and the raw and transformed counts and some colourful
+and helpful plots
+
+**Note on edgeR versions**
+
+The edgeR authors made a small cosmetic change in the name of one important variable (from p.value to PValue) 
+breaking this and all other code that assumed the old name for this variable, 
+between edgeR2.4.4 and 2.4.6 (the version for R 2.14 as at the time of writing). 
+This means that all code using edgeR is sensitive to the version. I think this was a very unwise thing 
+to do because it wasted hours of my time to track down and will similarly cost other edgeR users dearly
+when their old scripts break. This tool currently now works with 2.4.6.
+
+**Note on prior.N - now replaced with prior.df**
+
+http://seqanswers.com/forums/showthread.php?t=5591 says:
+
+*prior.n*
+
+The value for prior.n determines the amount of smoothing of tagwise dispersions towards the common dispersion. 
+You can think of it as like a "weight" for the common value. (It is actually the weight for the common likelihood 
+in the weighted likelihood equation). The larger the value for prior.n, the more smoothing, i.e. the closer your 
+tagwise dispersion estimates will be to the common dispersion. If you use a prior.n of 1, then that gives the 
+common likelihood the weight of one observation.
+
+In answer to your question, it is a good thing to squeeze the tagwise dispersions towards a common value, 
+or else you will be using very unreliable estimates of the dispersion. I would not recommend using the value that 
+you obtained from estimateSmoothing()---this is far too small and would result in virtually no moderation 
+(squeezing) of the tagwise dispersions. How many samples do you have in your experiment? 
+What is the experimental design? If you have few samples (less than 6) then I would suggest a prior.n of at least 10. 
+If you have more samples, then the tagwise dispersion estimates will be more reliable, 
+so you could consider using a smaller prior.n, although I would hesitate to use a prior.n less than 5. 
+
+From Bioconductor Digest, Vol 118, Issue 5, Gordon writes:
+
+Dear Dorota,
+
+The important settings are prior.df and trend.
+
+prior.n and prior.df are related through prior.df = prior.n * residual.df,
+and your experiment has residual.df = 36 - 12 = 24.  So the old setting of
+prior.n=10 is equivalent for your data to prior.df = 240, a very large
+value.  Going the other way, the new setting of prior.df=10 is equivalent
+to prior.n=10/24.
+
+To recover old results with the current software you would use
+
+  estimateTagwiseDisp(object, prior.df=240, trend="none")
+
+To get the new default from old software you would use
+
+  estimateTagwiseDisp(object, prior.n=10/24, trend=TRUE)
+
+Actually the old trend method is equivalent to trend="loess" in the new
+software. You should use plotBCV(object) to see whether a trend is
+required.
+
+Note you could also use
+
+  prior.n = getPriorN(object, prior.df=10)
+
+to map between prior.df and prior.n.
+
+
+ .. _edgeR: http://www.bioconductor.org/packages/release/bioc/html/edgeR.html
+ .. _edgeR_Manual: http://www.bioconductor.org/packages/release/bioc/vignettes/edgeR/inst/doc/edgeRUsersGuide.pdf
+
+</help>
+
+</tool>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/rgedgeRpaired.xml	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,627 @@
+<tool id="rgedgeRpaired" name="edgeR paired" version="0.18">
+  <description>2 level Anova for counts</description>
+  <command interpreter="python">
+     rgToolFactory.py --script_path "$runme" --interpreter "Rscript" --tool_name "edgeR" 
+    --output_dir "$html_file.files_path" --output_html "$html_file" --output_tab "$outtab" --make_HTML "yes"
+  </command>
+  <inputs>
+    <param name="input1"  type="data" format="tabular" label="Select an input matrix - rows are contigs, columns are counts for each sample"
+       help="Use the HTSeq based count matrix preparation tool to create these matrices from BAM/SAM files and a GTF file of genomic features"/>
+    <param name="title" type="text" value="edgeR" size="80" label="Title for job outputs" help="Supply a meaningful name here to remind you what the outputs contain">
+      <sanitizer invalid_char="">
+        <valid initial="string.letters,string.digits"><add value="_" /> </valid>
+      </sanitizer>
+    </param>
+    <param name="treatment_name" type="text" value="Treatment" size="50" label="Treatment Name"/>
+    <param name="Treat_cols" label="Select columns containing treatment." type="data_column" data_ref="input1" numerical="True" 
+         multiple="true" use_header_names="true" size="120" display="checkboxes">
+        <validator type="no_options" message="Please select at least one column."/>
+    </param>
+    <param name="control_name" type="text" value="Control" size="50" label="Control Name"/>
+    <param name="Control_cols" label="Select columns containing control." type="data_column" data_ref="input1" numerical="True" 
+         multiple="true" use_header_names="true" size="120" display="checkboxes" optional="true">
+    </param>
+    <param name="subjectids" type="text" optional="true" size="120"
+       label="IF SUBJECTS NOT ALL INDEPENDENT! Enter integers to indicate sample pairing for every column in input"
+       help="Leave blank if no pairing, but eg if data from sample id A99 is in columns 2,4 and id C21 is in 3,5 then enter '1,2,1,2'">
+      <sanitizer>
+        <valid initial="string.digits"><add value="," /> </valid>
+      </sanitizer>
+    </param>
+    <param name="fQ" type="float" value="0.3" size="5" label="Non-differential contig count quantile threshold - zero to analyze all non-zero read count contigs"
+     help="May be a good or a bad idea depending on the biology and the question. EG 0.3 = sparsest 30% of contigs with at least one read are removed before analysis"/>
+    <param name="useNDF" type="boolean" truevalue="T" checked='false' falsevalue="" size="1" label="Non differential filter - remove contigs below a threshold (1 per million) for half or more samples"
+     help="May be a good or a bad idea depending on the biology and the question. This was the old default. Quantile based is available as an alternative"/>
+    <param name="priordf" type="integer" value="20" size="3" label="prior.df for tagwise dispersion - lower value = more emphasis on each tag's variance. Replaces prior.n  and prior.df = prior.n * residual.df"
+     help="Zero = Use edgeR default. Use a small value to 'smooth' small samples. See edgeR docs and note below"/>
+    <param name="fdrthresh" type="float" value="0.05" size="5" label="P value threshold for FDR filtering for amily wise error rate control"
+     help="Conventional default value of 0.05 recommended"/>
+    <param name="fdrtype" type="select" label="FDR (Type II error) control method" 
+         help="Use fdr or bh typically to control for the number of tests in a reliable way">
+            <option value="fdr" selected="true">fdr</option>
+            <option value="BH">Benjamini Hochberg</option>
+            <option value="BY">Benjamini Yukateli</option>
+            <option value="bonferroni">Bonferroni</option>
+            <option value="hochberg">Hochberg</option>
+            <option value="holm">Holm</option>
+            <option value="hommel">Hommel</option>
+            <option value="none">no control for multiple tests</option>
+    </param>
+  </inputs>
+  <outputs>
+    <data format="tabular" name="outtab" label="${title}.xls"/>
+    <data format="html" name="html_file" label="${title}.html"/>
+  </outputs>
+ <stdio>
+     <exit_code range="4"   level="fatal"   description="Number of subject ids must match total number of samples in the input matrix" />
+ </stdio>
+ <tests>
+<test>
+<param name='input1' value='test_bams2mx.xls' ftype='tabular' />
+ <param name='treatment_name' value='case' />
+ <param name='title' value='edgeRtest' />
+ <param name='fdrtype' value='fdr' />
+ <param name='priordf' value="0" />
+ <param name='fdrthresh' value="0.05" />
+ <param name='control_name' value='control' />
+ <param name='Treat_cols' value='3,4,5,9' />
+ <param name='Control_cols' value='2,6,7,8' />
+ <output name='outtab' file='edgeRtest1out.xls' ftype='tabular' compare='diff' />
+ <output name='html_file' file='edgeRtest1out.html' ftype='html' compare='diff' lines_diff='20' />
+</test>
+</tests>
+
+<configfiles>
+<configfile name="runme">
+<![CDATA[
+# 
+# edgeR.Rscript
+# updated npv 2011 for R 2.14.0 and edgeR 2.4.0 by ross
+# Performs DGE on a count table containing n replicates of two conditions
+#
+# Parameters
+#
+# 1 - Output Dir
+
+# Original edgeR code by: S.Lunke and A.Kaspi
+reallybig = log10(.Machine\$double.xmax)
+reallysmall = log10(.Machine\$double.xmin)
+library('stringr')
+library('gplots')
+library('DESeq')
+library('edgeR')
+hmap2 = function(cmat,nsamp=100,outpdfname='heatmap2.pdf', TName='Treatment',group=NA,myTitle='title goes here')
+{
+# Perform clustering for significant pvalues after controlling FWER
+    samples = colnames(cmat)
+    gu = unique(group)
+    if (length(gu) == 2) {
+        col.map = function(g) {if (g==gu[1]) "#FF0000" else "#0000FF"}
+        pcols = unlist(lapply(group,col.map))        
+        } else {
+        colours = rainbow(length(gu),start=0,end=4/6)
+        pcols = colours[match(group,gu)]        }
+    gn = rownames(cmat)
+    dm = cmat[(! is.na(gn)),] 
+    # remove unlabelled hm rows
+    nprobes = nrow(dm)
+    # sub = paste('Showing',nprobes,'contigs ranked for evidence of differential abundance')
+    if (nprobes > nsamp) {
+      dm =dm[1:nsamp,]
+      #sub = paste('Showing',nsamp,'contigs ranked for evidence for differential abundance out of',nprobes,'total')
+    }
+    newcolnames = substr(colnames(dm),1,20)
+    colnames(dm) = newcolnames
+    pdf(outpdfname)
+    heatmap.2(dm,main=myTitle,ColSideColors=pcols,col=topo.colors(100),dendrogram="col",key=T,density.info='none',
+         Rowv=F,scale='row',trace='none',margins=c(8,8),cexRow=0.4,cexCol=0.5)
+    dev.off()
+}
+
+hmap = function(cmat,nmeans=4,outpdfname="heatMap.pdf",nsamp=250,TName='Treatment',group=NA,myTitle="Title goes here")
+{
+    # for 2 groups only was
+    #col.map = function(g) {if (g==TName) "#FF0000" else "#0000FF"}
+    #pcols = unlist(lapply(group,col.map))
+    gu = unique(group)
+    colours = rainbow(length(gu),start=0.3,end=0.6)
+    pcols = colours[match(group,gu)]
+    nrows = nrow(cmat)
+    mtitle = paste(myTitle,'Heatmap: n contigs =',nrows)
+    if (nrows > nsamp)  {
+               cmat = cmat[c(1:nsamp),]
+               mtitle = paste('Heatmap: Top ',nsamp,' DE contigs (of ',nrows,')',sep='')
+          }
+    newcolnames = substr(colnames(cmat),1,20)
+    colnames(cmat) = newcolnames
+    pdf(outpdfname)
+    heatmap(cmat,scale='row',main=mtitle,cexRow=0.3,cexCol=0.4,Rowv=NA,ColSideColors=pcols)
+    dev.off()
+}
+
+qqPlot = function(descr='Title',pvector, ...)
+# stolen from https://gist.github.com/703512
+{
+    o = -log10(sort(pvector,decreasing=F))
+    e = -log10( 1:length(o)/length(o) )
+    o[o==-Inf] = reallysmall
+    o[o==Inf] = reallybig
+    pdfname = paste(gsub(" ","", descr , fixed=TRUE),'pval_qq.pdf',sep='_')
+    maint = paste(descr,'QQ Plot')
+    pdf(pdfname)
+    plot(e,o,pch=19,cex=1, main=maint, ...,
+        xlab=expression(Expected~~-log[10](italic(p))),
+        ylab=expression(Observed~~-log[10](italic(p))),
+        xlim=c(0,max(e)), ylim=c(0,max(o)))
+    lines(e,e,col="red")
+    grid(col = "lightgray", lty = "dotted")
+    dev.off()
+}
+
+smearPlot = function(DGEList,deTags, outSmear, outMain)
+        {
+        pdf(outSmear)
+        plotSmear(DGEList,de.tags=deTags,main=outMain)
+        grid(col="blue")
+        dev.off()
+        }
+        
+boxPlot = function(rawrs,cleanrs,maint,myTitle)
+{   # 
+        nc = ncol(rawrs)
+        for (i in c(1:nc)) {rawrs[(rawrs[,i] < 0),i] = NA}
+        fullnames = colnames(rawrs)
+        newcolnames = substr(colnames(rawrs),1,20)
+        colnames(rawrs) = newcolnames
+        newcolnames = substr(colnames(cleanrs),1,20)
+        colnames(cleanrs) = newcolnames
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"sampleBoxplot.pdf",sep='_')
+        defpar = par(no.readonly=T)
+        pdf(pdfname,height=6,width=8)
+        #par(mfrow=c(1,2)) # 1 rows 2 col
+        l = layout(matrix(c(1,2),1,2,byrow=T))
+        print.noquote('raw contig counts by sample:')
+        print.noquote(summary(rawrs))
+        print.noquote('normalised contig counts by sample:')
+        print.noquote(summary(cleanrs))
+        boxplot(rawrs,varwidth=T,notch=T,ylab='log contig count',col="maroon",las=3,cex.axis=0.35,main=paste('Raw:',maint))
+        grid(col="blue")
+        boxplot(cleanrs,varwidth=T,notch=T,ylab='log contig count',col="maroon",las=3,cex.axis=0.35,main=paste('After ',maint))
+        grid(col="blue")
+        dev.off()
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"samplehistplot.pdf",sep='_') 
+        nc = ncol(rawrs)
+        print.noquote(paste('Using ncol rawrs=',nc))
+        ncroot = round(sqrt(nc))
+        if (ncroot*ncroot < nc) { ncroot = ncroot + 1 }
+        m = c()
+        for (i in c(1:nc)) {
+              rhist = hist(rawrs[,i],breaks=100,plot=F)
+              m = append(m,max(rhist\$counts))
+             }
+        ymax = max(m)
+        pdf(pdfname)
+        par(mfrow=c(ncroot,ncroot))
+        for (i in c(1:nc)) {
+                 hist(rawrs[,i], main=paste("Contig logcount",i), xlab='log raw count', col="maroon", 
+                 breaks=100,sub=fullnames[i],cex=0.8,ylim=c(0,ymax))
+             }
+        dev.off()
+        par(defpar)
+      
+}
+
+cumPlot = function(rawrs,cleanrs,maint,myTitle)
+{   # updated to use ecdf
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        defpar = par(no.readonly=T)
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lrs = log(rawrs,10) 
+        lim = max(lrs)
+        hist(lrs,breaks=100,main=paste('Before:',maint),xlab="# Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle, xlim=c(0,lim),las=1)
+        grid(col="blue")
+        lrs = log(cleanrs,10) 
+        hist(lrs,breaks=100,main=paste('After:',maint),xlab="# Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle,xlim=c(0,lim),las=1)
+        grid(col="blue")
+        dev.off()
+        par(defpar)
+}
+
+cumPlot1 = function(rawrs,cleanrs,maint,myTitle)
+{   # updated to use ecdf
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lastx = max(rawrs)
+        rawe = knots(ecdf(rawrs))
+        cleane = knots(ecdf(cleanrs))
+        cy = 1:length(cleane)/length(cleane)
+        ry = 1:length(rawe)/length(rawe)
+        plot(rawe,ry,type='l',main=paste('Before',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        plot(cleane,cy,type='l',main=paste('After',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        dev.off()
+}
+
+
+
+edgeIt = function (Count_Matrix,group,outputfilename,fdrtype='fdr',priordf=5,fdrthresh=0.05,outputdir='.',
+    myTitle='edgeR',libSize=c(),useNDF="T",filterquantile=0.2,subjects=c()) {
+
+        # Error handling
+        if (length(unique(group))!=2){
+                print("Number of conditions identified in experiment does not equal 2")
+                q()
+        }
+        require(edgeR)
+        mt = paste(unlist(strsplit(myTitle,'_')),collapse=" ")
+        allN = nrow(Count_Matrix)
+        nscut = round(ncol(Count_Matrix)/2)
+        colTotmillionreads = colSums(Count_Matrix)/1e6
+        rawrs = rowSums(Count_Matrix)
+        nonzerod = Count_Matrix[(rawrs > 0),] # remove all zero count genes
+        nzN = nrow(nonzerod)
+        nzrs = rowSums(nonzerod)
+        zN = allN - nzN
+        print('# Quantiles for non-zero row counts:',quote=F)
+        print(quantile(nzrs,probs=seq(0,1,0.1)),quote=F)
+        if (useNDF == "T")
+        {
+        gt1rpin3 = rowSums(Count_Matrix/expandAsMatrix(colTotmillionreads,dim(Count_Matrix)) >= 1) >= nscut
+        lo = colSums(Count_Matrix[!gt1rpin3,])
+        workCM = Count_Matrix[gt1rpin3,]
+        cleanrs = rowSums(workCM)
+        cleanN = length(cleanrs)
+        meth = paste( "After removing",length(lo),"contigs with fewer than ",nscut," sample read counts >= 1 per million, there are",sep="")
+        print(paste("Read",allN,"contigs. Removed",zN,"contigs with no reads.",meth,cleanN,"contigs"),quote=F)
+        maint = paste('Filter >=1/million reads in >=',nscut,'samples')
+        }
+        else {        
+        useme = (nzrs > quantile(nzrs,filterquantile))
+        workCM = nonzerod[useme,]
+        lo = colSums(nonzerod[!useme,])
+        cleanrs = rowSums(workCM)
+        cleanN = length(cleanrs)
+        meth = paste("After filtering at count quantile =",filterquantile,", there are",sep="")
+        print(paste('Read',allN,"contigs. Removed",zN,"with no reads.",meth,cleanN,"contigs"),quote=F)
+        maint = paste('Filter below',filterquantile,'quantile')
+        }
+        cumPlot(rawrs=rawrs,cleanrs=cleanrs,maint=maint,myTitle=myTitle)
+        allgenes <- rownames(workCM)
+        print(paste("# Total low count contigs per sample = ",paste(lo,collapse=',')),quote=F) 
+        rsums = rowSums(workCM)
+        TName=unique(group)[1]
+        CName=unique(group)[2]
+        # Setup DGEList object
+        DGEList = DGEList(counts=workCM, group = group)
+        if (length(subjects) == 0) 
+            {
+               doDESEQ = T
+               mydesign = model.matrix(~group)
+            } 
+            else { 
+              doDESEQ = F
+              subjf = factor(subjects)
+              mydesign = model.matrix(~subjf+group) # we block on subject so make group last to simplify finding it
+            }
+        print.noquote(paste('Using samples:',paste(colnames(workCM),collapse=',')))
+        print.noquote('Using design matrix:')
+        print.noquote(mydesign)
+        DGEList = estimateGLMCommonDisp(DGEList,mydesign)
+        comdisp = DGEList\$common.dispersion
+        DGEList = estimateGLMTrendedDisp(DGEList,mydesign)
+        if (priordf > 0) {
+           print.noquote(paste("prior.df =",priordf))
+           DGEList = estimateGLMTagwiseDisp(DGEList,mydesign,prior.df = priordf)
+        } else {
+           DGEList = estimateGLMTagwiseDisp(DGEList,mydesign)
+        }
+        DGLM = glmFit(DGEList,design=mydesign)
+        efflib = DGEList\$samples\$lib.size*DGEList\$samples\$norm.factors
+        normData = (1e+06*DGEList\$counts/efflib)
+        co = length(colnames(mydesign))
+        DE = glmLRT(DGLM,coef=co) # always last one - subject is first if needed
+        uoutput = cbind( 
+                Name=as.character(rownames(DGEList\$counts)),
+                DE\$table,
+                adj.p.value=p.adjust(DE\$table\$PValue, method=fdrtype),
+                Dispersion=DGEList\$tagwise.dispersion,totreads=rsums,normData,
+                DGEList\$counts
+        )
+        soutput = uoutput[order(DE\$table\$PValue),] # sorted into p value order - for quick toptable
+        goodness = gof(DGLM, pcutoff=fdrthresh)
+        if (sum(goodness\$outlier) > 0) {
+            print.noquote('GLM outliers:')
+            print(paste(rownames(DGLM)[(goodness\$outlier != 0)],collapse=','),quote=F)
+            z = limma::zscoreGamma(goodness\$gof.statistic, shape=goodness\$df/2, scale=2)
+            pdf(paste(mt,"GoodnessofFit.pdf",sep='_'))
+            qq = qqnorm(z, panel.first=grid(), main="tagwise dispersion")
+            abline(0,1,lwd=3)
+            points(qq\$x[goodness\$outlier],qq\$y[goodness\$outlier], pch=16, col="dodgerblue")
+            dev.off()
+            } else { print('No GLM fit outlier genes found\n')}
+        estpriorn = getPriorN(DGEList)
+        print(paste("Common Dispersion =",comdisp,"CV = ",sqrt(comdisp),"getPriorN = ",estpriorn),quote=F)
+        efflib = DGEList\$samples\$lib.size*DGEList\$samples\$norm.factors
+        normData = (1e+06*DGEList\$counts/efflib)
+        uniqueg = unique(group)
+        # Plot MDS
+        sample_colors =  match(group,levels(group))
+        pdf(paste(mt,"MDSplot.pdf",sep='_'))
+        sampleTypes = levels(group)
+        plotMDS.DGEList(DGEList,main=paste("MDS Plot for",myTitle),cex=0.5,col=sample_colors,pch=sample_colors)
+        legend(x="topleft", legend = sampleTypes,col=c(1:length(sampleTypes)), pch=19)
+        grid(col="blue")
+        dev.off()
+        colnames(normData) = paste( colnames(normData),'N',sep="_")
+        print(paste('Raw sample read totals',paste(colSums(nonzerod,na.rm=T),collapse=',')))
+        nzd = data.frame(log(nonzerod + 1e-2,10))
+        boxPlot(rawrs=nzd,cleanrs=log(normData,10),maint='TMM Normalisation',myTitle=myTitle)
+        if (doDESEQ)
+        {
+        # DESeq
+        deSeqDatcount <- newCountDataSet(workCM, group)
+        deSeqDatsizefac <- estimateSizeFactors(deSeqDatcount)
+        deSeqDatdisp <- estimateDispersions(deSeqDatsizefac)
+        rDESeq <- nbinomTest(deSeqDatdisp, levels(group)[1], levels(group)[2])
+        rDESeq <- rDESeq[order(rDESeq\$pval), ]
+        write.table(rDESeq,paste(mt,'DESeq_TopTable.xls',sep='_'), quote=FALSE, sep="\t",row.names=F)
+        topresults.DESeq <- rDESeq[which(rDESeq\$padj < fdrthresh), ]
+        DESeqcountsindex <- which(allgenes %in% topresults.DESeq\$id)
+        DESeqcounts <- rep(0, length(allgenes))
+        DESeqcounts[DESeqcountsindex] <- 1
+        }
+        DGEList = calcNormFactors(DGEList)
+        norm.factor = DGEList\$samples\$norm.factors
+        pdf(paste(mt,"voomplot.pdf",sep='_'))
+        dat.voomed <- voom(DGEList, mydesign, plot = TRUE, lib.size = colSums(workCM) * norm.factor)
+        dev.off()
+        # Use limma to fit data
+        fit <- lmFit(dat.voomed, mydesign)
+        fit <- eBayes(fit)
+        rvoom <- topTable(fit, coef = length(colnames(mydesign)), adj = "BH", n = Inf)
+        write.table(rvoom,paste(mt,'VOOM_topTable.xls',sep='_'), quote=FALSE, sep="\t",row.names=F)
+        # Use an FDR cutoff to find interesting samples for edgeR, DESeq and voom/limma
+        topresults.voom <- rvoom[which(rvoom\$adj.P.Val < fdrthresh), ]
+        topresults.edgeR <- soutput[which(soutput\$adj.p.value < fdrthresh), ]
+        # Create venn diagram of hits
+        edgeRcountsindex <- which(allgenes %in% rownames(topresults.edgeR))
+        voomcountsindex <- which(allgenes %in% topresults.voom\$ID)
+        edgeRcounts <- rep(0, length(allgenes))
+        edgeRcounts[edgeRcountsindex] <- 1
+        voomcounts <- rep(0, length(allgenes))
+        voomcounts[voomcountsindex] <- 1
+        if (doDESEQ) {
+            vennmain = paste(mt,'Voom,edgeR and DESeq overlap at FDR=',fdrthresh)
+            counts.dataframe <- data.frame(edgeRcounts = edgeRcounts, DESeqcounts = DESeqcounts, 
+                voomcounts = voomcounts, row.names = allgenes)
+        } else {
+            vennmain = paste(mt,'Voom and edgeR overlap at FDR=',fdrthresh)
+            counts.dataframe <- data.frame(edgeRcounts = edgeRcounts, voomcounts = voomcounts, row.names = allgenes)
+        }
+        counts.venn <- vennCounts(counts.dataframe)
+        vennf = paste(mt,'venn.pdf',sep='_')
+        pdf(vennf)
+        vennDiagram(counts.venn,main=vennmain,col="maroon")
+        dev.off()
+        #Prepare our output file
+        nreads = soutput\$totreads # ordered same way
+        print('# writing output',quote=F)
+        write.table(soutput,outputfilename, quote=FALSE, sep="\t",row.names=F)
+        rn = uoutput\$Name
+        reg = "^chr([0-9]+):([0-9]+)-([0-9]+)"
+        org="hg19"
+        genecards="<a href='http://www.genecards.org/index.php?path=/Search/keyword/"
+        ucsc = paste("<a href='http://genome.ucsc.edu/cgi-bin/hgTracks?db=",org,sep='')
+        testreg = str_match(rn,reg)
+        nreads = uoutput\$totreads # ordered same way
+        if (sum(!is.na(testreg[,1]))/length(testreg[,1]) > 0.8) # is ucsc style string
+        {
+          urls = paste(ucsc,'&amp;position=chr',testreg[,2],':',testreg[,3],"-",testreg[,4],"'>",rn,'</a>',sep='')
+        } else {
+          urls = paste(genecards,rn,"'></a>",rn,'</a>',sep="")
+        }
+        print.noquote('# urls')
+        cat(head(urls))
+        tt = uoutput
+        cat("# Top tags\n")
+        tt = cbind(tt,ntotreads=nreads,URL=urls) # add to end so table isn't laid out strangely
+        tt = tt[order(DE\$table\$PValue),] 
+        options(width = 500) 
+        print.noquote(tt[1:50,])
+        pdf(paste(mt,"BCV_vs_abundance.pdf",sep='_'))
+        plotBCV(DGEList, cex=0.3, main="Biological CV vs abundance")
+        dev.off()
+        # Plot MAplot
+        deTags = rownames(uoutput[uoutput\$adj.p.value < fdrthresh,])
+        nsig = length(deTags)
+        print(paste('#',nsig,'tags significant at adj p=',fdrthresh),quote=F)
+        print('# deTags',quote=F)
+        print(head(deTags))
+        dg = DGEList[order(DE\$table\$PValue),]
+        #normData = (1e+06 * dg\$counts/expandAsMatrix(dg\$samples\$lib.size, dim(dg)))
+        efflib = dg\$samples\$lib.size*dg\$samples\$norm.factors
+        normData = (1e+06*dg\$counts/efflib)
+        outpdfname=paste(mt,"heatmap.pdf",sep='_')
+        hmap2(normData,nsamp=100,TName=TName,group=group,outpdfname=outpdfname,myTitle=myTitle)
+        outSmear = paste(mt,"Smearplot.pdf",sep='_')
+        outMain = paste("Smear Plot for ",TName,' Vs ',CName,' (FDR@',fdrthresh,' N = ',nsig,')',sep='')
+        smearPlot(DGEList=DGEList,deTags=deTags, outSmear=outSmear, outMain = outMain)
+        qqPlot(descr=myTitle,pvector=DE\$table\$PValue)
+        if (doDESEQ) {
+           cat("# DESeq top 50\n")
+           print(rDESeq[1:50,])
+        }
+        cat("# VOOM top 50\n")
+        print(rvoom[1:50,])
+        # need a design matrix and glm to use this
+        goodness = gof(DGLM, pcutoff=fdrthresh)
+        nout = sum(goodness\$outlier)
+        if (nout > 0) {
+            print.noquote(paste('Found',nout,'Goodness of fit outliers'))
+            rownames(DGLM)[goodness\$outlier]
+            z = limma::zscoreGamma(goodness\$gof.statistic, shape=goodness\$df/2, scale=2)
+            pdf(paste(mt,"GoodnessofFit.pdf",sep='_'))
+            qq = qqnorm(z, panel.first=grid(), main="tagwise dispersion")
+            abline(0,1,lwd=3)
+            points(qq\$x[goodness\$outlier],qq\$y[goodness\$outlier], pch=16, col="dodgerblue")
+            dev.off()
+            }
+        #Return our main table
+        uoutput 
+  
+}       #Done
+sink(stdout(),append=T,type="message")
+options(width=512)
+Out_Dir = "$html_file.files_path"
+Input =  "$input1"
+TreatmentName = "$treatment_name"
+TreatmentCols = "$Treat_cols"
+ControlName = "$control_name"
+ControlCols= "$Control_cols"
+outputfilename = "$outtab"
+fdrtype = "$fdrtype"
+priordf = $priordf
+fdrthresh = $fdrthresh
+useNDF = "$useNDF"
+fQ = $fQ # non-differential centile cutoff
+myTitle = "$title"
+subjects = c($subjectids)
+nsubj = length(subjects)
+#Set our columns 
+TCols           = as.numeric(strsplit(TreatmentCols,",")[[1]])-1
+CCols           = as.numeric(strsplit(ControlCols,",")[[1]])-1 
+cat('# got TCols=')
+cat(TCols)
+cat('; CCols=')
+cat(CCols)
+cat('\n')
+useCols = c(TCols,CCols)
+# Create output dir if non existent
+  if (file.exists(Out_Dir) == F) dir.create(Out_Dir)
+
+Count_Matrix = read.table(Input,header=T,row.names=1,sep='\t') #Load tab file assume header
+snames = colnames(Count_Matrix)
+nsamples = length(snames)
+if (nsubj >  0 & nsubj != nsamples) {
+options("show.error.messages"=T)
+mess = paste('Fatal error: Supplied subject id list',paste(subjects,collapse=','),'has length',nsubj,'but there are',nsamples,'samples',paste(snames,collapse=','))
+write(mess, stderr())
+#print(mess)
+quit(save="no",status=4)
+}
+
+Count_Matrix = Count_Matrix[,useCols] # reorder columns
+if (length(subjects) != 0) {subjects = subjects[useCols]}
+rn = rownames(Count_Matrix)
+islib = rn %in% c('librarySize','NotInBedRegions')
+LibSizes = Count_Matrix[subset(rn,islib),][1] # take first
+Count_Matrix = Count_Matrix[subset(rn,! islib),]
+group = c(rep(TreatmentName,length(TCols)), rep(ControlName,length(CCols)) )             #Build a group descriptor
+group = factor(group, levels=c(ControlName,TreatmentName))
+colnames(Count_Matrix) = paste(group,colnames(Count_Matrix),sep="_")                   #Relable columns
+results = edgeIt(Count_Matrix=Count_Matrix,group=group,outputfilename=outputfilename,fdrtype=fdrtype,priordf=priordf,fdrthresh=fdrthresh,
+   outputdir=Out_Dir,myTitle=myTitle,libSize=c(),useNDF=useNDF,filterquantile=fQ,subjects=subjects) 
+#Run the main function
+# for the log
+sessionInfo()
+]]>
+</configfile>
+</configfiles>
+<help>
+**What it does**
+
+Performs digital gene expression analysis between a treatment and control on a count matrix.
+Optionally adds a term for subject if not all samples are independent or if some other factor needs to be blocked in the design.
+
+**Input**
+
+A matrix consisting of non-negative integers. The matrix must have a unique header row identifiying the samples, and a unique set of row names 
+as  the first column. Typically the row names are gene symbols or probe id's for downstream use in GSEA and other methods.
+
+If you have (eg) paired samples and wish to include a term in the GLM to account for some other factor (subject in the case of paired samples),
+put a comma separated list of indicators for every sample (whether modelled or not!) indicating (eg) the subject number or 
+A list of integers, one for each subject or an empty string if samples are all independent.
+If not empty, there must be exactly as many integers in the supplied integer list as there are columns (samples) in the count matrix.
+Integers for samples that are not in the analysis *must* be present in the string as filler even if not used.
+
+So if you have 2 pairs out of 6 samples, you need to put in unique integers for the unpaired ones
+eg if you had 6 samples with the first two independent but the second and third pairs each being from independent subjects. you might use
+8,9,1,1,2,2 
+as subject IDs to indicate two paired samples from the same subject in columns 3/4 and 5/6
+
+**Output**
+
+A matrix which consists the original data and relative expression levels and some helpful plots
+
+**Note on edgeR versions**
+
+The edgeR authors made a small cosmetic change in the name of one important variable (from p.value to PValue) 
+breaking this and all other code that assumed the old name for this variable, 
+between edgeR2.4.4 and 2.4.6 (the version for R 2.14 as at the time of writing). 
+This means that all code using edgeR is sensitive to the version. I think this was a very unwise thing 
+to do because it wasted hours of my time to track down and will similarly cost other edgeR users dearly
+when their old scripts break. This tool currently now works with 2.4.6.
+
+**Note on prior.N**
+
+http://seqanswers.com/forums/showthread.php?t=5591 says:
+
+*prior.n*
+
+The value for prior.n determines the amount of smoothing of tagwise dispersions towards the common dispersion. 
+You can think of it as like a "weight" for the common value. (It is actually the weight for the common likelihood 
+in the weighted likelihood equation). The larger the value for prior.n, the more smoothing, i.e. the closer your 
+tagwise dispersion estimates will be to the common dispersion. If you use a prior.n of 1, then that gives the 
+common likelihood the weight of one observation.
+
+In answer to your question, it is a good thing to squeeze the tagwise dispersions towards a common value, 
+or else you will be using very unreliable estimates of the dispersion. I would not recommend using the value that 
+you obtained from estimateSmoothing()---this is far too small and would result in virtually no moderation 
+(squeezing) of the tagwise dispersions. How many samples do you have in your experiment? 
+What is the experimental design? If you have few samples (less than 6) then I would suggest a prior.n of at least 10. 
+If you have more samples, then the tagwise dispersion estimates will be more reliable, 
+so you could consider using a smaller prior.n, although I would hesitate to use a prior.n less than 5. 
+
+
+From Bioconductor Digest, Vol 118, Issue 5, Gordon writes:
+
+Dear Dorota,
+
+The important settings are prior.df and trend.
+
+prior.n and prior.df are related through prior.df = prior.n * residual.df,
+and your experiment has residual.df = 36 - 12 = 24.  So the old setting of
+prior.n=10 is equivalent for your data to prior.df = 240, a very large
+value.  Going the other way, the new setting of prior.df=10 is equivalent
+to prior.n=10/24.
+
+To recover old results with the current software you would use
+
+  estimateTagwiseDisp(object, prior.df=240, trend="none")
+
+To get the new default from old software you would use
+
+  estimateTagwiseDisp(object, prior.n=10/24, trend=TRUE)
+
+Actually the old trend method is equivalent to trend="loess" in the new
+software. You should use plotBCV(object) to see whether a trend is
+required.
+
+Note you could also use
+
+  prior.n = getPriorN(object, prior.df=10)
+
+to map between prior.df and prior.n.
+
+</help>
+
+</tool>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/rgedgeRpaired.xml.iaas1	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,627 @@
+<tool id="rgedgeRpaired" name="edgeR paired" version="0.18">
+  <description>2 level Anova for counts</description>
+  <command interpreter="python">
+     rgToolFactory.py --script_path "$runme" --interpreter "Rscript" --tool_name "edgeR" 
+    --output_dir "$html_file.files_path" --output_html "$html_file" --output_tab "$outtab" --make_HTML "yes"
+  </command>
+  <inputs>
+    <param name="input1"  type="data" format="tabular" label="Select an input matrix - rows are contigs, columns are counts for each sample"
+       help="Use the HTSeq based count matrix preparation tool to create these matrices from BAM/SAM files and a GTF file of genomic features"/>
+    <param name="title" type="text" value="edgeR" size="80" label="Title for job outputs" help="Supply a meaningful name here to remind you what the outputs contain">
+      <sanitizer invalid_char="">
+        <valid initial="string.letters,string.digits"><add value="_" /> </valid>
+      </sanitizer>
+    </param>
+    <param name="treatment_name" type="text" value="Treatment" size="50" label="Treatment Name"/>
+    <param name="Treat_cols" label="Select columns containing treatment." type="data_column" data_ref="input1" numerical="True" 
+         multiple="true" use_header_names="true" size="120" display="checkboxes">
+        <validator type="no_options" message="Please select at least one column."/>
+    </param>
+    <param name="control_name" type="text" value="Control" size="50" label="Control Name"/>
+    <param name="Control_cols" label="Select columns containing control." type="data_column" data_ref="input1" numerical="True" 
+         multiple="true" use_header_names="true" size="120" display="checkboxes" optional="true">
+    </param>
+    <param name="subjectids" type="text" optional="true" size="120"
+       label="IF SUBJECTS NOT ALL INDEPENDENT! Enter integers to indicate sample pairing for every column in input"
+       help="Leave blank if no pairing, but eg if data from sample id A99 is in columns 2,4 and id C21 is in 3,5 then enter '1,2,1,2'">
+      <sanitizer>
+        <valid initial="string.digits"><add value="," /> </valid>
+      </sanitizer>
+    </param>
+    <param name="fQ" type="float" value="0.3" size="5" label="Non-differential contig count quantile threshold - zero to analyze all non-zero read count contigs"
+     help="May be a good or a bad idea depending on the biology and the question. EG 0.3 = sparsest 30% of contigs with at least one read are removed before analysis"/>
+    <param name="useNDF" type="boolean" truevalue="T" checked='false' falsevalue="" size="1" label="Non differential filter - remove contigs below a threshold (1 per million) for half or more samples"
+     help="May be a good or a bad idea depending on the biology and the question. This was the old default. Quantile based is available as an alternative"/>
+    <param name="priordf" type="integer" value="20" size="3" label="prior.df for tagwise dispersion - lower value = more emphasis on each tag's variance. Replaces prior.n  and prior.df = prior.n * residual.df"
+     help="Zero = Use edgeR default. Use a small value to 'smooth' small samples. See edgeR docs and note below"/>
+    <param name="fdrthresh" type="float" value="0.05" size="5" label="P value threshold for FDR filtering for amily wise error rate control"
+     help="Conventional default value of 0.05 recommended"/>
+    <param name="fdrtype" type="select" label="FDR (Type II error) control method" 
+         help="Use fdr or bh typically to control for the number of tests in a reliable way">
+            <option value="fdr" selected="true">fdr</option>
+            <option value="BH">Benjamini Hochberg</option>
+            <option value="BY">Benjamini Yukateli</option>
+            <option value="bonferroni">Bonferroni</option>
+            <option value="hochberg">Hochberg</option>
+            <option value="holm">Holm</option>
+            <option value="hommel">Hommel</option>
+            <option value="none">no control for multiple tests</option>
+    </param>
+  </inputs>
+  <outputs>
+    <data format="tabular" name="outtab" label="${title}.xls"/>
+    <data format="html" name="html_file" label="${title}.html"/>
+  </outputs>
+ <stdio>
+     <exit_code range="4"   level="fatal"   description="Number of subject ids must match total number of samples in the input matrix" />
+ </stdio>
+ <tests>
+<test>
+<param name='input1' value='test_bams2mx.xls' ftype='tabular' />
+ <param name='treatment_name' value='case' />
+ <param name='title' value='edgeRtest' />
+ <param name='fdrtype' value='fdr' />
+ <param name='priordf' value="0" />
+ <param name='fdrthresh' value="0.05" />
+ <param name='control_name' value='control' />
+ <param name='Treat_cols' value='c3,c4,c5,c9' />
+ <param name='Control_cols' value='c2,c6,c7,c8' />
+ <output name='outtab' file='edgeRtest1out.xls' ftype='tabular' compare='diff' />
+ <output name='html_file' file='edgeRtest1out.html' ftype='html' compare='diff' lines_diff='20' />
+</test>
+</tests>
+
+<configfiles>
+<configfile name="runme">
+<![CDATA[
+# 
+# edgeR.Rscript
+# updated npv 2011 for R 2.14.0 and edgeR 2.4.0 by ross
+# Performs DGE on a count table containing n replicates of two conditions
+#
+# Parameters
+#
+# 1 - Output Dir
+
+# Original edgeR code by: S.Lunke and A.Kaspi
+reallybig = log10(.Machine\$double.xmax)
+reallysmall = log10(.Machine\$double.xmin)
+library('stringr')
+library('gplots')
+library('DESeq')
+library('edgeR')
+hmap2 = function(cmat,nsamp=100,outpdfname='heatmap2.pdf', TName='Treatment',group=NA,myTitle='title goes here')
+{
+# Perform clustering for significant pvalues after controlling FWER
+    samples = colnames(cmat)
+    gu = unique(group)
+    if (length(gu) == 2) {
+        col.map = function(g) {if (g==gu[1]) "#FF0000" else "#0000FF"}
+        pcols = unlist(lapply(group,col.map))        
+        } else {
+        colours = rainbow(length(gu),start=0,end=4/6)
+        pcols = colours[match(group,gu)]        }
+    gn = rownames(cmat)
+    dm = cmat[(! is.na(gn)),] 
+    # remove unlabelled hm rows
+    nprobes = nrow(dm)
+    # sub = paste('Showing',nprobes,'contigs ranked for evidence of differential abundance')
+    if (nprobes > nsamp) {
+      dm =dm[1:nsamp,]
+      #sub = paste('Showing',nsamp,'contigs ranked for evidence for differential abundance out of',nprobes,'total')
+    }
+    newcolnames = substr(colnames(dm),1,20)
+    colnames(dm) = newcolnames
+    pdf(outpdfname)
+    heatmap.2(dm,main=myTitle,ColSideColors=pcols,col=topo.colors(100),dendrogram="col",key=T,density.info='none',
+         Rowv=F,scale='row',trace='none',margins=c(8,8),cexRow=0.4,cexCol=0.5)
+    dev.off()
+}
+
+hmap = function(cmat,nmeans=4,outpdfname="heatMap.pdf",nsamp=250,TName='Treatment',group=NA,myTitle="Title goes here")
+{
+    # for 2 groups only was
+    #col.map = function(g) {if (g==TName) "#FF0000" else "#0000FF"}
+    #pcols = unlist(lapply(group,col.map))
+    gu = unique(group)
+    colours = rainbow(length(gu),start=0.3,end=0.6)
+    pcols = colours[match(group,gu)]
+    nrows = nrow(cmat)
+    mtitle = paste(myTitle,'Heatmap: n contigs =',nrows)
+    if (nrows > nsamp)  {
+               cmat = cmat[c(1:nsamp),]
+               mtitle = paste('Heatmap: Top ',nsamp,' DE contigs (of ',nrows,')',sep='')
+          }
+    newcolnames = substr(colnames(cmat),1,20)
+    colnames(cmat) = newcolnames
+    pdf(outpdfname)
+    heatmap(cmat,scale='row',main=mtitle,cexRow=0.3,cexCol=0.4,Rowv=NA,ColSideColors=pcols)
+    dev.off()
+}
+
+qqPlot = function(descr='Title',pvector, ...)
+# stolen from https://gist.github.com/703512
+{
+    o = -log10(sort(pvector,decreasing=F))
+    e = -log10( 1:length(o)/length(o) )
+    o[o==-Inf] = reallysmall
+    o[o==Inf] = reallybig
+    pdfname = paste(gsub(" ","", descr , fixed=TRUE),'pval_qq.pdf',sep='_')
+    maint = paste(descr,'QQ Plot')
+    pdf(pdfname)
+    plot(e,o,pch=19,cex=1, main=maint, ...,
+        xlab=expression(Expected~~-log[10](italic(p))),
+        ylab=expression(Observed~~-log[10](italic(p))),
+        xlim=c(0,max(e)), ylim=c(0,max(o)))
+    lines(e,e,col="red")
+    grid(col = "lightgray", lty = "dotted")
+    dev.off()
+}
+
+smearPlot = function(DGEList,deTags, outSmear, outMain)
+        {
+        pdf(outSmear)
+        plotSmear(DGEList,de.tags=deTags,main=outMain)
+        grid(col="blue")
+        dev.off()
+        }
+        
+boxPlot = function(rawrs,cleanrs,maint,myTitle)
+{   # 
+        nc = ncol(rawrs)
+        for (i in c(1:nc)) {rawrs[(rawrs[,i] < 0),i] = NA}
+        fullnames = colnames(rawrs)
+        newcolnames = substr(colnames(rawrs),1,20)
+        colnames(rawrs) = newcolnames
+        newcolnames = substr(colnames(cleanrs),1,20)
+        colnames(cleanrs) = newcolnames
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"sampleBoxplot.pdf",sep='_')
+        defpar = par(no.readonly=T)
+        pdf(pdfname,height=6,width=8)
+        #par(mfrow=c(1,2)) # 1 rows 2 col
+        l = layout(matrix(c(1,2),1,2,byrow=T))
+        print.noquote('raw contig counts by sample:')
+        print.noquote(summary(rawrs))
+        print.noquote('normalised contig counts by sample:')
+        print.noquote(summary(cleanrs))
+        boxplot(rawrs,varwidth=T,notch=T,ylab='log contig count',col="maroon",las=3,cex.axis=0.35,main=paste('Raw:',maint))
+        grid(col="blue")
+        boxplot(cleanrs,varwidth=T,notch=T,ylab='log contig count',col="maroon",las=3,cex.axis=0.35,main=paste('After ',maint))
+        grid(col="blue")
+        dev.off()
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"samplehistplot.pdf",sep='_') 
+        nc = ncol(rawrs)
+        print.noquote(paste('Using ncol rawrs=',nc))
+        ncroot = round(sqrt(nc))
+        if (ncroot*ncroot < nc) { ncroot = ncroot + 1 }
+        m = c()
+        for (i in c(1:nc)) {
+              rhist = hist(rawrs[,i],breaks=100,plot=F)
+              m = append(m,max(rhist\$counts))
+             }
+        ymax = max(m)
+        pdf(pdfname)
+        par(mfrow=c(ncroot,ncroot))
+        for (i in c(1:nc)) {
+                 hist(rawrs[,i], main=paste("Contig logcount",i), xlab='log raw count', col="maroon", 
+                 breaks=100,sub=fullnames[i],cex=0.8,ylim=c(0,ymax))
+             }
+        dev.off()
+        par(defpar)
+      
+}
+
+cumPlot = function(rawrs,cleanrs,maint,myTitle)
+{   # updated to use ecdf
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        defpar = par(no.readonly=T)
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lrs = log(rawrs,10) 
+        lim = max(lrs)
+        hist(lrs,breaks=100,main=paste('Before:',maint),xlab="# Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle, xlim=c(0,lim),las=1)
+        grid(col="blue")
+        lrs = log(cleanrs,10) 
+        hist(lrs,breaks=100,main=paste('After:',maint),xlab="# Reads (log)",
+             ylab="Count",col="maroon",sub=myTitle,xlim=c(0,lim),las=1)
+        grid(col="blue")
+        dev.off()
+        par(defpar)
+}
+
+cumPlot1 = function(rawrs,cleanrs,maint,myTitle)
+{   # updated to use ecdf
+        pdfname = paste(gsub(" ","", myTitle , fixed=TRUE),"RowsumCum.pdf",sep='_')
+        pdf(pdfname)
+        par(mfrow=c(2,1))
+        lastx = max(rawrs)
+        rawe = knots(ecdf(rawrs))
+        cleane = knots(ecdf(cleanrs))
+        cy = 1:length(cleane)/length(cleane)
+        ry = 1:length(rawe)/length(rawe)
+        plot(rawe,ry,type='l',main=paste('Before',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        plot(cleane,cy,type='l',main=paste('After',maint),xlab="Log Contig Total Reads",
+             ylab="Cumulative proportion",col="maroon",log='x',xlim=c(1,lastx),sub=myTitle)
+        grid(col="blue")
+        dev.off()
+}
+
+
+
+edgeIt = function (Count_Matrix,group,outputfilename,fdrtype='fdr',priordf=5,fdrthresh=0.05,outputdir='.',
+    myTitle='edgeR',libSize=c(),useNDF="T",filterquantile=0.2,subjects=c()) {
+
+        # Error handling
+        if (length(unique(group))!=2){
+                print("Number of conditions identified in experiment does not equal 2")
+                q()
+        }
+        require(edgeR)
+        mt = paste(unlist(strsplit(myTitle,'_')),collapse=" ")
+        allN = nrow(Count_Matrix)
+        nscut = round(ncol(Count_Matrix)/2)
+        colTotmillionreads = colSums(Count_Matrix)/1e6
+        rawrs = rowSums(Count_Matrix)
+        nonzerod = Count_Matrix[(rawrs > 0),] # remove all zero count genes
+        nzN = nrow(nonzerod)
+        nzrs = rowSums(nonzerod)
+        zN = allN - nzN
+        print('# Quantiles for non-zero row counts:',quote=F)
+        print(quantile(nzrs,probs=seq(0,1,0.1)),quote=F)
+        if (useNDF == "T")
+        {
+        gt1rpin3 = rowSums(Count_Matrix/expandAsMatrix(colTotmillionreads,dim(Count_Matrix)) >= 1) >= nscut
+        lo = colSums(Count_Matrix[!gt1rpin3,])
+        workCM = Count_Matrix[gt1rpin3,]
+        cleanrs = rowSums(workCM)
+        cleanN = length(cleanrs)
+        meth = paste( "After removing",length(lo),"contigs with fewer than ",nscut," sample read counts >= 1 per million, there are",sep="")
+        print(paste("Read",allN,"contigs. Removed",zN,"contigs with no reads.",meth,cleanN,"contigs"),quote=F)
+        maint = paste('Filter >=1/million reads in >=',nscut,'samples')
+        }
+        else {        
+        useme = (nzrs > quantile(nzrs,filterquantile))
+        workCM = nonzerod[useme,]
+        lo = colSums(nonzerod[!useme,])
+        cleanrs = rowSums(workCM)
+        cleanN = length(cleanrs)
+        meth = paste("After filtering at count quantile =",filterquantile,", there are",sep="")
+        print(paste('Read',allN,"contigs. Removed",zN,"with no reads.",meth,cleanN,"contigs"),quote=F)
+        maint = paste('Filter below',filterquantile,'quantile')
+        }
+        cumPlot(rawrs=rawrs,cleanrs=cleanrs,maint=maint,myTitle=myTitle)
+        allgenes <- rownames(workCM)
+        print(paste("# Total low count contigs per sample = ",paste(lo,collapse=',')),quote=F) 
+        rsums = rowSums(workCM)
+        TName=unique(group)[1]
+        CName=unique(group)[2]
+        # Setup DGEList object
+        DGEList = DGEList(counts=workCM, group = group)
+        if (length(subjects) == 0) 
+            {
+               doDESEQ = T
+               mydesign = model.matrix(~group)
+            } 
+            else { 
+              doDESEQ = F
+              subjf = factor(subjects)
+              mydesign = model.matrix(~subjf+group) # we block on subject so make group last to simplify finding it
+            }
+        print.noquote(paste('Using samples:',paste(colnames(workCM),collapse=',')))
+        print.noquote('Using design matrix:')
+        print.noquote(mydesign)
+        DGEList = estimateGLMCommonDisp(DGEList,mydesign)
+        comdisp = DGEList\$common.dispersion
+        DGEList = estimateGLMTrendedDisp(DGEList,mydesign)
+        if (priordf > 0) {
+           print.noquote(paste("prior.df =",priordf))
+           DGEList = estimateGLMTagwiseDisp(DGEList,mydesign,prior.df = priordf)
+        } else {
+           DGEList = estimateGLMTagwiseDisp(DGEList,mydesign)
+        }
+        DGLM = glmFit(DGEList,design=mydesign)
+        efflib = DGEList\$samples\$lib.size*DGEList\$samples\$norm.factors
+        normData = (1e+06*DGEList\$counts/efflib)
+        co = length(colnames(mydesign))
+        DE = glmLRT(DGLM,coef=co) # always last one - subject is first if needed
+        uoutput = cbind( 
+                Name=as.character(rownames(DGEList\$counts)),
+                DE\$table,
+                adj.p.value=p.adjust(DE\$table\$PValue, method=fdrtype),
+                Dispersion=DGEList\$tagwise.dispersion,totreads=rsums,normData,
+                DGEList\$counts
+        )
+        soutput = uoutput[order(DE\$table\$PValue),] # sorted into p value order - for quick toptable
+        goodness = gof(DGLM, pcutoff=fdrthresh)
+        if (sum(goodness\$outlier) > 0) {
+            print.noquote('GLM outliers:')
+            print(paste(rownames(DGLM)[(goodness\$outlier != 0)],collapse=','),quote=F)
+            z = limma::zscoreGamma(goodness\$gof.statistic, shape=goodness\$df/2, scale=2)
+            pdf(paste(mt,"GoodnessofFit.pdf",sep='_'))
+            qq = qqnorm(z, panel.first=grid(), main="tagwise dispersion")
+            abline(0,1,lwd=3)
+            points(qq\$x[goodness\$outlier],qq\$y[goodness\$outlier], pch=16, col="dodgerblue")
+            dev.off()
+            } else { print('No GLM fit outlier genes found\n')}
+        estpriorn = getPriorN(DGEList)
+        print(paste("Common Dispersion =",comdisp,"CV = ",sqrt(comdisp),"getPriorN = ",estpriorn),quote=F)
+        efflib = DGEList\$samples\$lib.size*DGEList\$samples\$norm.factors
+        normData = (1e+06*DGEList\$counts/efflib)
+        uniqueg = unique(group)
+        # Plot MDS
+        sample_colors =  match(group,levels(group))
+        pdf(paste(mt,"MDSplot.pdf",sep='_'))
+        sampleTypes = levels(group)
+        plotMDS.DGEList(DGEList,main=paste("MDS Plot for",myTitle),cex=0.5,col=sample_colors,pch=sample_colors)
+        legend(x="topleft", legend = sampleTypes,col=c(1:length(sampleTypes)), pch=19)
+        grid(col="blue")
+        dev.off()
+        colnames(normData) = paste( colnames(normData),'N',sep="_")
+        print(paste('Raw sample read totals',paste(colSums(nonzerod,na.rm=T),collapse=',')))
+        nzd = data.frame(log(nonzerod + 1e-2,10))
+        boxPlot(rawrs=nzd,cleanrs=log(normData,10),maint='TMM Normalisation',myTitle=myTitle)
+        if (doDESEQ)
+        {
+        # DESeq
+        deSeqDatcount <- newCountDataSet(workCM, group)
+        deSeqDatsizefac <- estimateSizeFactors(deSeqDatcount)
+        deSeqDatdisp <- estimateDispersions(deSeqDatsizefac)
+        rDESeq <- nbinomTest(deSeqDatdisp, levels(group)[1], levels(group)[2])
+        rDESeq <- rDESeq[order(rDESeq\$pval), ]
+        write.table(rDESeq,paste(mt,'DESeq_TopTable.xls',sep='_'), quote=FALSE, sep="\t",row.names=F)
+        topresults.DESeq <- rDESeq[which(rDESeq\$padj < fdrthresh), ]
+        DESeqcountsindex <- which(allgenes %in% topresults.DESeq\$id)
+        DESeqcounts <- rep(0, length(allgenes))
+        DESeqcounts[DESeqcountsindex] <- 1
+        }
+        DGEList = calcNormFactors(DGEList)
+        norm.factor = DGEList\$samples\$norm.factors
+        pdf(paste(mt,"voomplot.pdf",sep='_'))
+        dat.voomed <- voom(DGEList, mydesign, plot = TRUE, lib.size = colSums(workCM) * norm.factor)
+        dev.off()
+        # Use limma to fit data
+        fit <- lmFit(dat.voomed, mydesign)
+        fit <- eBayes(fit)
+        rvoom <- topTable(fit, coef = length(colnames(mydesign)), adj = "BH", n = Inf)
+        write.table(rvoom,paste(mt,'VOOM_topTable.xls',sep='_'), quote=FALSE, sep="\t",row.names=F)
+        # Use an FDR cutoff to find interesting samples for edgeR, DESeq and voom/limma
+        topresults.voom <- rvoom[which(rvoom\$adj.P.Val < fdrthresh), ]
+        topresults.edgeR <- soutput[which(soutput\$adj.p.value < fdrthresh), ]
+        # Create venn diagram of hits
+        edgeRcountsindex <- which(allgenes %in% rownames(topresults.edgeR))
+        voomcountsindex <- which(allgenes %in% topresults.voom\$ID)
+        edgeRcounts <- rep(0, length(allgenes))
+        edgeRcounts[edgeRcountsindex] <- 1
+        voomcounts <- rep(0, length(allgenes))
+        voomcounts[voomcountsindex] <- 1
+        if (doDESEQ) {
+            vennmain = paste(mt,'Voom,edgeR and DESeq overlap at FDR=',fdrthresh)
+            counts.dataframe <- data.frame(edgeRcounts = edgeRcounts, DESeqcounts = DESeqcounts, 
+                voomcounts = voomcounts, row.names = allgenes)
+        } else {
+            vennmain = paste(mt,'Voom and edgeR overlap at FDR=',fdrthresh)
+            counts.dataframe <- data.frame(edgeRcounts = edgeRcounts, voomcounts = voomcounts, row.names = allgenes)
+        }
+        counts.venn <- vennCounts(counts.dataframe)
+        vennf = paste(mt,'venn.pdf',sep='_')
+        pdf(vennf)
+        vennDiagram(counts.venn,main=vennmain,col="maroon")
+        dev.off()
+        #Prepare our output file
+        nreads = soutput\$totreads # ordered same way
+        print('# writing output',quote=F)
+        write.table(soutput,outputfilename, quote=FALSE, sep="\t",row.names=F)
+        rn = uoutput\$Name
+        reg = "^chr([0-9]+):([0-9]+)-([0-9]+)"
+        org="hg19"
+        genecards="<a href='http://www.genecards.org/index.php?path=/Search/keyword/"
+        ucsc = paste("<a href='http://genome.ucsc.edu/cgi-bin/hgTracks?db=",org,sep='')
+        testreg = str_match(rn,reg)
+        nreads = uoutput\$totreads # ordered same way
+        if (sum(!is.na(testreg[,1]))/length(testreg[,1]) > 0.8) # is ucsc style string
+        {
+          urls = paste(ucsc,'&amp;position=chr',testreg[,2],':',testreg[,3],"-",testreg[,4],"'>",rn,'</a>',sep='')
+        } else {
+          urls = paste(genecards,rn,"'></a>",rn,'</a>',sep="")
+        }
+        print.noquote('# urls')
+        cat(head(urls))
+        tt = uoutput
+        cat("# Top tags\n")
+        tt = cbind(tt,ntotreads=nreads,URL=urls) # add to end so table isn't laid out strangely
+        tt = tt[order(DE\$table\$PValue),] 
+        options(width = 500) 
+        print.noquote(tt[1:50,])
+        pdf(paste(mt,"BCV_vs_abundance.pdf",sep='_'))
+        plotBCV(DGEList, cex=0.3, main="Biological CV vs abundance")
+        dev.off()
+        # Plot MAplot
+        deTags = rownames(uoutput[uoutput\$adj.p.value < fdrthresh,])
+        nsig = length(deTags)
+        print(paste('#',nsig,'tags significant at adj p=',fdrthresh),quote=F)
+        print('# deTags',quote=F)
+        print(head(deTags))
+        dg = DGEList[order(DE\$table\$PValue),]
+        #normData = (1e+06 * dg\$counts/expandAsMatrix(dg\$samples\$lib.size, dim(dg)))
+        efflib = dg\$samples\$lib.size*dg\$samples\$norm.factors
+        normData = (1e+06*dg\$counts/efflib)
+        outpdfname=paste(mt,"heatmap.pdf",sep='_')
+        hmap2(normData,nsamp=100,TName=TName,group=group,outpdfname=outpdfname,myTitle=myTitle)
+        outSmear = paste(mt,"Smearplot.pdf",sep='_')
+        outMain = paste("Smear Plot for ",TName,' Vs ',CName,' (FDR@',fdrthresh,' N = ',nsig,')',sep='')
+        smearPlot(DGEList=DGEList,deTags=deTags, outSmear=outSmear, outMain = outMain)
+        qqPlot(descr=myTitle,pvector=DE\$table\$PValue)
+        if (doDESEQ) {
+           cat("# DESeq top 50\n")
+           print(rDESeq[1:50,])
+        }
+        cat("# VOOM top 50\n")
+        print(rvoom[1:50,])
+        # need a design matrix and glm to use this
+        goodness = gof(DGLM, pcutoff=fdrthresh)
+        nout = sum(goodness\$outlier)
+        if (nout > 0) {
+            print.noquote(paste('Found',nout,'Goodness of fit outliers'))
+            rownames(DGLM)[goodness\$outlier]
+            z = limma::zscoreGamma(goodness\$gof.statistic, shape=goodness\$df/2, scale=2)
+            pdf(paste(mt,"GoodnessofFit.pdf",sep='_'))
+            qq = qqnorm(z, panel.first=grid(), main="tagwise dispersion")
+            abline(0,1,lwd=3)
+            points(qq\$x[goodness\$outlier],qq\$y[goodness\$outlier], pch=16, col="dodgerblue")
+            dev.off()
+            }
+        #Return our main table
+        uoutput 
+  
+}       #Done
+sink(stdout(),append=T,type="message")
+options(width=512)
+Out_Dir = "$html_file.files_path"
+Input =  "$input1"
+TreatmentName = "$treatment_name"
+TreatmentCols = "$Treat_cols"
+ControlName = "$control_name"
+ControlCols= "$Control_cols"
+outputfilename = "$outtab"
+fdrtype = "$fdrtype"
+priordf = $priordf
+fdrthresh = $fdrthresh
+useNDF = "$useNDF"
+fQ = $fQ # non-differential centile cutoff
+myTitle = "$title"
+subjects = c($subjectids)
+nsubj = length(subjects)
+#Set our columns 
+TCols           = as.numeric(strsplit(TreatmentCols,",")[[1]])-1
+CCols           = as.numeric(strsplit(ControlCols,",")[[1]])-1 
+cat('# got TCols=')
+cat(TCols)
+cat('; CCols=')
+cat(CCols)
+cat('\n')
+useCols = c(TCols,CCols)
+# Create output dir if non existent
+  if (file.exists(Out_Dir) == F) dir.create(Out_Dir)
+
+Count_Matrix = read.table(Input,header=T,row.names=1,sep='\t') #Load tab file assume header
+snames = colnames(Count_Matrix)
+nsamples = length(snames)
+if (nsubj >  0 & nsubj != nsamples) {
+options("show.error.messages"=T)
+mess = paste('Fatal error: Supplied subject id list',paste(subjects,collapse=','),'has length',nsubj,'but there are',nsamples,'samples',paste(snames,collapse=','))
+write(mess, stderr())
+#print(mess)
+quit(save="no",status=4)
+}
+
+Count_Matrix = Count_Matrix[,useCols] # reorder columns
+if (length(subjects) != 0) {subjects = subjects[useCols]}
+rn = rownames(Count_Matrix)
+islib = rn %in% c('librarySize','NotInBedRegions')
+LibSizes = Count_Matrix[subset(rn,islib),][1] # take first
+Count_Matrix = Count_Matrix[subset(rn,! islib),]
+group = c(rep(TreatmentName,length(TCols)), rep(ControlName,length(CCols)) )             #Build a group descriptor
+group = factor(group, levels=c(ControlName,TreatmentName))
+colnames(Count_Matrix) = paste(group,colnames(Count_Matrix),sep="_")                   #Relable columns
+results = edgeIt(Count_Matrix=Count_Matrix,group=group,outputfilename=outputfilename,fdrtype=fdrtype,priordf=priordf,fdrthresh=fdrthresh,
+   outputdir=Out_Dir,myTitle=myTitle,libSize=c(),useNDF=useNDF,filterquantile=fQ,subjects=subjects) 
+#Run the main function
+# for the log
+sessionInfo()
+]]>
+</configfile>
+</configfiles>
+<help>
+**What it does**
+
+Performs digital gene expression analysis between a treatment and control on a count matrix.
+Optionally adds a term for subject if not all samples are independent or if some other factor needs to be blocked in the design.
+
+**Input**
+
+A matrix consisting of non-negative integers. The matrix must have a unique header row identifiying the samples, and a unique set of row names 
+as  the first column. Typically the row names are gene symbols or probe id's for downstream use in GSEA and other methods.
+
+If you have (eg) paired samples and wish to include a term in the GLM to account for some other factor (subject in the case of paired samples),
+put a comma separated list of indicators for every sample (whether modelled or not!) indicating (eg) the subject number or 
+A list of integers, one for each subject or an empty string if samples are all independent.
+If not empty, there must be exactly as many integers in the supplied integer list as there are columns (samples) in the count matrix.
+Integers for samples that are not in the analysis *must* be present in the string as filler even if not used.
+
+So if you have 2 pairs out of 6 samples, you need to put in unique integers for the unpaired ones
+eg if you had 6 samples with the first two independent but the second and third pairs each being from independent subjects. you might use
+8,9,1,1,2,2 
+as subject IDs to indicate two paired samples from the same subject in columns 3/4 and 5/6
+
+**Output**
+
+A matrix which consists the original data and relative expression levels and some helpful plots
+
+**Note on edgeR versions**
+
+The edgeR authors made a small cosmetic change in the name of one important variable (from p.value to PValue) 
+breaking this and all other code that assumed the old name for this variable, 
+between edgeR2.4.4 and 2.4.6 (the version for R 2.14 as at the time of writing). 
+This means that all code using edgeR is sensitive to the version. I think this was a very unwise thing 
+to do because it wasted hours of my time to track down and will similarly cost other edgeR users dearly
+when their old scripts break. This tool currently now works with 2.4.6.
+
+**Note on prior.N**
+
+http://seqanswers.com/forums/showthread.php?t=5591 says:
+
+*prior.n*
+
+The value for prior.n determines the amount of smoothing of tagwise dispersions towards the common dispersion. 
+You can think of it as like a "weight" for the common value. (It is actually the weight for the common likelihood 
+in the weighted likelihood equation). The larger the value for prior.n, the more smoothing, i.e. the closer your 
+tagwise dispersion estimates will be to the common dispersion. If you use a prior.n of 1, then that gives the 
+common likelihood the weight of one observation.
+
+In answer to your question, it is a good thing to squeeze the tagwise dispersions towards a common value, 
+or else you will be using very unreliable estimates of the dispersion. I would not recommend using the value that 
+you obtained from estimateSmoothing()---this is far too small and would result in virtually no moderation 
+(squeezing) of the tagwise dispersions. How many samples do you have in your experiment? 
+What is the experimental design? If you have few samples (less than 6) then I would suggest a prior.n of at least 10. 
+If you have more samples, then the tagwise dispersion estimates will be more reliable, 
+so you could consider using a smaller prior.n, although I would hesitate to use a prior.n less than 5. 
+
+
+From Bioconductor Digest, Vol 118, Issue 5, Gordon writes:
+
+Dear Dorota,
+
+The important settings are prior.df and trend.
+
+prior.n and prior.df are related through prior.df = prior.n * residual.df,
+and your experiment has residual.df = 36 - 12 = 24.  So the old setting of
+prior.n=10 is equivalent for your data to prior.df = 240, a very large
+value.  Going the other way, the new setting of prior.df=10 is equivalent
+to prior.n=10/24.
+
+To recover old results with the current software you would use
+
+  estimateTagwiseDisp(object, prior.df=240, trend="none")
+
+To get the new default from old software you would use
+
+  estimateTagwiseDisp(object, prior.n=10/24, trend=TRUE)
+
+Actually the old trend method is equivalent to trend="loess" in the new
+software. You should use plotBCV(object) to see whether a trend is
+required.
+
+Note you could also use
+
+  prior.n = getPriorN(object, prior.df=10)
+
+to map between prior.df and prior.n.
+
+</help>
+
+</tool>
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/test-data/edgeRtest1out.html	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,813 @@
+<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> 
+        <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> 
+        <head> <meta http-equiv="Content-Type" content="text/html; charset=utf-8" /> 
+        <meta name="generator" content="Galaxy rgToolFactory.py tool output - see http://g2.trac.bx.psu.edu/" /> 
+        <title></title> 
+        <link rel="stylesheet" href="/static/style/base.css" type="text/css" /> 
+        </head> 
+        <body> 
+        <div class="toolFormBody"> 
+        
+<div class="infomessage">Galaxy Tool "edgeR" run at 12/06/2013 16:42:51</div><br/>
+<div><table class="simple" cellpadding="2" cellspacing="2">
+<tr>
+<td><a href="edgeRtest_BCV_vs_abundance.pdf"><img src="edgeRtest_BCV_vs_abundance.jpg" title="Click to download a PDF of edgeRtest_BCV_vs_abundance.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_BCV_vs_abundance.pdf"/></a></td>
+
+<td><a href="edgeRtest_MDSplot.pdf"><img src="edgeRtest_MDSplot.jpg" title="Click to download a PDF of edgeRtest_MDSplot.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_MDSplot.pdf"/></a></td>
+
+<td><a href="edgeRtest_RowsumCum.pdf"><img src="edgeRtest_RowsumCum.jpg" title="Click to download a PDF of edgeRtest_RowsumCum.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_RowsumCum.pdf"/></a></td>
+</tr>
+<tr>
+<td><a href="edgeRtest_Smearplot.pdf"><img src="edgeRtest_Smearplot.jpg" title="Click to download a PDF of edgeRtest_Smearplot.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_Smearplot.pdf"/></a></td>
+
+<td><a href="edgeRtest_heatmap.pdf"><img src="edgeRtest_heatmap.jpg" title="Click to download a PDF of edgeRtest_heatmap.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_heatmap.pdf"/></a></td>
+
+<td><a href="edgeRtest_pval_qq.pdf"><img src="edgeRtest_pval_qq.jpg" title="Click to download a PDF of edgeRtest_pval_qq.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_pval_qq.pdf"/></a></td>
+</tr>
+<tr>
+<td><a href="edgeRtest_sampleBoxplot.pdf"><img src="edgeRtest_sampleBoxplot.jpg" title="Click to download a PDF of edgeRtest_sampleBoxplot.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_sampleBoxplot.pdf"/></a></td>
+
+<td><a href="edgeRtest_samplehistplot.pdf"><img src="edgeRtest_samplehistplot.jpg" title="Click to download a PDF of edgeRtest_samplehistplot.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_samplehistplot.pdf"/></a></td>
+
+<td><a href="edgeRtest_venn.pdf"><img src="edgeRtest_venn.jpg" title="Click to download a PDF of edgeRtest_venn.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_venn.pdf"/></a></td>
+</tr>
+<tr>
+<td><a href="edgeRtest_voomplot.pdf"><img src="edgeRtest_voomplot.jpg" title="Click to download a PDF of edgeRtest_voomplot.pdf" hspace="5" width="400" 
+                       alt="Image called edgeRtest_voomplot.pdf"/></a></td>
+
+<td>&nbsp;</td><td>&nbsp;</td>
+</tr></table></div>
+
+<div><table class="colored" cellpadding="3" cellspacing="3"><tr><th>Output File Name (click to view)</th><th>Size</th></tr>
+
+<tr><td><a href="edgeR.Rscript">edgeR.Rscript</a></td><td>19.7 KB)</td></tr>
+<tr class="odd_row"><td><a href="edgeR_runner.log">edgeR_runner.log</a></td><td>79.2 KB)</td></tr>
+<tr><td><a href="edgeRtest_BCV_vs_abundance.pdf">edgeRtest_BCV_vs_abundance.pdf</a></td><td>16.4 KB)</td></tr>
+<tr class="odd_row"><td><a href="edgeRtest_DESeq_TopTable.xls">edgeRtest_DESeq_TopTable.xls</a></td><td>135.1 KB)</td></tr>
+<tr><td><a href="edgeRtest_MDSplot.pdf">edgeRtest_MDSplot.pdf</a></td><td>4.9 KB)</td></tr>
+<tr class="odd_row"><td><a href="edgeRtest_RowsumCum.pdf">edgeRtest_RowsumCum.pdf</a></td><td>6.3 KB)</td></tr>
+<tr><td><a href="edgeRtest_Smearplot.pdf">edgeRtest_Smearplot.pdf</a></td><td>16.7 KB)</td></tr>
+<tr class="odd_row"><td><a href="edgeRtest_VOOM_topTable.xls">edgeRtest_VOOM_topTable.xls</a></td><td>131.4 KB)</td></tr>
+<tr><td><a href="edgeRtest_heatmap.pdf">edgeRtest_heatmap.pdf</a></td><td>11.3 KB)</td></tr>
+<tr class="odd_row"><td><a href="edgeRtest_pval_qq.pdf">edgeRtest_pval_qq.pdf</a></td><td>15.9 KB)</td></tr>
+<tr><td><a href="edgeRtest_sampleBoxplot.pdf">edgeRtest_sampleBoxplot.pdf</a></td><td>7.8 KB)</td></tr>
+<tr class="odd_row"><td><a href="edgeRtest_samplehistplot.pdf">edgeRtest_samplehistplot.pdf</a></td><td>10.9 KB)</td></tr>
+<tr><td><a href="edgeRtest_venn.pdf">edgeRtest_venn.pdf</a></td><td>9.7 KB)</td></tr>
+<tr class="odd_row"><td><a href="edgeRtest_voomplot.pdf">edgeRtest_voomplot.pdf</a></td><td>16.7 KB)</td></tr>
+</table></div><br/>
+<div class="toolFormTitle">Rscript log</div><pre>
+
+## Toolfactory generated command line = Rscript - None /data/home/rlazarus/galaxy-central/database/files/000/dataset_2.dat
+
+Loading required package: gtools
+
+Loading required package: gdata
+
+gdata: read.xls support for 'XLS' (Excel 97-2004) files ENABLED.
+
+gdata: read.xls support for 'XLSX' (Excel 2007+) files ENABLED.
+
+Attaching package: ‘gdata’
+
+The following object(s) are masked from ‘package:stats’:
+
+    nobs
+
+The following object(s) are masked from ‘package:utils’:
+
+    object.size
+
+Loading required package: caTools
+
+Loading required package: grid
+
+Loading required package: KernSmooth
+
+KernSmooth 2.23 loaded
+
+Copyright M. P. Wand 1997-2009
+
+Loading required package: MASS
+
+Attaching package: ‘gplots’
+
+The following object(s) are masked from ‘package:stats’:
+
+    lowess
+
+Loading required package: Biobase
+
+Loading required package: BiocGenerics
+
+Loading required package: methods
+
+Attaching package: ‘BiocGenerics’
+
+The following object(s) are masked from ‘package:gdata’:
+
+    combine
+
+The following object(s) are masked from ‘package:stats’:
+
+    xtabs
+
+The following object(s) are masked from ‘package:base’:
+
+    anyDuplicated, cbind, colnames, duplicated, eval, Filter, Find,
+
+    get, intersect, lapply, Map, mapply, mget, order, paste, pmax,
+
+    pmax.int, pmin, pmin.int, Position, rbind, Reduce, rep.int,
+
+    rownames, sapply, setdiff, table, tapply, union, unique
+
+Welcome to Bioconductor
+
+    Vignettes contain introductory material; view with
+
+    'browseVignettes()'. To cite Bioconductor, see
+
+    'citation("Biobase")', and for packages 'citation("pkgname")'.
+
+Loading required package: locfit
+
+locfit 1.5-9.1 	 2013-03-22
+
+Loading required package: lattice
+
+Warning message:
+
+found methods to import for function ‘eapply’ but not the generic itself 
+
+Loading required package: limma
+
+Attaching package: ‘limma’
+
+The following object(s) are masked from ‘package:DESeq’:
+
+    plotMA
+
+# got TCols=2 3 4 8; CCols=1 5 6 7
+
+[1] # Quantiles for non-zero row counts:
+
+       0%       10%       20%       30%       40%       50%       60%       70%       80%       90%      100% 
+
+      1.0       1.0       2.0       3.0       4.0       8.0      13.0      24.0      86.6     753.0 2325567.0 
+
+[1] Read 3242 contigs. Removed 1494 with no reads. After filtering at count quantile =0.3, there are 1141 contigs
+
+[1] # Total low count contigs per sample =  145,111,155,120,170,67,203,86
+
+Calculating library sizes from column totals.
+
+[1] Using samples: case_X11706He_AGTTCC_L001_R1_001_trimmed.fastq_bwa.sam.bam,case_X11699He_GGCTAC_L001_R1_001_trimmed.fastq_bwa.sam.bam,case_X11698He_TAGCTT_L001_R1_001_trimmed.fastq_bwa.sam.bam,case_X11700He_CTTGTA_L001_R1_001_trimmed.fastq_bwa.sam.bam,control_X11706Liv_CAAAAG_L003_R1_001_trimmed.fastq_bwa.sam.bam,control_X11700Liv_ATTCCT_L003_R1_001_trimmed.fastq_bwa.sam.bam,control_X11698Liv_ACTGAT_L003_R1_001_trimmed.fastq_bwa.sam.bam,control_X11699Liv_ATGAGC_L003_R1_001_trimmed.fastq_bwa.sam.bam
+
+[1] Using design matrix:
+
+  (Intercept) groupcase
+
+1           1         1
+
+2           1         1
+
+3           1         1
+
+4           1         1
+
+5           1         0
+
+6           1         0
+
+7           1         0
+
+8           1         0
+
+attr(,"assign")
+
+[1] 0 1
+
+attr(,"contrasts")
+
+attr(,"contrasts")$group
+
+[1] contr.treatment
+
+[1] "No GLM fit outlier genes found\n"
+
+[1] Common Dispersion = 0.24088423096811 CV =  0.490799583300669 getPriorN =  3.33333333333333
+
+[1] "Raw sample read totals 1440960,1341813,2888924,1428365,2443751,1644652,1682104,1806045"
+
+[1] raw contig counts by sample:
+
+ case_X11706He_AGTTCC case_X11699He_GGCTAC case_X11698He_TAGCTT case_X11700He_CTTGTA control_X11706Liv_CA control_X11700Liv_AT control_X11698Liv_AC control_X11699Liv_AT
+
+ Min.   :0.0043       Min.   :0.0043       Min.   :0.0043       Min.   :0.0043       Min.   :0.0043       Min.   :0.0043       Min.   :0.0043       Min.   :0.0043      
+
+ 1st Qu.:0.0043       1st Qu.:0.0043       1st Qu.:0.0043       1st Qu.:0.0043       1st Qu.:0.3032       1st Qu.:0.0043       1st Qu.:0.3032       1st Qu.:0.0043      
+
+ Median :0.4786       Median :0.4786       Median :0.4786       Median :0.4786       Median :0.7789       Median :0.6031       Median :0.6998       Median :0.6031      
+
+ Mean   :0.9210       Mean   :0.9428       Mean   :1.0205       Mean   :0.9753       Mean   :1.0519       Mean   :1.0343       Mean   :0.9855       Mean   :0.9966      
+
+ 3rd Qu.:1.5770       3rd Qu.:1.5855       3rd Qu.:1.7161       3rd Qu.:1.6022       3rd Qu.:1.5410       3rd Qu.:1.6335       3rd Qu.:1.4473       3rd Qu.:1.5534      
+
+ Max.   :5.3609       Max.   :5.3589       Max.   :5.6967       Max.   :5.3702       Max.   :5.8209       Max.   :5.6905       Max.   :5.7999       Max.   :5.7215      
+
+ NA's   :902          NA's   :957          NA's   :821          NA's   :950          NA's   :650          NA's   :969          NA's   :664          NA's   :886         
+
+[1] normalised contig counts by sample:
+
+ case_X11706He_AGTTCC case_X11699He_GGCTAC case_X11698He_TAGCTT case_X11700He_CTTGTA control_X11706Liv_CA control_X11700Liv_AT control_X11698Liv_AC control_X11699Liv_AT
+
+ Min.   :-Inf         Min.   :-Inf         Min.   :-Inf         Min.   :-Inf         Min.   :-Inf         Min.   :-Inf         Min.   :-Inf         Min.   :-Inf        
+
+ 1st Qu.:-Inf         1st Qu.:-Inf         1st Qu.:-Inf         1st Qu.:-Inf         1st Qu.:   0         1st Qu.:-Inf         1st Qu.:   0         1st Qu.:-Inf        
+
+ Median :   0         Median :   0         Median :   0         Median :   0         Median :   0         Median :   0         Median :   0         Median :   0        
+
+ Mean   :-Inf         Mean   :-Inf         Mean   :-Inf         Mean   :-Inf         Mean   :-Inf         Mean   :-Inf         Mean   :-Inf         Mean   :-Inf        
+
+ 3rd Qu.:   1         3rd Qu.:   1         3rd Qu.:   1         3rd Qu.:   1         3rd Qu.:   1         3rd Qu.:   1         3rd Qu.:   1         3rd Qu.:   1        
+
+ Max.   :   5         Max.   :   5         Max.   :   6         Max.   :   5         Max.   :   6         Max.   :   6         Max.   :   6         Max.   :   5        
+
+[1] Using ncol rawrs= 8
+
+[1] # writing output
+
+[1] # urls
+
+<a href='http://www.genecards.org/index.php?path=/Search/keyword/0610005C13Rik'></a>0610005C13Rik</a> <a href='http://www.genecards.org/index.php?path=/Search/keyword/0610007N19Rik'></a>0610007N19Rik</a> <a href='http://www.genecards.org/index.php?path=/Search/keyword/0610008F07Rik'></a>0610008F07Rik</a> <a href='http://www.genecards.org/index.php?path=/Search/keyword/0610009L18Rik'></a>0610009L18Rik</a> <a href='http://www.genecards.org/index.php?path=/Search/keyword/0610012G03Rik'></a>0610012G03Rik</a> <a href='http://www.genecards.org/index.php?path=/Search/keyword/0610031O16Rik'></a>0610031O16Rik</a># Top tags
+
+                       Name      logFC    logCPM        LR       PValue  adj.p.value Dispersion totreads case_X11706He_AGTTCC_L001_R1_001_trimmed.fastq_bwa.sam.bam case_X11699He_GGCTAC_L001_R1_001_trimmed.fastq_bwa.sam.bam case_X11698He_TAGCTT_L001_R1_001_trimmed.fastq_bwa.sam.bam case_X11700He_CTTGTA_L001_R1_001_trimmed.fastq_bwa.sam.bam control_X11706Liv_CAAAAG_L003_R1_001_trimmed.fastq_bwa.sam.bam control_X11700Liv_ATTCCT_L003_R1_001_trimmed.fastq_bwa.sam.bam
+
+Mir122a             Mir122a -10.661348 12.537949 445.91203 5.594743e-99 6.383602e-96 0.10205510    90428                                                   6.644669                                               2.864648e+00                                               2.012369e+01                                               4.756523e+00                                                   2.084166e+04                                                   1.681895e+04
+
+Mir192               Mir192  -7.109019 17.247415 366.13166 1.301558e-81 7.425390e-79 0.07765487  2325567                                                1779.663879                                               1.294412e+03                                               4.493546e+03                                               1.933526e+03                                                   4.635990e+05                                                   3.403123e+05
+
+Mir208b             Mir208b  13.423720  9.822338 355.41782 2.801296e-79 1.065426e-76 0.12444059    14756                                                1245.907022                                               5.701390e+02                                               4.930344e+03                                               8.819024e+02                                                   7.453220e-01                                                   0.000000e+00
+
+Mir208a             Mir208a  11.977586  8.388290 348.81540 7.675451e-78 2.189422e-75 0.09936798     4638                                                 433.789590                                               7.125278e+02                                               1.006599e+03                                               6.497485e+02                                                   0.000000e+00                                                   0.000000e+00
+
+Mir499               Mir499  14.488216  8.612770 291.12794 2.823507e-65 6.443244e-63 0.13481620     6527                                                 608.439028                                               5.066577e+02                                               2.521609e+03                                               2.703574e+02                                                   0.000000e+00                                                   0.000000e+00
+
+Mir149               Mir149   6.869731  8.785665 253.01986 5.702930e-57 1.084507e-54 0.09834684     6164                                                 774.657675                                               4.595714e+02                                               1.710514e+03                                               7.663947e+02                                                   1.750400e+01                                                   6.246465e+00
+
+Mir490               Mir490   8.453930  6.909596 251.05610 1.528281e-56 2.491098e-54 0.09745005     1741                                                 209.881557                                               2.177498e+02                                               5.205387e+02                                               1.957941e+02                                                   1.038505e+00                                                   5.537224e-01
+
+Mir802               Mir802 -12.499678  6.629391 237.56161 1.337812e-53 1.908055e-51 0.10939981     1514                                                   0.000000                                               0.000000e+00                                               0.000000e+00                                               0.000000e+00                                                   3.056548e+02                                                   1.641034e+02
+
+Mir204               Mir204   7.371179  7.558996 237.12302 1.667365e-53 2.113848e-51 0.10292005     2601                                                 425.578854                                               3.264164e+02                                               6.462477e+02                                               3.754819e+02                                                   3.040281e+00                                                   6.923364e-01
+
+Mir1948             Mir1948  -7.583326  7.293456 204.79641 1.875897e-46 2.140399e-44 0.11833999     2404                                                   1.216112                                               6.923364e-01                                               1.661167e+00                                               1.636942e+00                                                   6.476848e+02                                                   3.852783e+02
+
+Mir3073             Mir3073 -11.748556  5.881462 200.03350 2.053625e-45 2.130170e-43 0.11068562      904                                                   0.000000                                               0.000000e+00                                               0.000000e+00                                               0.000000e+00                                                   2.073471e+02                                                   7.546467e+01
+
+Mir194-2           Mir194-2  -5.439827  7.860048 165.57239 6.859199e-38 6.521955e-36 0.10671020     3570                                                  10.520726                                               6.138532e+00                                               1.490644e+01                                               9.513045e+00                                                   9.214105e+02                                                   6.003547e+02
+
+Mir10b               Mir10b   5.032898 13.880770 160.06580 1.094640e-36 9.607570e-35 0.10795434   197340                                               25838.822630                                               3.216361e+04                                               3.631730e+04                                               3.446522e+04                                                   1.825385e+03                                                   3.738617e+02
+
+Mir101b             Mir101b  -3.925287 11.936090 120.62427 4.618143e-28 3.763787e-26 0.09663075    59019                                                 219.816815                                               3.012250e+02                                               8.119232e+02                                               4.270695e+02                                                   1.014507e+04                                                   7.747970e+03
+
+Mir182               Mir182  -5.244384  8.942708 118.92815 1.085926e-27 8.260276e-26 0.14993443     7189                                                  16.962242                                               1.439678e+01                                               2.209871e+01                                               3.130352e+01                                                   9.840056e+02                                                   6.154406e+02
+
+Mir200b             Mir200b  -6.725348  5.765187 115.73189 5.440989e-27 3.880105e-25 0.16712490      888                                                   2.432225                                               0.000000e+00                                               1.661167e+00                                               0.000000e+00                                                   3.696797e+02                                                   9.750871e+01
+
+Mir181c             Mir181c   3.611867 10.569815 107.82011 2.943153e-25 1.975375e-23 0.09385270    23605                                                2420.852087                                               1.892879e+03                                               4.093093e+03                                               1.902590e+03                                                   2.320365e+02                                                   2.727878e+02
+
+Mir181d             Mir181d   3.489976  7.232064 102.18661 5.053019e-24 3.203053e-22 0.08738498     2139                                                 310.053946                                               2.021522e+02                                               5.398233e+02                                               2.956660e+02                                                   3.648337e+01                                                   1.453906e+01
+
+Mir21                 Mir21  -3.077771 13.881500  91.37324 1.189745e-21 7.144733e-20 0.08494272   229120                                                3207.212585                                               2.190826e+03                                               4.348911e+03                                               2.010566e+03                                                   2.715400e+04                                                   3.322794e+04
+
+Mir199b             Mir199b   5.411476  4.695869  86.70372 1.260596e-20 7.191701e-19 0.15656183      370                                                  43.403268                                               4.481024e+01                                               9.924938e+01                                               4.925255e+01                                                   1.384673e+00                                                   5.537224e-01
+
+Mir193               Mir193  -5.360157  4.775477  84.66127 3.541205e-20 1.924055e-18 0.15546497      421                                                   1.490644                                               1.189131e+00                                               2.800640e+00                                               6.940516e-01                                                   1.015454e+02                                                   3.496299e+01
+
+Mir23a               Mir23a   3.003071  9.467420  82.28684 1.177029e-19 6.104501e-18 0.08920345    10118                                                1149.889322                                               1.127958e+03                                               2.471518e+03                                               1.096325e+03                                                   1.505832e+02                                                   1.268024e+02
+
+Mir195               Mir195   3.060546  8.152797  81.39727 1.846126e-19 9.158392e-18 0.09133016     3962                                                 429.134881                                               2.831909e+02                                               9.227086e+02                                               4.708957e+02                                                   1.106253e+02                                                   7.773378e+01
+
+Ahsg                   Ahsg -10.101343  6.638589  79.82133 4.098447e-19 1.923759e-17 0.42092199     1524                                                   0.000000                                               5.537224e-01                                               0.000000e+00                                               0.000000e+00                                                   3.484153e+02                                                   1.260288e+01
+
+Mir148a             Mir148a  -2.789375 16.047169  79.76589 4.215073e-19 1.923759e-17 0.08196054  1002397                                               15925.598251                                               8.528200e+03                                               2.207082e+04                                               1.059020e+04                                                   1.927239e+05                                                   1.054456e+05
+
+Dnm3os               Dnm3os   3.189443  6.618834  79.19614 5.623979e-19 2.468062e-17 0.09496531     1401                                                 134.000827                                               8.716715e+01                                               3.652078e+02                                               1.825316e+02                                                   3.710848e+01                                                   2.498586e+01
+
+Mir27a               Mir27a   2.921772 10.581277  77.26988 1.491231e-18 6.301832e-17 0.09125059    21886                                                2383.612353                                               2.512174e+03                                               5.321988e+03                                               2.361690e+03                                                   3.285136e+02                                                   3.477377e+02
+
+Mir429               Mir429  -5.341934  4.951103  76.38758 2.331128e-18 9.499346e-17 0.18324117      499                                                   1.783696                                               7.001600e-01                                               2.082155e+00                                               1.824168e+00                                                   9.173458e+01                                                   4.540524e+01
+
+Mir214               Mir214   3.125906  6.202347  74.28213 6.771387e-18 2.664191e-16 0.09532762     1048                                                 110.058161                                               5.642542e+01                                               1.982326e+02                                               9.371492e+01                                                   3.353949e+01                                                   1.545870e+01
+
+Mir200a             Mir200a  -7.592263  4.059943  73.71426 9.028450e-18 3.433821e-16 0.22417820      264                                                   0.000000                                               0.000000e+00                                               5.945653e-01                                               0.000000e+00                                                   9.022671e+01                                                   3.222698e+01
+
+Mir194-1           Mir194-1  -3.970219  5.393899  73.22380 1.157517e-17 4.260408e-16 0.13095886      635                                                   3.567392                                               9.102080e+00                                               5.552413e+00                                               3.648337e+00                                                   7.615701e+01                                                   8.859559e+01
+
+Mir378               Mir378   2.954320  8.053368  73.09647 1.234655e-17 4.402315e-16 0.09566655     4075                                                 425.697272                                               3.921392e+02                                               1.155915e+03                                               1.883155e+02                                                   7.641369e+01                                                   3.683119e+01
+
+Mir322               Mir322   3.058569  8.948242  72.83721 1.407969e-17 4.868160e-16 0.10365695     7074                                                1012.892580                                               6.718588e+02                                               1.784708e+03                                               8.550716e+02                                                   1.587027e+02                                                   7.892635e+01
+
+Mir215               Mir215   2.908934  6.381924  70.31105 5.065317e-17 1.699861e-15 0.09002036     1182                                                 123.075020                                               1.610368e+02                                               2.727623e+02                                               1.222193e+02                                                   1.938542e+01                                                   1.716540e+01
+
+Cyp3a25             Cyp3a25  -9.778602  3.913257  70.02642 5.851533e-17 1.907600e-15 0.26445237      226                                                   0.000000                                               0.000000e+00                                               0.000000e+00                                               0.000000e+00                                                   5.664447e+01                                                   1.783696e+01
+
+Mir183               Mir183  -4.214462  5.247929  66.31101 3.851010e-16 1.220556e-14 0.15955164      563                                                   8.401920                                               1.388103e+00                                               2.432225e+00                                               2.423177e+00                                                   8.638070e+01                                                   2.905572e+01
+
+Mir181a-2         Mir181a-2   2.837713  7.573798  65.52900 5.726500e-16 1.765929e-14 0.09834030     2817                                                 288.826664                                               1.377749e+02                                               6.395494e+02                                               1.821098e+02                                                   5.813511e+01                                                   4.102501e+01
+
+Mir155               Mir155   3.734310  4.975364  65.07600 7.206449e-16 2.163831e-14 0.13295455      463                                                  33.966543                                               5.888044e+01                                               1.141565e+02                                               5.251200e+01                                                   9.716723e+00                                                   1.824168e+00
+
+Snord91a           Snord91a  -2.818342  6.592251  64.29345 1.072014e-15 3.136329e-14 0.09422446     1437                                                  13.846728                                               1.605795e+01                                               3.314807e+01                                               1.863305e+01                                                   2.158272e+02                                                   1.792410e+02
+
+Mir125b-2         Mir125b-2   2.852233  8.081093  64.20822 1.119409e-15 3.193115e-14 0.10276578     3837                                                 315.520541                                               4.404853e+02                                               7.634219e+02                                               4.852109e+02                                                   1.082721e+02                                                   9.060036e+01
+
+Serpina4-ps1   Serpina4-ps1 -10.090564  4.224051  64.02094 1.231040e-15 3.425894e-14 0.34406452      295                                                   0.000000                                               0.000000e+00                                               0.000000e+00                                               0.000000e+00                                                   1.080717e+02                                                   1.129674e+01
+
+Mir133b             Mir133b   9.293392  3.404704  63.59576 1.527577e-15 4.149919e-14 0.26404392      159                                                  17.719118                                               1.064012e+01                                               5.738979e+01                                               1.426957e+01                                                   0.000000e+00                                                   0.000000e+00
+
+Gm10069             Gm10069  -7.475459  6.400326  63.15445 1.911172e-15 5.071271e-14 0.41541432     1309                                                   1.189131                                               1.400320e+00                                               6.940516e-01                                               6.080561e-01                                                   1.914310e+02                                                   6.644669e+00
+
+Mir871               Mir871  -5.633588  4.283233  62.67513 2.437746e-15 6.321517e-14 0.21907826      290                                                   1.227706                                               7.453220e-01                                               5.945653e-01                                               0.000000e+00                                                   5.691223e+01                                                   4.925255e+01
+
+Mir184               Mir184   5.002968  4.123691  61.97642 3.475940e-15 8.813439e-14 0.19289992      247                                                  33.443087                                               1.419290e+01                                               4.983502e+01                                               2.168948e+01                                                   2.981288e+00                                                   0.000000e+00
+
+Mir132               Mir132   2.702863  5.866134  58.80773 1.738573e-14 4.312416e-13 0.09148478      857                                                  82.695634                                               4.327103e+01                                               1.821747e+02                                               6.097608e+01                                                   2.832224e+01                                                   1.308044e+01
+
+Snord104           Snord104  -2.492063 11.108871  58.55547 1.976394e-14 4.798012e-13 0.09093023    33458                                                 614.929745                                               4.378004e+02                                               8.629974e+02                                               5.144081e+02                                                   3.826761e+03                                                   4.181256e+03
+
+Mir3074-2         Mir3074-2   2.635505  7.871042  57.72938 3.007773e-14 7.149726e-13 0.09900198     3470                                                 450.903031                                               3.206519e+02                                               8.354691e+02                                               1.716994e+02                                                   8.970303e+01                                                   5.197290e+01
+
+Mir24-2             Mir24-2   2.635505  7.871042  57.68174 3.081509e-14 7.175515e-13 0.09908656     3470                                                 479.987359                                               2.746892e+02                                               9.620198e+02                                               3.442496e+02                                                   9.850509e+01                                                   4.396336e+01
+
+5430416N02Rik 5430416N02Rik  -3.267228  5.202367  56.75137 4.945455e-14 1.128553e-12 0.12456687      564                                                   6.080561                                               1.730841e+00                                               1.273562e+01                                               4.910826e+00                                                   1.453378e+02                                                   5.886197e+01
+
+              control_X11698Liv_ACTGAT_L003_R1_001_trimmed.fastq_bwa.sam.bam control_X11699Liv_ATGAGC_L003_R1_001_trimmed.fastq_bwa.sam.bam case_X11706He_AGTTCC_L001_R1_001_trimmed.fastq_bwa.sam.bam case_X11699He_GGCTAC_L001_R1_001_trimmed.fastq_bwa.sam.bam case_X11698He_TAGCTT_L001_R1_001_trimmed.fastq_bwa.sam.bam case_X11700He_CTTGTA_L001_R1_001_trimmed.fastq_bwa.sam.bam control_X11706Liv_CAAAAG_L003_R1_001_trimmed.fastq_bwa.sam.bam
+
+Mir122a                                                         7.242557e+03                                                   8.468313e+03                                                         12                                                          7                                                         27                                                          8                                                          29767
+
+Mir192                                                          3.835916e+05                                                   1.822922e+05                                                       3214                                                       3163                                                       6029                                                       3252                                                         662133
+
+Mir208b                                                         0.000000e+00                                                   0.000000e+00                                                       2049                                                       1647                                                       8904                                                       2155                                                              1
+
+Mir208a                                                         0.000000e+00                                                   5.537224e-01                                                       1060                                                        956                                                       1693                                                        928                                                              0
+
+Mir499                                                          0.000000e+00                                                   0.000000e+00                                                        869                                                        730                                                       4147                                                        781                                                              0
+
+Mir149                                                          4.864449e+00                                                   5.538691e+00                                                       1399                                                       1123                                                       2295                                                       1289                                                             25
+
+Mir490                                                          0.000000e+00                                                   7.453220e-01                                                        353                                                        311                                                        750                                                        322                                                              3
+
+Mir802                                                          1.557723e+02                                                   2.092870e+02                                                          0                                                          0                                                          0                                                          0                                                            552
+
+Mir204                                                          5.537224e-01                                                   3.683119e+00                                                        571                                                        549                                                        923                                                        541                                                              5
+
+Mir1948                                                         1.813414e+02                                                   4.282299e+02                                                          2                                                          2                                                          3                                                          4                                                            869
+
+Mir3073                                                         7.253764e+01                                                   8.757639e+01                                                          0                                                          0                                                          0                                                          0                                                            341
+
+Mir194-2                                                        2.669366e+02                                                   3.046280e+02                                                         19                                                         15                                                         20                                                         16                                                           1316
+
+Mir10b                                                          6.583760e+02                                                   7.272114e+02                                                      34668                                                      54096                                                      51870                                                      49658                                                           3002
+
+Mir101b                                                         1.128042e+04                                                   6.628420e+03                                                        635                                                        544                                                       1984                                                        573                                                          17063
+
+Mir182                                                          2.366022e+03                                                   6.536603e+02                                                         49                                                         26                                                         54                                                         42                                                           1655
+
+Mir200b                                                         4.621056e+01                                                   1.075780e+02                                                          4                                                          0                                                          3                                                          0                                                            496
+
+Mir181c                                                         2.283131e+02                                                   2.989683e+02                                                       3488                                                       3113                                                      11824                                                       3436                                                            567
+
+Mir181d                                                         2.547123e+01                                                   1.555095e+01                                                        416                                                        340                                                        771                                                        426                                                             60
+
+Mir21                                                           2.570722e+04                                                   3.537908e+04                                                       4621                                                       3603                                                      12563                                                       3631                                                          66353
+
+Mir199b                                                         0.000000e+00                                                   2.981288e+00                                                         73                                                         64                                                        143                                                         81                                                              4
+
+Mir193                                                          3.377707e+01                                                   3.396654e+01                                                          2                                                          2                                                          4                                                          1                                                            167
+
+Mir23a                                                          8.921333e+01                                                   2.437203e+02                                                       1934                                                       1611                                                       3561                                                       1803                                                            435
+
+Mir195                                                          4.560421e+01                                                   4.154019e+01                                                        775                                                        692                                                       1238                                                        792                                                            158
+
+Ahsg                                                            6.100714e+02                                                   2.432225e+01                                                          0                                                          1                                                          0                                                          0                                                            586
+
+Mir148a                                                         1.795497e+05                                                   1.342747e+05                                                      26191                                                      24636                                                      39859                                                      25878                                                         258578
+
+Dnm3os                                                          1.216112e+01                                                   1.384673e+01                                                        242                                                        213                                                        490                                                        307                                                             53
+
+Mir27a                                                          1.636942e+02                                                   5.664447e+02                                                       4009                                                       3588                                                       7668                                                       3884                                                            949
+
+Mir429                                                          1.677865e+01                                                   7.527752e+01                                                          3                                                          1                                                          3                                                          3                                                            265
+
+Mir214                                                          1.190272e+01                                                   2.012750e+01                                                        181                                                        163                                                        358                                                        229                                                             45
+
+Mir200a                                                         1.142355e+01                                                   2.602495e+01                                                          0                                                          0                                                          1                                                          0                                                            130
+
+Mir194-1                                                        3.314807e+01                                                   1.050904e+02                                                          6                                                         13                                                          8                                                          6                                                            220
+
+Mir378                                                          9.167460e+01                                                   6.302392e+01                                                        608                                                        565                                                       1901                                                        544                                                            138
+
+Mir322                                                          5.038874e+01                                                   9.166874e+01                                                       1359                                                       1130                                                       2549                                                       1232                                                            261
+
+Mir215                                                          1.145859e+01                                                   2.683159e+01                                                        207                                                        230                                                        393                                                        201                                                             56
+
+Cyp3a25                                                         6.511488e+01                                                   1.873939e+01                                                          0                                                          0                                                          0                                                          0                                                             76
+
+Mir183                                                          1.349033e+02                                                   7.729349e+01                                                         12                                                          2                                                          4                                                          7                                                            156
+
+Mir181a-2                                                       8.051840e+01                                                   5.691223e+01                                                        475                                                        398                                                       1155                                                        445                                                             78
+
+Mir155                                                          2.769346e+00                                                   4.983502e+00                                                         83                                                         79                                                        192                                                         75                                                             14
+
+Snord91a                                                        2.484705e+02                                                   1.732960e+02                                                         40                                                         29                                                         81                                                         25                                                            363
+
+Mir125b-2                                                       2.077009e+01                                                   7.364508e+01                                                        771                                                        591                                                       1284                                                        693                                                            156
+
+Serpina4-ps1                                                    8.191872e+01                                                   9.716723e+00                                                          0                                                          0                                                          0                                                          0                                                            145
+
+Mir133b                                                         0.000000e+00                                                   0.000000e+00                                                         32                                                         26                                                         77                                                         24                                                              0
+
+Gm10069                                                         2.868741e+02                                                   2.757691e+01                                                          2                                                          2                                                          1                                                          1                                                            553
+
+Mir871                                                          1.003888e+01                                                   5.149619e+01                                                          3                                                          1                                                          1                                                          0                                                             82
+
+Mir184                                                          1.400320e+00                                                   1.388103e+00                                                         55                                                         41                                                         90                                                         53                                                              4
+
+Mir132                                                          2.100480e+01                                                   1.943345e+01                                                        136                                                        125                                                        329                                                        149                                                             38
+
+Snord104                                                        4.430701e+03                                                   4.212863e+03                                                        886                                                        720                                                       2493                                                        929                                                           9351
+
+Mir3074-2                                                       4.844593e+01                                                   8.323914e+01                                                        644                                                        462                                                       1374                                                        496                                                            162
+
+Mir24-2                                                         3.599196e+01                                                   5.729296e+01                                                        644                                                        462                                                       1374                                                        496                                                            162
+
+5430416N02Rik                                                   5.531264e+01                                                   9.786128e+01                                                         10                                                          5                                                         23                                                         12                                                            195
+
+              control_X11700Liv_ATTCCT_L003_R1_001_trimmed.fastq_bwa.sam.bam control_X11698Liv_ACTGAT_L003_R1_001_trimmed.fastq_bwa.sam.bam control_X11699Liv_ATGAGC_L003_R1_001_trimmed.fastq_bwa.sam.bam ntotreads                                                                                                   URL
+
+Mir122a                                                                24233                                                          11911                                                          24463     90428             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir122a'></a>Mir122a</a>
+
+Mir192                                                                490327                                                         630849                                                         526600   2325567               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir192'></a>Mir192</a>
+
+Mir208b                                                                    0                                                              0                                                              0     14756             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir208b'></a>Mir208b</a>
+
+Mir208a                                                                    0                                                              0                                                              1      4638             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir208a'></a>Mir208a</a>
+
+Mir499                                                                     0                                                              0                                                              0      6527               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir499'></a>Mir499</a>
+
+Mir149                                                                     9                                                              8                                                             16      6164               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir149'></a>Mir149</a>
+
+Mir490                                                                     1                                                              0                                                              1      1741               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir490'></a>Mir490</a>
+
+Mir802                                                                   401                                                            209                                                            352      1514               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir802'></a>Mir802</a>
+
+Mir204                                                                     2                                                              1                                                              9      2601               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir204'></a>Mir204</a>
+
+Mir1948                                                                  648                                                            259                                                            617      2404             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir1948'></a>Mir1948</a>
+
+Mir3073                                                                  218                                                            131                                                            214       904             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir3073'></a>Mir3073</a>
+
+Mir194-2                                                                 865                                                            439                                                            880      3570           <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir194-2'></a>Mir194-2</a>
+
+Mir10b                                                                  1080                                                           1189                                                           1777    197340               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir10b'></a>Mir10b</a>
+
+Mir101b                                                                11066                                                          16253                                                          10901     59019             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir101b'></a>Mir101b</a>
+
+Mir182                                                                   879                                                           3409                                                           1075      7189               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir182'></a>Mir182</a>
+
+Mir200b                                                                  164                                                             66                                                            155       888             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir200b'></a>Mir200b</a>
+
+Mir181c                                                                  366                                                            384                                                            427     23605             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir181c'></a>Mir181c</a>
+
+Mir181d                                                                   42                                                             46                                                             38      2139             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir181d'></a>Mir181d</a>
+
+Mir21                                                                  44582                                                          43237                                                          50530    229120                 <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir21'></a>Mir21</a>
+
+Mir199b                                                                    1                                                              0                                                              4       370             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir199b'></a>Mir199b</a>
+
+Mir193                                                                   101                                                             61                                                             83       421               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir193'></a>Mir193</a>
+
+Mir23a                                                                   229                                                            218                                                            327     10118               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir23a'></a>Mir23a</a>
+
+Mir195                                                                   112                                                             75                                                            120      3962               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir195'></a>Mir195</a>
+
+Ahsg                                                                      18                                                            879                                                             40      1524                   <a href='http://www.genecards.org/index.php?path=/Search/keyword/Ahsg'></a>Ahsg</a>
+
+Mir148a                                                               177349                                                         256441                                                         193465   1002397             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir148a'></a>Mir148a</a>
+
+Dnm3os                                                                    36                                                             20                                                             40      1401               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Dnm3os'></a>Dnm3os</a>
+
+Mir27a                                                                   628                                                            400                                                            760     21886               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir27a'></a>Mir27a</a>
+
+Mir429                                                                    82                                                             41                                                            101       499               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir429'></a>Mir429</a>
+
+Mir214                                                                    26                                                             17                                                             29      1048               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir214'></a>Mir214</a>
+
+Mir200a                                                                   53                                                             33                                                             47       264             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir200a'></a>Mir200a</a>
+
+Mir194-1                                                                 160                                                             81                                                            141       635           <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir194-1'></a>Mir194-1</a>
+
+Mir378                                                                    90                                                            123                                                            106      4075               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir378'></a>Mir378</a>
+
+Mir322                                                                   228                                                             91                                                            224      7074               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir322'></a>Mir322</a>
+
+Mir215                                                                    31                                                             28                                                             36      1182               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir215'></a>Mir215</a>
+
+Cyp3a25                                                                   30                                                             93                                                             27       226             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Cyp3a25'></a>Cyp3a25</a>
+
+Mir183                                                                    71                                                            181                                                            130       563               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir183'></a>Mir183</a>
+
+Mir181a-2                                                                 69                                                            115                                                             82      2817         <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir181a-2'></a>Mir181a-2</a>
+
+Mir155                                                                     3                                                              8                                                              9       463               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir155'></a>Mir155</a>
+
+Snord91a                                                                 256                                                            358                                                            285      1437           <a href='http://www.genecards.org/index.php?path=/Search/keyword/Snord91a'></a>Snord91a</a>
+
+Mir125b-2                                                                149                                                             60                                                            133      3837         <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir125b-2'></a>Mir125b-2</a>
+
+Serpina4-ps1                                                              19                                                            117                                                             14       295   <a href='http://www.genecards.org/index.php?path=/Search/keyword/Serpina4-ps1'></a>Serpina4-ps1</a>
+
+Mir133b                                                                    0                                                              0                                                              0       159             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir133b'></a>Mir133b</a>
+
+Gm10069                                                                   12                                                            701                                                             37      1309             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Gm10069'></a>Gm10069</a>
+
+Mir871                                                                    81                                                             29                                                             93       290               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir871'></a>Mir871</a>
+
+Mir184                                                                     0                                                              2                                                              2       247               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir184'></a>Mir184</a>
+
+Mir132                                                                    22                                                             30                                                             28       857               <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir132'></a>Mir132</a>
+
+Snord104                                                                5610                                                           7452                                                           6017     33458           <a href='http://www.genecards.org/index.php?path=/Search/keyword/Snord104'></a>Snord104</a>
+
+Mir3074-2                                                                127                                                             65                                                            140      3470         <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir3074-2'></a>Mir3074-2</a>
+
+Mir24-2                                                                  127                                                             65                                                            140      3470             <a href='http://www.genecards.org/index.php?path=/Search/keyword/Mir24-2'></a>Mir24-2</a>
+
+5430416N02Rik                                                             99                                                             79                                                            141       564 <a href='http://www.genecards.org/index.php?path=/Search/keyword/5430416N02Rik'></a>5430416N02Rik</a>
+
+[1] # 445 tags significant at adj p= 0.05
+
+[1] # deTags
+
+[1] "0610005C13Rik" "0610007N19Rik" "0610008F07Rik" "0610012G03Rik" "0610031O16Rik" "1110038B12Rik"
+
+# DESeq top 50
+
+               id     baseMean    baseMeanA    baseMeanB   foldChange log2FoldChange         pval         padj
+
+536       Mir122a  10112.31117 2.021162e+04 1.300527e+01 6.434550e-04     -10.601873 5.488369e-57 6.262229e-54
+
+645       Mir208a    616.76981 2.430915e-01 1.233297e+03 5.073385e+03      12.308733 6.046036e-53 3.449263e-50
+
+600        Mir192 271352.97636 5.385927e+05 4.113233e+03 7.637001e-03      -7.032778 1.311798e-38 4.989204e-36
+
+568        Mir149    810.35429 1.224267e+01 1.608466e+03 1.313819e+02       7.037623 7.073079e-37 2.017596e-34
+
+791        Mir490    220.99790 9.450198e-01 4.410508e+02 4.667107e+02       8.866385 1.354865e-36 3.091803e-34
+
+642        Mir204    347.57397 3.737736e+00 6.914102e+02 1.849810e+02       7.531234 8.058436e-36 1.532446e-33
+
+844        Mir802    166.83414 3.336683e+02 0.000000e+00 0.000000e+00           -Inf 3.255469e-35 5.306414e-33
+
+698       Mir3073     98.93199 1.978640e+02 0.000000e+00 0.000000e+00           -Inf 1.111351e-28 1.585065e-26
+
+646       Mir208b   1649.77924 1.445675e-01 3.299414e+03 2.282265e+04      14.478178 7.505934e-28 9.515857e-26
+
+614       Mir1948    263.89527 5.246983e+02 3.092210e+00 5.893310e-03      -7.406706 1.534188e-26 1.750509e-24
+
+608      Mir194-2    391.65678 7.637703e+02 1.954329e+01 2.558791e-02      -5.288394 1.622682e-24 1.683163e-22
+
+796        Mir499    712.45950 0.000000e+00 1.424919e+03          Inf            Inf 2.577318e-19 2.450600e-17
+
+585       Mir181c   2765.96510 3.955399e+02 5.136390e+03 1.298577e+01       3.698860 1.942959e-17 1.705320e-15
+
+631       Mir199b     47.84725 1.818862e+00 9.387565e+01 5.161231e+01       5.689643 4.012622e-15 3.270287e-13
+
+530        Mir10b  27820.40551 1.501200e+03 5.413961e+04 3.606421e+01       5.172496 3.069912e-14 2.335180e-12
+
+586       Mir181d    275.22797 4.254569e+01 5.079103e+02 1.193800e+01       3.577489 5.204519e-14 3.711473e-12
+
+602        Mir193     45.70861 8.913819e+01 2.279021e+00 2.556728e-02      -5.289558 1.657854e-13 1.112713e-11
+
+637       Mir200a     27.09009 5.402561e+01 1.545578e-01 2.860824e-03      -8.449354 2.466964e-13 1.563781e-11
+
+722        Mir322    899.53469 1.797868e+02 1.619283e+03 9.006682e+00       3.170996 1.359804e-12 8.165978e-11
+
+756        Mir378    483.21548 1.056050e+02 8.608260e+02 8.151374e+00       3.027043 2.046396e-12 1.160965e-10
+
+523       Mir101b   6846.19683 1.280838e+04 8.840090e+02 6.901800e-02      -3.856884 2.136745e-12 1.160965e-10
+
+552       Mir133b     19.46050 0.000000e+00 3.892101e+01          Inf            Inf 2.388227e-12 1.238621e-10
+
+663        Mir23a   1289.18043 2.671574e+02 2.311203e+03 8.651093e+00       3.112882 3.093049e-12 1.534421e-10
+
+671        Mir27a   2788.72629 6.066392e+02 4.970813e+03 8.194019e+00       3.034571 5.970859e-12 2.838646e-10
+
+616        Mir195    519.86200 1.038507e+02 9.358733e+02 9.011721e+00       3.171803 6.245320e-12 2.850364e-10
+
+607      Mir194-1     71.10636 1.325374e+02 9.675354e+00 7.300095e-02      -3.775941 1.405195e-11 6.166645e-10
+
+344        Dnm3os    179.61643 3.285433e+01 3.263785e+02 9.934110e+00       3.312391 1.503324e-11 6.352936e-10
+
+590        Mir184     32.23796 1.645700e+00 6.283021e+01 3.817841e+01       5.254685 1.644760e-11 6.702396e-10
+
+582     Mir181a-2    347.82506 8.313904e+01 6.125111e+02 7.367310e+00       2.881138 2.735424e-11 1.076248e-09
+
+541     Mir125b-2    493.08516 1.122867e+02 8.738836e+02 7.782608e+00       2.960254 5.662328e-11 2.153572e-09
+
+573        Mir155     57.66182 7.341434e+00 1.079822e+02 1.470860e+01       3.878588 6.173765e-11 2.272344e-09
+
+464        Gm5441     20.24317 2.430915e-01 4.024325e+01 1.655478e+02       7.371104 6.503611e-11 2.318944e-09
+
+571        Mir153     19.90411 2.430915e-01 3.956513e+01 1.627582e+02       7.346586 8.675688e-11 2.999685e-09
+
+649         Mir21  26121.31011 4.639963e+04 5.842995e+03 1.259276e-01      -2.989333 1.048681e-10 3.519252e-09
+
+654        Mir214    134.69038 2.546966e+01 2.439111e+02 9.576536e+00       3.259504 1.338023e-10 4.361954e-09
+
+638       Mir200b     87.13638 1.725548e+02 1.717931e+00 9.955853e-03      -6.650239 2.397950e-10 7.600169e-09
+
+666       Mir24-2    424.48288 1.104079e+02 7.385578e+02 6.689355e+00       2.741867 4.542021e-10 1.363802e-08
+
+700     Mir3074-2    424.48288 1.104079e+02 7.385578e+02 6.689355e+00       2.741867 4.542021e-10 1.363802e-08
+
+845        Mir871     33.03360 6.461640e+01 1.450790e+00 2.245235e-02      -5.476990 5.839129e-10 1.708320e-08
+
+767        Mir429     49.75018 9.677270e+01 2.727653e+00 2.818618e-02      -5.148868 6.903556e-10 1.969239e-08
+
+655        Mir215    152.78082 3.329953e+01 2.722621e+02 8.176156e+00       3.031423 8.994273e-10 2.503040e-08
+
+566       Mir148a 118994.46955 2.065090e+05 3.147993e+04 1.524386e-01      -2.713700 1.022762e-09 2.772155e-08
+
+569        Mir150    553.20599 1.318948e+02 9.745171e+02 7.388592e+00       2.885299 1.044721e-09 2.772155e-08
+
+628       Mir1983     14.04997 0.000000e+00 2.809994e+01          Inf            Inf 2.859722e-09 7.415778e-08
+
+581     Mir181a-1     59.53826 1.179305e+01 1.072835e+02 9.097179e+00       3.185419 3.537731e-09 8.970115e-08
+
+784        Mir470     18.37716 3.608521e+01 6.691037e-01 1.854232e-02      -5.753034 7.467127e-09 1.852172e-07
+
+630     Mir199a-2     44.84878 7.384673e+00 8.231288e+01 1.114645e+01       3.478512 8.433815e-09 2.047443e-07
+
+550        Mir132    106.46062 2.691980e+01 1.860014e+02 6.909467e+00       2.788574 1.329950e-08 3.161402e-07
+
+76  2610203C20Rik     79.17666 1.649993e+01 1.418534e+02 8.597210e+00       3.103869 1.594438e-08 3.712764e-07
+
+540     Mir125b-1     79.01988 1.649993e+01 1.415398e+02 8.578206e+00       3.100676 1.650666e-08 3.766821e-07
+
+# VOOM top 50
+
+                ID      logFC    AveExpr          t      P.Value    adj.P.Val         B
+
+600         Mir192  -6.948883 14.6763803 -42.722954 2.301199e-16 2.625668e-13 27.266471
+
+536        Mir122a -10.426125  8.1698641 -21.722912 2.859682e-12 1.087633e-09 17.760171
+
+568         Mir149   7.030463  6.3160807  20.883835 4.915491e-12 1.402144e-09 17.277609
+
+645        Mir208a  11.015018  3.9395538  23.252407 1.118938e-12 6.383542e-10 17.208662
+
+530         Mir10b   5.130915 12.2628672  18.242023 3.124991e-11 4.963978e-09 16.221503
+
+561       Mir143hg   2.249221 16.2444825  18.082481 3.521739e-11 4.963978e-09 16.026695
+
+560         Mir143   2.251067 16.2358599  18.081481 3.524391e-11 4.963978e-09 16.026084
+
+646        Mir208b  12.433228  4.6076218  19.592458 1.179199e-11 2.690931e-09 15.683666
+
+523        Mir101b  -3.765722 10.8508440 -16.538566 1.180419e-10 1.036045e-08 14.900027
+
+796         Mir499  11.567529  3.7874598  17.942086 3.915496e-11 4.963978e-09 14.821741
+
+566        Mir148a  -2.638213 15.4435820 -16.548188 1.171186e-10 1.036045e-08 14.814792
+
+844         Mir802  -9.158434  2.9157675 -17.316522 6.338616e-11 7.232360e-09 14.381577
+
+698        Mir3073  -8.420542  2.5457189 -16.702657 1.033066e-10 1.036045e-08 13.985845
+
+649          Mir21  -2.938537 13.1642917 -15.375404 3.148335e-10 2.394833e-08 13.867698
+
+585        Mir181c   3.742560  9.6295577  15.242361 3.537063e-10 2.522368e-08 13.810405
+
+791         Mir490   8.474378  3.7506957  16.259650 1.484816e-10 1.210125e-08 13.424617
+
+663         Mir23a   3.165768  8.7896592  14.631179 6.110682e-10 3.873493e-08 13.269174
+
+586        Mir181d   3.636211  6.3713218  14.317073 8.157508e-10 4.898798e-08 12.956333
+
+642         Mir204   7.684425  4.7751735  15.033484 4.254268e-10 2.855364e-08 12.822427
+
+671         Mir27a   3.106935  9.9255796  13.838251 1.281011e-09 6.960160e-08 12.513086
+
+552        Mir133b   6.493549  1.2544862  13.969968 1.129934e-09 6.446275e-08 11.982684
+
+608       Mir194-2  -5.264136  6.0897615 -13.044012 2.792884e-09 1.448491e-07 11.715753
+
+616         Mir195   3.216595  7.4509350  12.869478 3.332788e-09 1.653353e-07 11.587523
+
+756         Mir378   3.097393  7.3832049  11.684163 1.171371e-08 5.346138e-07 10.329692
+
+672         Mir27b   1.976376 15.0957731  11.756036 1.082197e-08 5.144946e-07 10.127719
+
+1017      Snord104  -2.337374 10.6109024 -11.495675 1.444482e-08 6.339052e-07 10.023395
+
+722         Mir322   3.296618  8.2153415  11.415362 1.580762e-08 6.441605e-07 10.008472
+
+655         Mir215   3.045873  5.7544234  11.148134 2.141822e-08 8.082459e-07  9.753268
+
+628        Mir1983   5.895500  0.9931851  11.445812 1.527548e-08 6.441605e-07  9.749260
+
+344         Dnm3os   3.363344  5.8607432  11.092261 2.283960e-08 8.082459e-07  9.689496
+
+637        Mir200a  -6.191561  1.7981309 -11.322172 1.756229e-08 6.909853e-07  9.662295
+
+587         Mir182  -4.903995  7.1511683 -11.074468 2.331304e-08 8.082459e-07  9.658842
+
+582      Mir181a-2   3.048298  6.9414651  11.072128 2.337609e-08 8.082459e-07  9.644017
+
+614        Mir1948  -7.195525  4.5513493 -11.005492 2.524936e-08 8.473388e-07  9.341794
+
+654         Mir214   3.280874  5.4784451  10.768257 3.332555e-08 1.086413e-06  9.318504
+
+571         Mir153   5.963803  1.4386315  10.727082 3.498742e-08 1.093990e-06  9.035569
+
+318        Cyp3a25  -6.318200  1.4888933 -10.698226 3.620443e-08 1.093990e-06  9.024973
+
+464         Gm5441   5.982176  1.4484953  10.692891 3.643436e-08 1.093990e-06  9.000362
+
+541      Mir125b-2   3.077678  7.4316058  10.446668 4.893073e-08 1.431538e-06  8.884250
+
+551      Mir133a-1   5.144671  0.5903264  10.358205 5.447229e-08 1.553822e-06  8.575535
+
+550         Mir132   2.847559  5.3211839  10.110952 7.380297e-08 2.004981e-06  8.531491
+
+13   1110038B12Rik  -2.226702 10.8487089 -10.194609 6.655312e-08 1.852125e-06  8.439308
+
+922        Rabggtb  -1.935779  9.9874171  -9.928995 9.262821e-08 2.457879e-06  8.133384
+
+569         Mir150   2.938531  7.6297870   9.842102 1.033602e-07 2.620755e-06  8.116464
+
+800         Mir504   5.256127  0.6221088   9.892894 9.693595e-08 2.513725e-06  8.068853
+
+573         Mir155   3.906600  3.9899000   9.732173 1.188627e-07 2.712448e-06  8.046518
+
+666        Mir24-2   2.833979  7.3083691   9.767192 1.136724e-07 2.646944e-06  8.030550
+
+700      Mir3074-2   2.833979  7.3083691   9.767192 1.136724e-07 2.646944e-06  8.030550
+
+664         Mir23b   2.124129  9.8141190   9.806316 1.081569e-07 2.625681e-06  7.979464
+
+631        Mir199b   5.752816  2.8805143   9.823920 1.057683e-07 2.623514e-06  7.979387
+
+Warning messages:
+
+1: In bplt(at[i], wid = width[i], stats = z$stats[, i], out = z$out[z$group ==  :
+
+  Outlier (-Inf) in boxplot 5 is not drawn
+
+2: In bplt(at[i], wid = width[i], stats = z$stats[, i], out = z$out[z$group ==  :
+
+  Outlier (-Inf) in boxplot 7 is not drawn
+
+3: In bxp(list(stats = c(-Inf, -Inf, -0.158608221176912, 0.826586442285183,  :
+
+  some notches went outside hinges ('box'): maybe set notch=FALSE
+
+4: In par(defpar) : calling par(new=TRUE) with no plot
+
+R version 2.15.1 (2012-06-22)
+
+Platform: x86_64-unknown-linux-gnu (64-bit)
+
+locale:
+
+ [1] LC_CTYPE=en_AU.UTF-8       LC_NUMERIC=C               LC_TIME=en_AU.UTF-8        LC_COLLATE=en_AU.UTF-8     LC_MONETARY=en_AU.UTF-8    LC_MESSAGES=en_AU.UTF-8    LC_PAPER=C                 LC_NAME=C                  LC_ADDRESS=C               LC_TELEPHONE=C             LC_MEASUREMENT=en_AU.UTF-8 LC_IDENTIFICATION=C       
+
+attached base packages:
+
+[1] methods   grid      stats     graphics  grDevices utils     datasets  base     
+
+other attached packages:
+
+ [1] edgeR_3.0.8        limma_3.14.4       DESeq_1.10.1       lattice_0.20-15    locfit_1.5-9.1     Biobase_2.18.0     BiocGenerics_0.4.0 gplots_2.11.0      MASS_7.3-23        KernSmooth_2.23-10 caTools_1.14       gdata_2.12.0.2     gtools_2.7.1       stringr_0.6.2     
+
+loaded via a namespace (and not attached):
+
+ [1] annotate_1.36.0      AnnotationDbi_1.20.7 bitops_1.0-5         DBI_0.2-7            genefilter_1.40.0    geneplotter_1.36.0   IRanges_1.16.6       parallel_2.15.1      RColorBrewer_1.0-5   RSQLite_0.11.3       splines_2.15.1       stats4_2.15.1        survival_2.37-4      XML_3.96-1.1         xtable_1.7-1        
+
+</pre>
+
+<hr/><div class="infomessage">This tool (edgeR) was generated by the <a href="https://bitbucket.org/fubar/galaxytoolfactory/overview">Galaxy Tool Factory</a></div><br/>
+</div></body></html>
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/test-data/edgeRtest1out.xls	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,1142 @@
+Name	logFC	logCPM	LR	PValue	adj.p.value	Dispersion	totreads	case_X11706He_AGTTCC_L001_R1_001_trimmed.fastq_bwa.sam.bam	case_X11699He_GGCTAC_L001_R1_001_trimmed.fastq_bwa.sam.bam	case_X11698He_TAGCTT_L001_R1_001_trimmed.fastq_bwa.sam.bam	case_X11700He_CTTGTA_L001_R1_001_trimmed.fastq_bwa.sam.bam	control_X11706Liv_CAAAAG_L003_R1_001_trimmed.fastq_bwa.sam.bam	control_X11700Liv_ATTCCT_L003_R1_001_trimmed.fastq_bwa.sam.bam	control_X11698Liv_ACTGAT_L003_R1_001_trimmed.fastq_bwa.sam.bam	control_X11699Liv_ATGAGC_L003_R1_001_trimmed.fastq_bwa.sam.bam	case_X11706He_AGTTCC_L001_R1_001_trimmed.fastq_bwa.sam.bam	case_X11699He_GGCTAC_L001_R1_001_trimmed.fastq_bwa.sam.bam	case_X11698He_TAGCTT_L001_R1_001_trimmed.fastq_bwa.sam.bam	case_X11700He_CTTGTA_L001_R1_001_trimmed.fastq_bwa.sam.bam	control_X11706Liv_CAAAAG_L003_R1_001_trimmed.fastq_bwa.sam.bam	control_X11700Liv_ATTCCT_L003_R1_001_trimmed.fastq_bwa.sam.bam	control_X11698Liv_ACTGAT_L003_R1_001_trimmed.fastq_bwa.sam.bam	control_X11699Liv_ATGAGC_L003_R1_001_trimmed.fastq_bwa.sam.bam
+Mir122a	-10.6613482198735	12.5379487184339	445.912028851371	5.59474310450852e-99	6.38360188224422e-96	0.102055096028295	90428	6.64466912039531	2.86464823551992	20.1236936368881	4.75652253016081	20841.6623198401	16818.9531619257	7242.55663282834	8468.31297344994	12	7	27	8	29767	24233	11911	24463
+Mir192	-7.10901851688288	17.2474145508888	366.131659138235	1.3015583263717e-81	7.42539025195057e-79	0.0776548700185199	2325567	1779.66387941254	1294.41176699279	4493.54625691845	1933.52640851037	463599.032378899	340312.253828562	383591.60517699	182292.180510107	3214	3163	6029	3252	662133	490327	630849	526600
+Mir208b	13.4237202575152	9.82233816515324	355.417815392181	2.80129611458365e-79	1.06542628891331e-76	0.124440587141633	14756	1245.90702213628	570.139045385768	4930.34448733332	881.902421077918	0.74532198655141	0	0	0	2049	1647	8904	2155	1	0	0	0
+Mir208a	11.9775863683342	8.38828977985358	348.815401742963	7.675450754893e-78	2.18942232783323e-75	0.0993679816515115	4638	433.789589950159	712.527819143148	1006.59908044528	649.748467524829	0	0	0	0.553722426699609	1060	956	1693	928	0	0	0	1
+Mir499	14.4882160574998	8.61277040381698	291.127944921827	2.82350748745294e-65	6.4432440863676e-63	0.134816198797062	6527	608.439028317971	506.657690265579	2521.60879492395	270.357373677161	0	0	0	0	869	730	4147	781	0	0	0	0
+Mir149	6.86973108218652	8.78566474384905	253.019861795716	5.70293016120625e-57	1.08450721898939e-54	0.0983468375157501	6164	774.657674952754	459.571424069838	1710.51395913549	766.394692672161	17.5039996639232	6.24646467450714	4.86444908593961	5.5386913941544	1399	1123	2295	1289	25	9	8	16
+Mir490	8.4539298899245	6.90959613094456	251.056095815646	1.52828085290668e-56	2.4910977902379e-54	0.0974500488770791	1741	209.881556643346	217.749755819205	520.538722875595	195.794075709069	1.03850463640395	0.553722426699609	0	0.74532198655141	353	311	750	322	3	1	0	1
+Mir802	-12.4996776940066	6.62939088571757	237.561606597444	1.33781241656995e-53	1.90805495913289e-51	0.10939980863872	1514	0	0	0	0	305.654779538184	164.10342034907	155.772295189245	209.286991327076	0	0	0	0	552	401	209	352
+Mir204	7.37117920479641	7.55899555710097	237.12302218121	1.66736458270285e-53	2.11384776540439e-51	0.10292005004102	2601	425.578854320855	326.416358632286	646.247667592045	375.481932100929	3.04028067871226	0.6923364242693	0.553722426699609	3.68311915995418	571	549	923	541	5	2	1	9
+Mir1948	-7.58332571104735	7.29345576009458	204.796406017043	1.87589722530299e-46	2.14039873407072e-44	0.118339985035871	2404	1.2161122714849	0.6923364242693	1.66116728009883	1.63694184886853	647.684806313175	385.278324943026	181.341436518244	428.229856018989	2	2	3	4	869	648	259	617
+Mir3073	-11.7485555893732	5.88146234349958	200.033500954155	2.05362547312175e-45	2.13016969530174e-43	0.110685621278186	904	0	0	0	0	207.347142288176	75.4646702453536	72.5376378976488	87.5763889144661	0	0	0	0	341	218	131	214
+Mir194-2	-5.43982669183809	7.86004832737241	165.572392495399	6.85919857312405e-38	6.52195464327879e-36	0.106710199302315	3570	10.5207261072926	6.13853193325697	14.9064397310282	9.51304506032163	921.410542308918	600.354660383186	266.936643590936	304.628026678492	19	15	20	16	1316	865	439	880
+Mir10b	5.0328982107069	13.880769769219	160.065802570007	1.0946399286548e-36	9.60757045073175e-35	0.107954343937396	197340	25838.8226297643	32163.6053489474	36317.2985027079	34465.2158674084	1825.38451949884	373.861669105422	658.375965345836	727.211416359842	34668	54096	51870	49658	3002	1080	1189	1777
+Mir101b	-3.92528713393055	11.9360901455378	120.624266541894	4.61814317471517e-28	3.76378668739286e-26	0.0966307527814339	59019	219.816814705503	301.225000124588	811.923157038789	427.069498293958	10145.0679915167	7747.97041123897	11280.4211505294	6628.41993572847	635	544	1984	573	17063	11066	16253	10901
+Mir182	-5.24438373094747	8.94270765623571	118.928149724545	1.08592583416118e-27	8.26027584518606e-26	0.149934428671101	7189	16.9622423945978	14.3967830941898	22.0987149597251	31.3035234351592	984.005598427018	615.44062818354	2366.0220083772	653.660345923136	49	26	54	42	1655	879	3409	1075
+Mir200b	-6.72534784619757	5.76518685294719	115.731891447532	5.44098879544178e-27	3.88010513474942e-25	0.167124904530932	888	2.43222454296981	0	1.66116728009883	0	369.679705329499	97.5087118682966	46.2105591127573	107.578002727623	4	0	3	0	496	164	66	155
+Mir181c	3.6118671281253	10.5698150360209	107.820107113202	2.94315295097335e-25	1.97537501003564e-23	0.0938527006387662	23605	2420.85208718677	1892.87875056625	4093.0929402801	1902.59025813986	232.036507077113	272.787847077816	228.313081447719	298.968314259808	3488	3113	11824	3436	567	366	384	427
+Mir181d	3.48997562250607	7.2320639569436	102.186614268585	5.05301947727886e-24	3.20305290198621e-22	0.087384984044046	2139	310.053946405387	202.152207531835	539.823349635392	295.665994593338	36.4833681445471	14.5390649096553	25.471231628182	15.550947564251	416	340	771	426	60	42	46	38
+Mir21	-3.07777147203033	13.8815003666918	91.3732407445455	1.1897452302054e-21	7.14473319823348e-20	0.0849427206355669	229120	3207.21258454416	2190.82625708005	4348.9112490476	2010.56613134628	27154.0006244933	33227.944804435	25707.2205795704	35379.0841207216	4621	3603	12563	3631	66353	44582	43237	50530
+Mir199b	5.41147631803522	4.69586911909022	86.7037178851385	1.26059609329233e-20	7.19170071223273e-19	0.156561826531982	370	43.4032680877174	44.8102391396434	99.2493831616134	49.2525469951386	1.3846728485386	0.553722426699609	0	2.98128794620564	73	64	143	81	4	1	0	4
+Mir193	-5.36015662788668	4.77547692611212	84.6612650026128	3.5412053458764e-20	1.92405490459285e-18	0.155464968416992	421	1.49064397310282	1.1891306325402	2.80063994622771	0.694051630500793	101.545374668989	34.9629894255996	33.7770680286762	33.9665433640219	2	2	4	1	167	101	61	83
+Mir23a	3.00307076424737	9.46741956688047	82.28684490401	1.17702908493873e-19	6.10450084506861e-18	0.0892034490333833	10118	1149.88932166638	1127.95773834321	2471.51785621332	1096.32521274364	150.583172278573	126.802435714211	89.2133307633346	243.720289602311	1934	1611	3561	1803	435	229	218	327
+Mir195	3.06054621394571	8.15279745103936	81.3972715690713	1.84612638492429e-19	9.15839219651573e-18	0.0913301572784805	3962	429.134880692197	283.190939854255	922.708619350646	470.89573048592	110.625277875995	77.7337826160888	45.6042101806839	41.540185456158	775	692	1238	792	158	112	75	120
+Ahsg	-10.1013431702234	6.6385887851201	79.821328032349	4.09844702296257e-19	1.92375926690416e-17	0.42092199405061	1524	0	0.553722426699609	0	0	348.415275334279	12.6028797580247	610.071383210197	24.3222454296981	0	1	0	0	586	18	879	40
+Mir148a	-2.78937502090353	16.047168680842	79.7658888859378	4.21507288979878e-19	1.92375926690416e-17	0.0819605364404836	1002397	15925.5982512306	8528.20007414923	22070.8222058197	10590.1952912549	192723.868638491	105445.564275186	179549.727112645	134274.698694836	26191	24636	39859	25878	258578	177349	256441	193465
+Dnm3os	3.18944316253823	6.61883431628908	79.1961422287326	5.62397892398994e-19	2.46806152010482e-17	0.0949653148790185	1401	134.000827261305	87.167153452249	365.207773410191	182.531552094921	37.1084792875172	24.9858586980285	12.161122714849	13.846728485386	242	213	490	307	53	36	20	40
+Mir27a	2.92177170736328	10.5812768795259	77.2698776994316	1.49123094631961e-18	6.30183151759511e-17	0.0912505912483571	21886	2383.61235292684	2512.17403176626	5321.98790268008	2361.69003122368	328.513633315783	347.737683967355	163.694184886853	566.444709779072	4009	3588	7668	3884	949	628	400	760
+Mir429	-5.34193377949947	4.95110312707712	76.3875799779135	2.33112791050646e-18	9.49934623531384e-17	0.183241171201345	499	1.7836959488103	0.700159986556928	2.08215489150238	1.82416840722736	91.7345762156822	45.405238989368	16.7786539509024	75.2775206416924	3	1	3	3	265	82	41	101
+Mir214	3.12590636489108	6.20234665031187	74.2821251599606	6.77138706168541e-18	2.66419056461485e-16	0.0953276171520653	1048	110.058160569384	56.4254185779479	198.23262875846	93.7149208477231	33.5394893948135	15.4586982230226	11.9027197714678	20.127497284523	181	163	358	229	45	26	17	29
+Mir200a	-7.59226302352062	4.05994320136271	73.7142550533581	9.02845045111825e-18	3.43382065490864e-16	0.224178202729185	264	0	0	0.594565316270102	0	90.2267119651031	32.2269751943499	11.4235510004434	26.0249540548816	0	0	1	0	130	53	33	47
+Mir194-1	-3.97021853073367	5.39389876933198	73.2237979529499	1.1575165879669e-17	4.26040782861365e-16	0.130958864780352	635	3.56739189762061	9.10207982524007	5.55241304400634	3.64833681445471	76.1570066696229	88.5955882719375	33.1480724395876	105.090400103749	6	13	8	6	220	160	81	141
+Mir378	2.95431952960146	8.05336780578876	73.0964650986627	1.23465451887634e-17	4.40231501886846e-16	0.0956665499194766	4075	425.697271826612	392.139171232948	1155.9147140464	188.315507401249	76.4136948845461	36.8311915995418	91.6746043458234	63.0239235246308	608	565	1901	544	138	90	123	106
+Mir322	3.05856921521976	8.94824187288921	72.8372126855238	1.40796901194656e-17	4.86815952312432e-16	0.103656954331831	7074	1012.89257972337	671.858807385215	1784.70780573361	855.071608776977	158.70265142878	78.9263523667001	50.3887408296645	91.6687435366374	1359	1130	2549	1232	261	228	91	224
+Mir215	2.90893351586836	6.38192368892387	70.311049912704	5.06531683728474e-17	1.69986073862997e-15	0.0900203619873792	1182	123.075020467911	161.036796908093	272.762290786812	122.219283284233	19.3854198795404	17.1653952276879	11.4585929420797	26.8315915158508	207	230	393	201	56	31	28	36
+Cyp3a25	-9.77860211373653	3.91325729596345	70.0264241191466	5.85153294977192e-17	1.90759974162565e-15	0.264452365698728	226	0	0	0	0	56.6444709779072	17.836959488103	65.1148787497943	18.7393940235214	0	0	0	0	76	30	93	27
+Mir183	-4.21446206828232	5.24792871814947	66.3110130402762	3.85100994568175e-16	1.22055620778413e-14	0.159551640795599	563	8.40191983868314	1.38810326100159	2.43222454296981	2.42317748494255	86.3806985651391	29.0557178174163	134.903279565805	77.2934911151132	12	2	4	7	156	71	181	130
+Mir181a-2	2.83771284942958	7.57379761415609	65.529002601634	5.72650030707276e-16	1.76592887847838e-14	0.0983402987214175	2817	288.826664477665	137.774948429591	639.549402838049	182.109780686623	58.13511495101	41.025006822637	80.5183984540467	56.912233701065	475	398	1155	445	78	69	115	82
+Mir155	3.73430977551283	4.97536414314019	65.0759982171349	7.20644948975499e-16	2.16383128100275e-14	0.13295454756028	463	33.9665433640219	58.8804369375614	114.156540723859	52.5119989917696	9.7167228270111	1.82416840722736	2.7693456970772	4.98350184029649	83	79	192	75	14	3	8	9
+Snord91a	-2.81834162418986	6.5922507494912	64.2934517703521	1.07201440082266e-15	3.13632931112474e-14	0.0942244574316978	1437	13.846728485386	16.0579503742887	33.1480724395876	18.6330496637853	215.827209806047	179.240956558574	248.470483719284	173.295998686599	40	29	81	25	363	256	358	285
+Mir125b-2	2.85223280857829	8.08109324518757	64.2082166292202	1.11940933259702e-15	3.19311512123301e-14	0.10276577547371	3837	315.520541369408	440.485294051883	763.42186609081	485.210870683951	108.272054358124	90.6003642256253	20.770092728079	73.6450827510481	771	591	1284	693	156	149	60	133
+Serpina4-ps1	-10.0905640887531	4.22405077630453	64.0209367290974	1.23103990147691e-15	3.4258939697199e-14	0.344064523917905	295	0	0	0	0	108.071688049954	11.2967410091319	81.9187184271606	9.7167228270111	0	0	0	0	145	19	117	14
+Mir133b	9.29339239795832	3.40470370765963	63.5957583468182	1.52757738622221e-15	4.14991856590367e-14	0.264043920283644	159	17.7191176543875	10.6401220176454	57.3897929644586	14.2695675904824	0	0	0	0	32	26	77	24	0	0	0	0
+Gm10069	-7.47545882888183	6.40032633575856	63.1544509261085	1.91117152002377e-15	5.07127140545842e-14	0.415414318390197	1309	1.1891306325402	1.40031997311386	0.694051630500793	0.608056135742452	191.431021310461	6.64466912039531	286.874059014209	27.5769135024022	2	2	1	1	553	12	701	37
+Mir871	-5.63358768833506	4.28323305801825	62.6751301452424	2.43774553659211e-15	6.32151740284455e-14	0.219078255638986	290	1.22770638665139	0.74532198655141	0.594565316270102	0	56.912233701065	49.2525469951386	10.0388781519048	51.4961856830637	3	1	1	0	82	81	29	93
+Mir184	5.00296778701477	4.12369123421566	61.9764243428226	3.47594000287726e-15	8.81343898507322e-14	0.192899916391374	247	33.4430874658348	14.1928966975206	49.8350184029648	21.689479497508	2.98128794620564	0	1.40031997311386	1.38810326100159	55	41	90	53	4	0	2	2
+Mir132	2.70286257459272	5.86613412494138	58.8077259440204	1.73857260625722e-14	4.31241596465105e-13	0.0914847775829246	857	82.6956344609734	43.2710265168312	182.174678384172	60.9760838703526	28.3222354889536	13.0804369579422	21.0047995967078	19.4334456540222	136	125	329	149	38	22	30	28
+Snord104	-2.49206335283133	11.1088708495205	58.5554702704374	1.97639393929677e-14	4.79801166965451e-13	0.0909302298475509	33458	614.929744623703	437.800417734565	862.997352851682	514.408134403937	3826.7608071924	4181.25634455341	4430.7007368448	4212.86263911304	886	720	2493	929	9351	5610	7452	6017
+Mir3074-2	2.63550543538719	7.87104175254715	57.7293756038868	3.00777254045821e-14	7.14972597638087e-13	0.0990019802043333	3470	450.903031342662	320.651853291366	835.469130510129	171.699433218786	89.7030331253367	51.9729037015757	48.4459291258417	83.2391442778142	644	462	1374	496	162	127	65	140
+Mir24-2	2.63550528434932	7.87104239659286	57.6817352688704	3.08150938383032e-14	7.17551470806204e-13	0.0990865634413493	3470	479.987359339108	274.689176116787	962.019821529219	344.249608728393	98.5050939902772	43.9633629411005	35.9919577354746	57.2929647103984	644	462	1374	496	162	127	65	140
+5430416N02Rik	-3.26722803579243	5.20236682797924	56.75137289148	4.94545490626554e-14	1.1285528096098e-12	0.12456686880483	564	6.08056135742452	1.73084106067325	12.735615814091	4.91082554660558	145.337787377525	58.8619663107401	55.3126389379973	97.8612799006118	10	5	23	12	195	99	79	141
+Mir150	2.73410607286415	8.2502498796262	56.2976392353433	6.22901702317529e-14	1.39358988694961e-12	0.109484312253546	4229	585.779576142669	416.518452983579	412.978677076637	483.953400935459	117.0413421941	73.7868766685896	46.3760946690679	119.027197714678	844	685	1193	874	286	99	78	170
+Mir582	5.42454800542308	5.47017853279729	55.1509228443968	1.11621248272961e-13	2.44922777460477e-12	0.306346723263193	566	285.45832084919	21.4043513857237	72.1164786153636	20.127497284523	2.43222454296981	0.6923364242693	2.21488970679844	2.04617731108566	383	36	103	29	4	2	4	5
+Gm5441	7.02450025045598	3.4257230587427	54.0865297006395	1.91851994194541e-13	4.13024764860323e-12	0.284243308966583	142	17.1653952276879	13.5047702531653	26.8315915158508	24.3771779670742	0	0	0	0.34616821213465	31	33	36	41	0	0	0	1
+Mir153	7.00054709028076	3.4018537813844	53.5994637028827	2.4582650500181e-13	5.19422300383455e-12	0.284896861032388	140	10.7312145761741	17.7191176543875	14.7324766398167	29.8128794620564	0	0	0	0.608056135742452	31	32	36	40	0	0	0	1
+2610203C20Rik	2.95034870917776	5.4366621820989	51.3271797148302	7.8185608239661e-13	1.6219959818446e-11	0.121288300374395	610	92.4211182255145	63.852750006073	115.530665791066	41.1940172440233	16.6116728009883	7.36623831990836	4.47193191930846	13.6750022742123	132	92	190	119	30	18	6	23
+Mir125b-1	2.94712505851799	5.43380862124169	51.2244710149589	8.23851954066653e-13	1.67770455636521e-11	0.121281143021527	609	91.7209582389576	63.852750006073	115.530665791066	41.1940172440233	16.6116728009883	7.36623831990836	4.47193191930846	13.6750022742123	131	92	190	119	30	18	6	23
+Mir143hg	2.09369362474727	16.597487511538	51.1907716724181	8.38117087754751e-13	1.67770455636521e-11	0.0759313854143515	1407364	159330.656607545	138939.610904879	148871.024301355	129866.181901139	37036.2185661126	42841.1077869751	41878.2080514846	46418.5066287647	229566	228498	430054	234533	90501	57480	70435	66297
+1110038B12Rik	-2.33966102118487	11.2969438230726	50.9308505394891	9.56779031173681e-13	1.88221530098133e-11	0.0932766268056568	37066	550.830932144259	903.330247700309	951.304506032162	929.812462147601	6528.24963649046	4623.6588561856	2245.24702390534	4476.29209743964	1346	1212	1600	1328	9406	7604	6486	8084
+Mir143	2.09528419680987	16.5894250734368	50.7667149195977	1.04022907200701e-12	2.01169723925423e-11	0.0766734727330058	1399819	126399.325787573	93018.4020910295	319342.894323777	138506.963251701	62868.7655129197	39588.7050037652	42690.405178206	22774.7528445507	228272	227298	428463	232955	89792	57040	70208	65791
+Mir455	-2.68777200412337	5.89402305473939	50.682906891572	1.08560920849746e-12	2.06446684482599e-11	0.106531892682357	895	13.9852911220764	6.2310278184237	33.2233456019766	7.36623831990836	175.150666839581	117.12936730521	74.9171185615913	164.490236428688	23	18	60	18	235	197	107	237
+Snord52	-2.350653358741	10.2606363847317	50.2263847138569	1.36993425399524e-12	2.5624507931288e-11	0.0950429668063945	18059	453.909766347519	359.361176223789	260.664663737391	359.365854928047	1875.93535880333	2769.61650202504	1885.36661789249	2759.33050702085	654	591	753	649	4584	3716	3171	3941
+Mir181a-1	3.09587834418476	5.03717731890298	49.9695673384102	1.56149111258485e-12	2.87364735396664e-11	0.130537098609426	506	31.101895128502	45.464641179636	143.290241221094	53.2121589783265	11.7988777185135	8.51278590039432	3.4616821213465	6.0909466936957	76	61	241	76	17	14	10	11
+Scarna17	-2.33167708076852	9.29149883471605	49.8225075537309	1.68302180394551e-12	3.04813948936798e-11	0.0937422613223884	9224	229.731089695762	186.06517753719	137.774948429591	186.604457797768	972.752693690121	1305.80412043807	1171.88823836837	1226.68029644774	331	306	398	337	2377	1752	1971	1752
+Mir1983	8.80840223335433	2.90481668275162	49.2439983956967	2.26023803156087e-12	4.02958061564211e-11	0.319937740932585	101	21.0047995967078	10.4107744575119	17.0255718007886	9.69270993977019	0	0	0	0	30	15	28	28	0	0	0	0
+Mir470	-5.98479183384397	3.41314171605558	48.8046140367235	2.82773796605265e-12	4.96376772194781e-11	0.258536929647097	157	0.553722426699609	0.409235462217131	0	0	28.7065594488341	22.9037038065262	20.6739086152434	16.2699059703285	1	1	0	0	41	33	34	47
+Mir34c	5.00415599293952	5.15909238160986	45.7331578090812	1.35509456255066e-11	2.34267105434894e-10	0.328732555595581	715	17.836959488103	14.7033597176955	424.065546235984	22.4980770224707	1.73084106067325	1.10744485339922	2.45541277330279	2.23596595965423	30	21	611	37	5	2	6	3
+Mir199a-2	3.38242693022085	4.61107530714382	45.6691678320026	1.40009288688606e-11	2.37019443908053e-10	0.161229502880818	352	37.0914242802896	17.3084106067325	72.5376378976488	31.9203660529362	5.96257589241128	5.94565316270102	2.10047995967078	7.63456793550872	61	50	131	78	8	10	3	11
+1810019D21Rik	-8.82961032496445	2.96669898849049	45.6518013703816	1.41256110304537e-11	2.37019443908053e-10	0.345968790399311	117	0	0	0	0	31.3035234351592	21.4043513857237	21.0047995967078	6.24646467450714	0	0	0	0	42	36	30	9
+Rabggtb	-2.08887052044042	10.3407641025247	45.3710028714176	1.63030308183513e-11	2.695906980252e-10	0.0847291926692703	19535	576.879217590791	344.253318120389	1121.6562984642	446.27519841201	3194.1188810551	1209.16556498633	1938.58221587533	1510.07885558121	774	579	1602	643	5253	3493	3501	3690
+Mir125a	2.48247918644668	11.4913328058976	43.8852860243564	3.48196700211231e-11	5.67560621344307e-10	0.120710380446709	37867	2619.45486122289	4091.45501088341	2970.23098477194	6672.86774559477	1382.95892564426	1187.47133720055	507.35174189608	1183.88529629055	7567	7389	7258	8953	2326	1696	731	1947
+Mir31	-2.46822088138425	7.05581684484308	43.6722567065109	3.88236622353184e-11	6.23912656485891e-10	0.114438566650714	2078	18.6930834552711	21.0414522145852	73.6623831990836	35.0301333679163	425.708766449393	266.76095487819	151.303255449173	269.976924269649	54	38	180	47	716	381	218	444
+Mir203	-2.10390700862081	8.80382718478893	43.3656726424982	4.54084624108199e-11	7.19597994593688e-10	0.0887305569112258	6739	160.325926645683	147.757640985416	173.084106067325	126.248713287511	785.322851994675	951.030854839599	590.403359056211	944.515821865296	231	243	500	228	1919	1276	993	1349
+Mir128-1	2.62731603672815	5.20825078256533	41.6429230424878	1.0956126283634e-10	1.71245754652417e-09	0.11987707770827	527	64.2318014971547	33.5573079018048	130.431347646497	45.7815293527978	13.3030397445816	13.8810326100159	8.51278590039432	8.30803709123159	116	82	175	77	19	20	14	24
+Snord45b	-2.1281504718061	7.19730900177307	38.3418941866402	5.93741999430604e-10	9.11691347796124e-09	0.0991732435710304	2199	33.9244847891957	39.8680147223719	56.4744937859641	52.1725390585987	368.630496087463	320.673273843073	169.348597842193	303.420011735483	98	72	138	70	620	458	244	499
+Mir497	2.28262729455114	6.16690422414266	38.3238052201631	5.99271262793245e-10	9.11691347796124e-09	0.108757545922052	963	68.5413060026606	100.777481659329	79.8009151323406	149.064397310282	39.2413108738267	32.9075193681756	18.7393940235214	29.1866945156377	198	182	195	200	66	47	27	48
+Aqp9	-9.32357091546928	3.45275864994795	38.2237010259029	6.30815477277456e-10	9.47053236281022e-09	0.571042697925144	161	0	0	0	0	32.794167408262	1.1891306325402	74.9171185615913	5.55241304400634	0	0	0	0	44	2	107	8
+Mir27b	1.80808695607433	15.3716430421266	37.2013441967224	1.0654031549896e-09	1.57873376603004e-08	0.079417916349179	625308	53355.0318694943	31721.4776182987	160548.318479066	54867.0819507212	34622.9113352401	23924.6537549928	15136.3413870369	12093.0403227119	96357	77514	215408	92281	49450	34471	24893	34934
+Mir504	8.081500241404	2.18664861853042	37.142014939341	1.09831574359089e-09	1.60663879927847e-08	0.351152401845018	69	6.64466912039531	2.45541277330279	25.3409475427479	10.1076103765917	0	0	0	0	12	6	34	17	0	0	0	0
+Mir375	-5.08204391475147	3.0230845826912	36.9852539582532	1.19026018576546e-09	1.71909730627644e-08	0.280401372814324	123	0.553722426699609	0.409235462217131	0.74532198655141	0	32.2073593816187	18.7393940235214	15.8094595293037	7.26953245482764	1	1	1	0	46	27	26	21
+0610031O16Rik	-8.20632216683161	2.35099280665531	36.7454663674552	1.34603277920484e-09	1.91977925134091e-08	0.359010669268355	78	0	0	0	0	24.5956255561965	5.94565316270102	17.5039996639232	6.94051630500793	0	0	0	0	33	10	25	10
+Mir141	-3.05796957783871	5.67697468425021	36.4168138966403	1.59322854365315e-09	2.24428860284969e-08	0.190780272239608	835	13.3772349863339	5.88485960628905	8.30583640049414	6.5477673954741	359.990519504331	71.3478379524122	30.1068794219479	82.5921440295944	22	17	15	16	483	120	43	119
+Mir23b	1.9473234888882	10.1359859157676	36.256332125973	1.72997006154778e-09	2.40719004905612e-08	0.0930906572437047	16387	1517.75317158363	899.908781415472	3933.06412303179	1513.16872990741	1066.3436595262	525.3970842891	371.522298938638	254.087467706833	2741	2199	5277	2545	1523	757	611	734
+Mir133a-1	7.9513149375042	2.04580809342454	35.9028827574773	2.07401627798591e-09	2.85114767853244e-08	0.342057210129259	60	9.51304506032163	7.70175985212621	17.3512907625198	4.86444908593961	0	0	0	0	16	11	25	8	0	0	0	0
+Mir99a	2.20708253439204	10.3896506828656	35.6065736364928	2.41471305896149e-09	3.27998523842269e-08	0.119794369769799	17575	1405.09677305454	1769.69687573195	1217.88473555818	2763.65392613263	709.910987626501	656.049907403842	324.816163074371	630.554212764922	4059	3196	2976	3708	1194	937	468	1037
+Gm5424	-6.95826600362099	3.51190649125369	35.5562332777	2.47792853040808e-09	3.32625465081838e-08	0.503725727506815	181	0.594565316270102	0	0	0	32.1936437285224	2.76861213349805	31.5111305907191	3.72660993275705	1	0	0	0	93	5	77	5
+D7Ertd143e	-8.07864321133719	2.22793680092816	35.2655329657787	2.87678473020794e-09	3.81675741531076e-08	0.357879755400083	73	0	0	0	0	12.4620556368474	8.85955882719375	3.68311915995418	8.94386383861692	0	0	0	0	36	16	9	12
+Mir201	8.00627989822943	2.10403414839083	34.9588283419933	3.36751073260349e-09	4.41647097229952e-08	0.375138659098955	63	2.76861213349805	6.13853193325697	20.8690156234395	8.91847974405152	0	0	0	0	5	15	28	15	0	0	0	0
+Mir193b	3.0695662111524	4.17802341747466	34.161136094026	5.07320855768732e-09	6.57787609581958e-08	0.17903780124897	260	33.4430874658348	15.5775695460592	51.4961856830637	15.550947564251	5.96257589241128	2.37826126508041	6.30143987901235	5.55241304400634	55	45	93	38	8	4	9	8
+Scarna6	-1.88530921977399	7.3239344951161	33.7449662440645	6.28314149061498e-09	8.0551285851592e-08	0.0902500053764031	2398	36.8311915995418	65.5883348165241	133.182630844503	66.5151987229082	408.796410364967	304.028067871226	109.735323246684	274.092601216307	90	88	224	95	589	500	317	495
+Mir3102	5.35882335775368	2.64121101455595	33.5658812548509	6.88905884644e-09	8.73379571532005e-08	0.325894122742314	87	9.41241563099402	10.4345078117197	17.2423941718329	13.3030397445816	0	0.608056135742452	0	0.553722426699609	23	14	29	19	0	1	0	1
+Mir881	-7.98249551449774	2.12211304510285	32.7832054640429	1.03031166668318e-08	1.29185232053353e-07	0.386040243603395	64	0	0	0	0	7.75211397379453	3.27388369773705	9.68918582516833	17.2423941718329	0	0	0	0	14	8	13	29
+Fth1	-4.37857342093983	5.38352079994404	31.7766342923745	1.72961038824405e-08	2.14509288368094e-07	0.402646838660719	625	4.75652253016081	2.80063994622771	7.63456793550872	2.43222454296981	68.5413060026606	3.87605698689727	153.463298331424	13.4157957579254	8	4	11	4	198	7	375	18
+Mir107	-1.81286626563393	7.98424933973711	31.3156870682543	2.19300483351177e-08	2.69055754305046e-07	0.0920898030426807	3843	96.9014246724317	45.8343717683187	307.817980445732	84.4282749103544	723.965426099864	444.887095151008	428.071519562686	215.316627947752	175	112	413	142	1034	641	704	622
+Hgd	-6.59816784639936	3.16620499817597	31.2132623991112	2.31181272240359e-08	2.8061471449601e-07	0.52150853919759	137	0	0.594565316270102	0	0	33.4430874658348	1.3846728485386	39.3142922956723	2.45541277330279	0	1	0	0	55	4	71	6
+Mir3470b	-4.68838941248773	3.14503107104778	30.9125299029967	2.69923440880683e-08	3.24192258994589e-07	0.327784732956504	132	0	2.37826126508041	0	0	27.9705822441528	9.34654172763554	19.9340073611859	7.77547378212549	0	4	0	0	46	27	36	19
+Mirlet7e	1.8538118650749	6.68153082866704	30.3142211972717	3.67422135731732e-08	4.36696517572819e-07	0.0957747301343719	1576	163.137276867764	111.048260880127	394.020375961109	67.8489695783913	63.1243566437555	31.101895128502	47.7006071392902	50.5380518829586	233	160	648	196	114	76	64	85
+Mir592	-5.63358152644221	2.20162078005207	28.718229340558	8.371201918502e-08	9.84694988557813e-07	0.343558801214923	70	0.34616821213465	0	0	0	16.6478288555628	10.5023997983539	5.55241304400634	10.9450104433641	1	0	0	0	28	15	8	18
+Terc	-5.58351159909917	2.14826836122565	28.6530965218399	8.65754423415898e-08	1.0079855072628e-06	0.331287016798336	66	0.694051630500793	0	0	0	9.00318016877689	13.4157957579254	5.94565316270102	10.5023997983539	1	0	0	0	22	18	10	15
+Mir547	7.57267023512074	1.64822521108977	28.171949268209	1.1100167882359e-07	1.27932237916885e-06	0.423621435325724	42	8.30583640049414	3.27388369773705	7.4532198655141	5.35108784643091	0	0	0	0	15	8	10	9	0	0	0	0
+Scnn1b	7.66141003593485	1.74267962711525	28.1236474183351	1.13806765009286e-07	1.28672413942851e-06	0.453880174551202	45	13.8810326100159	3.04028067871226	3.80785033348115	4.98350184029649	0	0	0	0	20	5	11	9	0	0	0	0
+Snord72	-1.99865753766157	5.32762717247088	28.1113796190191	1.14530448260111e-07	1.28672413942851e-06	0.108944101046975	603	11.6281709606918	9.82165109321115	42.4833532334304	9.51304506032163	111.325437862552	70.7932663110809	74.7909046963216	34.9629894255996	21	24	57	16	159	102	123	101
+Proc	-8.34060291685597	2.47353428644525	28.1030061666675	1.15027048397641e-07	1.28672413942851e-06	0.623270866998637	83	0	0	0	0	19.4334456540222	1.2161122714849	17.3084106067325	1.66116728009883	0	0	0	0	28	2	50	3
+Mir145	1.82731571180131	9.10812234302671	27.143112773632	1.88937088461262e-07	2.09298269839126e-06	0.109850081363838	7539	447.941666502237	664.466912039531	651.093620387456	1175.37277279157	419.168547970422	308.070394085048	157.54972012368	307.068348549938	1294	1200	1591	1577	705	440	227	505
+C430049B03Rik	1.71016972066493	10.8223091327111	26.8082784375072	2.24672814113162e-07	2.46492000868383e-06	0.0988498324160551	25716	1536.29452545358	2029.94641628077	2948.95074073665	2969.36279442082	1186.75237127512	1158.06461776516	571.898543532653	1184.4933524263	4438	3666	7206	3984	1996	1654	824	1948
+Taf1d	-1.76454724951041	6.55908754578095	26.4166122241945	2.75163761899181e-07	2.99011287930443e-06	0.0995348557652302	1421	31.5119617623154	39.208959247188	108.272054358124	32.8350313300924	123.58205173207	96.3477022457321	139.549292616042	171.424056906824	53	56	156	54	357	174	341	230
+Mir144	2.42421663401894	10.1128061755165	26.3134903354097	2.90254150898289e-07	3.12433949221649e-06	0.192587788459561	13709	2856.81917445155	1437.06436942484	735.167985884775	2622.127060032	439.624586141793	162.006723279016	184.38956809097	453.023656674364	3833	2417	1050	3778	723	468	333	1107
+Mir3074-1	2.96242426446157	3.71009425877681	26.2448795961817	3.00751187649521e-07	3.20707574867386e-06	0.213306639112716	189	11.4235510004434	14.3967830941898	28.2372468929821	29.067557475505	2.97282658135051	4.9011199058985	4.16430978300476	2.43222454296981	33	26	69	39	5	7	6	4
+Mir24-1	2.96234295411287	3.71014414709217	26.1322229529753	3.18818831899091e-07	3.36826191848947e-06	0.214482793171814	189	22.9037038065262	15.8094595293037	23.8856066372908	21.5951746412848	2.04617731108566	5.21725390585987	3.56739189762061	2.80063994622771	33	26	69	39	5	7	6	4
+Mir30e	1.71360301527884	13.5591451347018	25.7546472841332	3.8769235297702e-07	4.05832086923651e-06	0.103612748827971	186796	17504.6321761464	12414.5238037197	53758.2837678409	15420.4391264666	9640.12197606083	3715.07725262906	2984.5638799109	4688.20145515946	23486	20880	76780	22218	15854	10732	5390	11456
+Mir488	4.56803366042882	2.3917189958476	25.1907233635027	5.19313914653799e-07	5.38670160563623e-06	0.365626941485075	78	15.8094595293037	2.0770092728079	18.8265625077867	3.68311915995418	0.74532198655141	0.594565316270102	0.700159986556928	0	26	6	34	9	1	1	1	0
+Mir100	1.94757024837894	9.41024940137313	25.0279123677811	5.65063511960147e-07	5.80844564996872e-06	0.134729292386691	8837	1553.28754906077	924.245326328527	415.40185456158	968.460524297617	283.600175316472	421.852244388098	159.343504760387	422.196471893828	2238	1520	1200	1749	693	566	268	603
+Mir1a-1	7.31088930452147	1.41799634478391	24.9750177157778	5.80779933821914e-07	5.91669557581075e-06	0.451973173766053	42	2.98128794620564	2.97282658135051	16.8038396773663	6.24646467450714	0	0	0	0	4	5	24	9	0	0	0	0
+Mir301	1.57184329832823	7.17626052524146	24.0252804396516	9.50790943501817e-07	9.60046430562454e-06	0.0899167531497226	2119	195.611989052863	186.242556424143	461.544334283027	182.416840722736	67.8489695783913	66.4466912039531	36.0127206751076	115.524907915469	329	266	665	300	196	120	88	155
+Dcaf11	-4.78953443264601	2.83644144356938	23.7635451621341	1.0892609656454e-06	1.08484575916239e-05	0.455818602256535	105	0.409235462217131	0.74532198655141	0	0.700159986556928	21.5156005455246	3.64833681445471	19.731588091675	4.42977941359688	1	1	0	1	31	6	57	8
+Eci2	-8.06753534827286	2.20028041533708	23.7562404618698	1.09340282474737e-06	1.08484575916239e-05	0.726538151382684	69	0	0	0	0	13.8430606674902	1.22770638665139	30.5582014486078	0	0	0	0	0	25	3	41	0
+2610019E17Rik	-1.76498715582456	5.88698153478579	23.6108108113204	1.17923139294727e-06	1.15991639599383e-05	0.107886602411712	892	24.9175092014824	9.00318016877689	64.0976908434213	24.9717432833443	173.639676666118	136.034119578155	59.5895013027603	53.6560728808707	45	22	86	42	248	196	98	155
+Mir99b	2.10284909354602	11.4525971851371	23.5299564012735	1.22983936424459e-06	1.19674926232621e-05	0.16629271885375	35086	7216.54898144226	4631.40653033179	1703.16523621461	2518.71991149171	1407.56240867041	825.427927291954	842.959166789645	1390.68827475577	10307	6673	2801	7276	2542	2017	1131	2339
+Sqrdl	-5.41742806471114	2.76474110616331	23.5177682272925	1.23765480240572e-06	1.19674926232621e-05	0.561839947505073	102	0.34616821213465	0	0.409235462217131	0	20.8097860694536	2.80063994622771	40.254994569046	1.82416840722736	1	0	1	0	35	4	58	3
+Mir212	2.63108555364757	4.02020066871904	23.2608792504594	1.41448044421687e-06	1.34873799676087e-05	0.207180817475692	232	37.8086392740741	23.597755437027	44.9961540449414	12.1158874247127	7.19839154709492	1.63694184886853	2.98128794620564	8.32391442778142	54	34	74	35	13	4	4	14
+Mir181b-2	3.40040902354404	3.25344412533602	23.2554489052629	1.41847992647944e-06	1.34873799676087e-05	0.30032007920964	154	9.96700368059297	6.95700285769123	65.5883348165241	11.2967410091319	1.40031997311386	0.694051630500793	3.04028067871226	1.3846728485386	18	17	88	19	2	1	5	4
+Mir92-1	-1.42313874127891	13.2572416738784	23.1627136686375	1.48855771403684e-06	1.40367301794714e-05	0.0807518678586245	145450	3039.80101334885	4986.20409002893	9608.77007624111	5538.2654936653	22431.7486977856	14704.013474524	8604.01091260672	14343.6257412267	7428	6690	16161	7910	32320	24182	24855	25904
+Mir17hg	-1.42315386804028	13.2572524918731	23.0652749733229	1.56593452715518e-06	1.46453384875743e-05	0.0810949536849217	145451	2571.33747973618	3704.40303462039	6613.65430489106	5895.49691362165	19216.3510218497	16931.2687949196	17251.3473277277	15751.0861402725	7428	6690	16161	7910	32320	24182	24856	25904
+Atf5	-7.60443813911671	1.74151085310353	22.8864484686282	1.71859237722938e-06	1.59423894505587e-05	0.604880887600787	50	0	0	0	0	10.3369543076217	0.34616821213465	14.9505055208895	2.04617731108566	0	0	0	0	17	1	27	5
+Snord4a	-1.6940423087756	6.22260127860836	22.8611154654003	1.74139329273598e-06	1.60236269920302e-05	0.105509716106031	1151	27.6861213349805	15.9601830264681	115.524907915469	18.4315248043731	226.851835644445	136.034119578155	100.329262397505	66.1181285177181	50	39	155	31	324	196	165	191
+Gm10768	-7.79734408694512	1.93534753760022	22.7413703227339	1.85334549881566e-06	1.69173377131893e-05	0.684190381270136	59	0	0	0	0	10.6401220176454	0	17.2423941718329	2.80063994622771	0	0	0	0	26	0	29	4
+Mir700	2.97881955365179	3.77125098123284	22.3973004682007	2.21685386438204e-06	2.00748433274596e-05	0.266009663645126	177	22.4051195698217	35.3966331555404	18.849740208016	13.846728485386	2.76861213349805	2.45541277330279	1.49064397310282	5.94565316270102	32	51	31	40	5	6	2	10
+Rpph1	-2.08314841010585	4.82399815840611	22.1362656517284	2.53966388950891e-06	2.2715144267454e-05	0.148476093177056	430	7.4532198655141	8.91847974405152	28.0063994622771	10.4107744575119	76.0070169678065	16.6160741824632	57.0334099500598	30.2834242040677	10	15	40	15	125	48	103	74
+Snord45c	-1.60898685331134	6.56442093351196	22.129796052749	2.54823704314997e-06	2.2715144267454e-05	0.100094766607824	1427	39.9091192337449	34.0085298945389	115.530665791066	21.4624291523483	178.852343823974	86.7579179900318	239.993679669554	126.047847049262	57	49	190	62	323	212	322	212
+Snord16a	-2.75004105989817	4.5628099378298	22.0776507411564	2.61840576298403e-06	2.31596974849983e-05	0.254607325505457	368	3.47025815250396	3.04028067871226	10.0388781519048	4.98350184029649	55.6560228615299	17.8877276772338	77.2934911151132	21.0047995967078	5	5	29	9	136	24	130	30
+0610005C13Rik	-4.61110527397388	3.09169695040067	21.7924212667961	3.03797783111965e-06	2.66640977331348e-05	0.511147066071314	126	0	1.2161122714849	0	1.10744485339922	16.3694184886853	4.47193191930846	41.6195721389071	4.20095991934157	0	2	0	2	40	6	70	6
+Mtmr2	2.05482556337216	5.2110171425161	21.6657160211323	3.24540066900051e-06	2.82671920864854e-05	0.154685834812798	580	39.8358761900968	49.7113590455419	191.558250018219	37.0914242802896	6.92336424269299	8.30583640049414	17.5971248753366	20.1236936368881	67	71	276	61	20	15	43	27
+Cyp2d13	-7.38060767609528	1.52270708191277	21.2011219028663	4.13522383125616e-06	3.57446241777521e-05	0.607831105280726	44	0	0	0	0	10.5207261072926	0.409235462217131	14.9064397310282	2.37826126508041	0	0	0	0	19	1	20	4
+Mir5109	-2.75158274518898	6.32573307152633	20.9782259766441	4.64532969759298e-06	3.98520389846135e-05	0.29431582377148	1282	10.0388781519048	6.64466912039531	43.3789589950159	17.1424056906824	325.821793316016	28.0063994622771	331.756679379379	27.9705822441528	29	12	106	23	548	40	478	46
+Tmem205	-4.45172142322718	2.82863094255824	20.7479224478071	5.23883837763376e-06	4.46083178274636e-05	0.496107622810268	106	1.2161122714849	0	0.553722426699609	0.409235462217131	26.0862695292994	2.37826126508041	39.9091192337449	4.16430978300476	2	0	1	1	35	4	57	6
+Mir1943	2.47773115878141	3.93902294197728	20.6772296647227	5.43586018224117e-06	4.59430849476828e-05	0.207434900508124	215	30.5582014486078	23.188047334534	44.1100791530865	25.6799103285293	4.86444908593961	2.7693456970772	2.21488970679844	6.13853193325697	41	39	63	37	8	8	4	15
+1810032O08Rik	-1.61479478539896	5.72442513671048	20.5949001224573	5.67470818799052e-06	4.76091326654205e-05	0.10320089154802	801	16.6116728009883	15.9601830264681	69.3149447492811	17.836959488103	159.63647693498	116.600673924133	67.4942310674121	35.3091576377343	30	39	93	30	228	168	111	102
+Mir292	-7.19606685964968	1.35004623222957	20.3159318474763	6.5651643128287e-06	5.46777553353105e-05	0.584148616914066	41	0	0	0	0	15.2014033935613	2.7693456970772	0.553722426699609	2.86464823551992	0	0	0	0	25	8	1	7
+Gas5	-1.39482444939415	10.688269847049	20.1001588571361	7.34905714139414e-06	6.07628565096429e-05	0.0892063812051997	24887	521.775214326843	746.067308537961	2006.65794241159	835.991023948972	3962.34075852903	2343.44834715141	1593.06611224366	2146.78184831439	1275	1001	3375	1194	5709	3854	4602	3877
+Snord33	-1.42230425294518	7.89285295942678	19.9614960825249	7.90174242598409e-06	6.4862504374445e-05	0.0908019923476473	3442	140.865855458217	115.94023667267	217.049595832648	131.869809795151	394.628432096851	207.008590856521	392.589200530023	246.359748254713	189	195	310	190	649	598	709	602
+Mir30d	1.42700409137036	13.3849319697309	19.6539753184979	9.28100238045923e-06	7.56401694007427e-05	0.0956896506480022	161730	14448.7668437655	11465.5064955597	19920.5959355006	11036.2416865499	6561.27216572727	8118.04707751796	3478.20710018009	8264.68848131798	20818	18856	57546	19931	16033	10892	5850	11804
+AW495222	-6.16544234758806	2.74819064610763	19.5961315313439	9.56626965541824e-06	7.74121537363987e-05	0.83637505410564	101	0	0	0	0.594565316270102	25.2057595160494	0	38.3075365517745	0.34616821213465	0	0	0	1	36	0	63	1
+Gm6307	4.40591164343186	1.72334399482617	19.0765857608822	1.25576112752235e-05	0.000100903059612887	0.411047879493315	52	4.20095991934157	4.16430978300476	17.6336279365311	3.11551390921185	0	0	0	1.1891306325402	6	6	29	9	0	0	0	2
+Mir466f-3	-3.79728830821604	3.13167479897481	18.7586994191299	1.48345100740014e-05	0.000118364867093955	0.461197855860477	134	0.6923364242693	0.553722426699609	1.22770638665139	1.49064397310282	31.5119617623154	2.80063994622771	43.72525272155	3.64833681445471	2	1	3	2	53	4	63	6
+Snord96a	-1.82073221921608	4.9953501700774	18.3396893905852	1.84816467912299e-05	0.00014644138186662	0.142009104156823	487	9.51304506032163	15.4035197042524	38.8668913080444	7.29667362890942	50.1943907595242	39.3142922956723	43.3789589950159	43.9739972065332	16	22	56	12	145	71	106	59
+Mir137	-6.77715938723149	0.926461536550918	18.2559426818403	1.9312249605068e-05	0.000151967426202639	0.519868670969044	29	0	0	0	0	7.72934911151132	5.60127989245543	1.38810326100159	3.64833681445471	0	0	0	0	13	8	2	6
+Mir181b-1	6.40713612447329	0.455298398937698	17.4462449803813	2.95547513125543e-05	0.000230972405805647	0.425876635308515	19	2.97282658135051	2.80063994622771	3.47025815250396	3.04028067871226	0	0	0	0	5	4	5	5	0	0	0	0
+Nlrp5-ps	-7.13667566529568	1.26371135343783	17.1741869561585	3.41039147548491e-05	0.000263042903888236	0.776139203932954	34	0	0	0	0	3.50079993278464	0.694051630500793	15.2014033935613	1.03850463640395	0	0	0	0	5	1	25	3
+1700003L19Rik	6.50156365481597	0.591493460742622	17.1733190435801	3.41195002414188e-05	0.000263042903888236	0.508492660481625	23	2.76861213349805	1.63694184886853	8.94386383861692	1.1891306325402	0	0	0	0	5	4	12	2	0	0	0	0
+Sec16b	-5.48501273115493	1.89999102911043	17.1189585879989	3.51100774082429e-05	0.00026794633700992	0.725864732633444	57	0	0	0.409235462217131	0	13.0804369579422	0	21.5156005455246	1.82416840722736	0	0	1	0	22	0	31	3
+Mir34b	3.98106265241256	1.74076028897787	17.1127413088565	3.52251976787801e-05	0.00026794633700992	0.42482915888436	54	4.86444908593961	2.0770092728079	17.1653952276879	2.45541277330279	2.23596595965423	0	0	0	8	6	31	6	3	0	0	0
+Szrd1	-3.42909003094918	2.84527324116347	16.7736385137576	4.21143184976952e-05	0.000318228062290532	0.414402300705711	108	2.43222454296981	0	1.10744485339922	0.818470924434263	29.8128794620564	9.51304506032163	28.0063994622771	2.77620652200317	4	0	2	2	40	16	40	4
+Mir680-2	-3.00621463360954	3.15192125250777	16.5842284337432	4.65364140930714e-05	0.000349329266317069	0.344767949944767	134	1.49064397310282	3.56739189762061	2.80063994622771	0.694051630500793	30.4028067871226	5.88485960628905	24.9175092014824	3.68311915995418	2	6	4	1	50	17	45	9
+Wwp1	-3.55687662133219	2.97896138373646	16.4516962689344	4.99055080574729e-05	0.000372171141788082	0.46641320142744	118	0	1.40031997311386	1.38810326100159	2.43222454296981	13.846728485386	2.21488970679844	22.9171858841594	7.4532198655141	0	2	2	4	40	4	56	10
+Snord11	-1.88643250405459	4.66428509776723	16.4010651472953	5.12564185056692e-05	0.000379763464382913	0.168742648747908	399	5.96257589241128	8.32391442778142	32.9075193681756	9.7167228270111	91.2084203613678	20.4239245159443	29.3472886150793	22.0987149597251	8	14	47	14	150	59	53	54
+Bc1	-1.91746849439176	6.12268036177049	16.3075474507497	5.38490462129734e-05	0.00039439739787455	0.191488237209155	1034	31.010862922865	15.2314013339246	28.7935661883797	18.0063603375538	236.267069736797	31.5119617623154	270.961914797531	59.6884402230682	51	44	52	44	317	53	387	86
+Mir324	2.12107018088344	4.05123077890927	16.3049513757873	5.39228694727693e-05	0.00039439739787455	0.202815721418512	248	14.5390649096553	16.6116728009883	40.1050752972789	23.8503035696451	5.94565316270102	3.50079993278464	11.1048260880127	9.12084203613678	42	30	98	32	10	5	16	15
+Mir741	-4.70184058458898	1.29693630518646	16.1765488644088	5.77040819202755e-05	0.00041869688008688	0.453528863611794	36	0	0	0	0.553722426699609	4.09235462217131	8.19854185206551	2.37826126508041	7.00159986556928	0	0	0	1	10	11	4	10
+Mir291a	-6.53264910162196	0.677054239370747	16.167543842679	5.79790596439325e-05	0.00041869688008688	0.546410140611307	24	0	0	0	0	4.09235462217131	5.96257589241128	2.37826126508041	1.40031997311386	0	0	0	0	10	8	4	2
+2310001H17Rik	-3.8117086915056	1.89505454218894	16.1046423263675	5.99369312860702e-05	0.000430113450298151	0.39935798125311	54	0	0	0	1.03850463640395	7.19839154709492	3.68311915995418	10.4345078117197	8.91847974405152	0	0	0	3	13	9	14	15
+Mir1950	-3.95748808531102	2.38090306875839	15.7243187684919	7.32760035591679e-05	0.000522549500381316	0.529076927011113	78	0	1.2161122714849	0.34616821213465	0.553722426699609	11.4585929420797	2.98128794620564	23.188047334534	2.10047995967078	0	2	1	1	28	4	39	3
+Snord66	-1.27269230808907	8.18728534781423	15.7000629321384	7.4221700724329e-05	0.000522795256794169	0.0937639659318237	4212	185.311785343712	170.863774143629	117.697192125781	135.108272114705	361.764148599944	516.508136680127	479.814210229972	487.311350643622	267	281	340	244	884	693	807	696
+Mir96	-6.51269164739356	0.660234571881598	15.699931807966	7.42268462757716e-05	0.000522795256794169	0.576440925518918	24	0	0	0	0	4.09235462217131	4.47193191930846	0.594565316270102	4.9011199058985	0	0	0	0	10	6	1	7
+BC024386	-6.99602144224204	1.13952184561295	15.5582504393919	8.00017596466698e-05	0.000560012317526689	0.862187047866339	35	0	0	0	0	14.0031997311386	0.694051630500793	8.51278590039432	0	0	0	0	0	20	1	14	0
+5033403H07Rik	-6.44831513297383	0.595627882888442	15.1919689948362	9.71155653815037e-05	0.000675663781099364	0.585378937521072	23	0	0	0	0	6.54021847897112	4.20095991934157	3.47025815250396	0.608056135742452	0	0	0	0	11	6	5	1
+Mir126	1.24352014406418	14.8789235815257	15.17606539914	9.79369487742185e-05	0.000677248839705353	0.0950008604949591	420720	42664.8668205049	20530.1981570697	49061.4681728655	26826.6122547196	35304.4118589672	19508.2825921383	12422.238481493	27186.0023667161	70166	59307	88603	65553	47368	32811	17742	39170
+4930581F22Rik	-4.68347345931895	1.14471528622407	15.1631972873823	9.86066708918126e-05	0.000677772358358784	0.498289202269496	33	0	0	0.553722426699609	0	7.4532198655141	1.7836959488103	9.10207982524007	4.16430978300476	0	0	1	0	10	3	13	6
+Sra1	-6.19692808063838	0.34591044328885	15.1139909313937	0.000101210407797144	0.00069012959141025	0.440765986063492	19	0	0	0	0	3.87605698689727	0.818470924434263	2.98128794620564	3.56739189762061	0	0	0	0	7	2	4	6
+Snord85	-1.347700293414	9.98784551803355	15.1064747121305	0.00010161417296838	0.00069012959141025	0.110905289356566	15092	372.813506079807	549.302304088389	845.471879736084	617.541108143211	2640.17240242502	1852.74704560725	392.208584348558	1747.54797866397	911	737	1422	882	3804	3047	1133	3156
+Gm16023	-4.84906479740497	2.04843453239765	14.9318719681594	0.000111463899395583	0.000752261048033047	0.781248660083243	61	0	0	1.10744485339922	0	11.1798297982712	0	28.7065594488341	2.08215489150238	0	0	2	0	15	0	41	3
+Mir1960	3.96705781998388	1.29508911386833	14.9214563693412	0.000112080962458911	0.000752261048033047	0.41501288861623	36	2.0770092728079	3.87605698689727	6.13853193325697	4.47193191930846	0	0	0.694051630500793	0.608056135742452	6	7	15	6	0	0	1	1
+0610008F07Rik	-4.54488558953107	1.15637169454961	14.5761546583671	0.000134607153569803	0.000898168200135353	0.478560111450913	34	0	0	0	0.74532198655141	9.51304506032163	5.60127989245543	3.47025815250396	2.43222454296981	0	0	0	1	16	8	5	4
+Mir30c-1	1.27691626836962	5.65565459422496	14.2837634742279	0.000157215137919935	0.00104292135096887	0.0942811372414155	732	60.0510969432802	62.3142388035666	139.504377730659	69.926455610382	27.3472887586373	28.2398437616801	14.3232411775996	45.464641179636	101	89	201	115	79	51	35	61
+Mir674	1.68665633785934	4.7344282331729	14.2584368876227	0.000159344901134507	0.0010509394924536	0.157762238651678	392	41.025006822637	30.8070394085048	91.6148152261047	31.6189190586075	8.65420530336624	12.1818933873914	4.50159008438844	27.5769135024022	69	44	132	52	25	22	11	37
+Mir328	1.21754727845112	7.37025735114261	14.1902387757875	0.000165225411008837	0.00108346088483381	0.0938897453017011	2362	163.284949424635	204.218224315086	326.416358632286	256.258555079836	210.991695672241	91.8164764971102	43.2710265168312	107.422150779724	399	274	549	366	304	151	125	194
+Mir320	1.26517933587612	6.72859295410854	14.1369883832178	0.000169968606945481	0.00110819531728454	0.099920171450282	1651	126.317396751144	100.329262397505	222.58616040258	99.6700368059297	74.4808541235179	79.0041305744495	47.5652253016081	79.1180784809329	182	165	643	180	182	106	80	113
+0610012G03Rik	-6.06136339421713	0.203387180072876	14.0001848254456	0.00018279266393932	0.00118503653156116	0.456186711370962	17	0	0	0	0	4.16430978300476	2.43222454296981	1.73084106067325	1.10744485339922	0	0	0	0	6	4	5	2
+Snhg1	-1.13576202936067	11.3097299616808	13.97049833596	0.000185701763943309	0.00119709442180404	0.0862756069742781	37837	1580.35556265031	1148.61804041749	1763.72704082604	1264.14830015521	3349.59225824722	4315.41430213266	3851.59411879772	4088.93432149246	2277	1889	5095	2283	8185	5790	6478	5840
+Mir433	6.22949339947389	0.286675210706276	13.9241156368209	0.000190340641944053	0.00122010490145036	0.635106526064817	17	0.694051630500793	1.2161122714849	1.73084106067325	4.98350184029649	0	0	0	0	1	2	5	9	0	0	0	0
+6430411K18Rik	6.22955452291459	0.286828886351783	13.9015924293055	0.000192635189076567	0.00122791480858303	0.63776153052932	17	0.608056135742452	0.6923364242693	2.76861213349805	3.68311915995418	0	0	0	0	1	2	5	9	0	0	0	0
+Snord47	-2.03507495492871	4.12094815553853	13.8264453875044	0.000200494302560133	0.00126900010692306	0.227348609218417	277	2.04617731108566	5.96257589241128	17.2423941718329	7.00159986556928	83.2861956600952	18.849740208016	16.9622423945978	13.8430606674902	5	8	29	10	120	31	49	25
+Pex16	-4.49287286439765	0.967450791656486	13.818863067264	0.000201305012579381	0.00126900010692306	0.496417104016269	30	0	0	0.694051630500793	0	4.1540185456158	1.10744485339922	2.86464823551992	5.96257589241128	0	0	1	0	12	2	7	8
+Gm16157	-6.37748218864354	0.522356722781876	13.6410019008425	0.000221299315516322	0.00138737647804463	0.706512205799925	22	0	0	0	0	4.50159008438844	3.72660993275705	3.56739189762061	0	0	0	0	0	11	5	6	0
+Mir1843	-1.2273858117048	7.53264307773502	13.5863749880724	0.00022783317267533	0.00142053360668061	0.100141470001694	2782	86.8065361754348	93.1212782120715	313.711336986358	73.5747924248367	181.392143158556	213.736856706049	241.03968724589	321.233776203658	146	133	452	121	524	386	589	431
+Mir298	3.93250805496782	1.23295104004033	13.5459029655124	0.000232799048065312	0.00144160031298852	0.479840859817405	37	3.32233456019766	0.818470924434263	14.9064397310282	4.16195721389071	0.700159986556928	0	0.608056135742452	0	6	2	20	7	1	0	1	0
+Scarna3b	-1.22557050158523	7.53376222645385	13.5383413261065	0.000233738876339067	0.00144160031298852	0.100212861742061	2784	102.223358037312	93.0029184871063	274.841373355588	41.8863536682926	290.704274017295	157.964888415813	438.994650078781	256.257651312414	146	134	452	121	525	386	589	431
+Il15ra	-3.22133002916769	2.39643465026015	13.4947431198339	0.000239232716838616	0.00146755123609065	0.463402149226182	78	1.1891306325402	0	4.16430978300476	0	6.2310278184237	7.75211397379453	13.9140057153825	2.98128794620564	2	0	6	0	18	14	34	4
+Phyhd1	-6.33005597907163	0.461665646645519	13.484507524553	0.000240541262432612	0.00146768759591235	0.689458292350189	20	0	0	0	0	3.04028067871226	0.34616821213465	6.64466912039531	0.818470924434263	0	0	0	0	5	1	12	2
+Tardbp	-3.51709691677258	1.77921274814187	13.4342978942199	0.000247065433215577	0.00149947691116475	0.462964354971606	52	0	0.409235462217131	2.23596595965423	0	12.6028797580247	4.85836141350555	12.161122714849	1.03850463640395	0	1	3	0	18	7	20	3
+Syce2	-6.72040308276539	0.847691150884254	13.3336485987012	0.000260685801629043	0.00156913152873387	0.965691552239751	26	0	0	0	0	4.16430978300476	0	6.57719603055835	0.553722426699609	0	0	0	0	6	0	19	1
+Snord99	-1.51562036990597	7.96732926430436	13.3292879736448	0.000261292717317646	0.00156913152873387	0.156196683008908	3970	87.4505054430999	48.6444908593961	293.204475678048	59.8020220835578	380.998215324149	488.185901191174	397.169631268428	388.588792539095	126	80	847	108	931	655	668	555
+Snhg12	-1.30619370694551	8.43665042998647	13.2730003980784	0.000269255925650405	0.00160848696946132	0.117803262576764	5403	80.6571934273734	99.6700368059297	426.832587092468	147.573753337179	756.881647611839	567.829749097669	639.915603321731	451.785708856642	233	180	1043	198	1273	811	922	743
+Aes	-3.47078769638636	2.88721487084673	13.2446050787564	0.000273365496717983	0.00162453141539177	0.589629753750639	113	0.694051630500793	0.608056135742452	1.73084106067325	1.10744485339922	16.7786539509024	0.74532198655141	35.079353659936	2.10047995967078	1	1	5	2	41	1	59	3
+Snord43	-1.23354292866518	7.59453775966302	13.2134041467738	0.000277954066510244	0.00164324139838439	0.104330719505406	2975	90.1839603727206	71.3478379524122	379.486712713855	97.167228270111	404.965386404473	153.698686187784	279.076103056603	179.245132451104	121	120	542	140	666	444	504	438
+Snora16a	-1.67962917801459	4.90250133476435	13.1994572093989	0.000280030209362082	0.00164698179836152	0.173848752018773	464	4.1540185456158	8.85955882719375	30.6926596662849	9.68918582516833	71.9424032686823	30.8070394085048	78.4278342465896	42.5639295019716	12	16	75	13	121	44	113	70
+Chka	-6.25425180950366	0.398258107742989	13.1693882297149	0.000284559622778948	0.00166503861328605	0.681579113159149	20	0	0	0	0	3.68311915995418	0.74532198655141	5.35108784643091	0.700159986556928	0	0	0	0	9	1	9	1
+Mir30b	1.19069161103915	9.3617074750771	13.1387695167483	0.000289247754457723	0.00168383514202175	0.0999778694962593	10011	740.612373334306	385.285220105865	1872.13552467138	475.940842558524	979.353090328553	417.384852021611	312.971513990947	467.096747327034	1218	1113	3381	1163	1314	702	447	673
+1810008I18Rik	-6.625452937907	0.757077785058189	13.1114393173091	0.00029349810965095	0.00169184971514696	0.936533639954261	25	0	0	0	0	4.42977941359688	0	11.9251517848226	0.594565316270102	0	0	0	0	8	0	16	1
+Snord95	-1.14810806458368	7.80331908433885	13.1108525697562	0.000293590046975546	0.00169184971514696	0.0912500101951988	3258	131.948181456112	67.5028013662567	180.513511104073	85.9394470655976	527.687966478398	287.175047758459	472.607990925927	308.158923942352	217	195	326	210	708	483	675	444
+Gm6313	5.88855380399028	-0.0293445513708015	13.0885458924873	0.000297106893178351	0.00170351238752009	0.502615980276399	15	0.818470924434263	0.74532198655141	4.75652253016081	2.80063994622771	0	0	0	0	2	1	8	4	0	0	0	0
+Fam120b	-4.06722935857354	1.33896267249282	12.993737822039	0.000312534451854438	0.00178141426360264	0.564043065984899	39	0	0	1.10744485339922	0	11.9251517848226	2.37826126508041	10.5023997983539	1.38810326100159	0	0	2	0	16	4	15	2
+Etfb	-4.42618742612512	1.81057475370616	12.9860745806193	0.000313816184911595	0.00178141426360264	0.742663378558866	53	0	0.700159986556928	0.694051630500793	0	6.92336424269299	1.10744485339922	11.8678284042968	0	0	1	1	0	20	2	29	0
+Mug-ps1	-6.72108078472146	0.872908002029441	12.9104496150929	0.000326752794047351	0.00184566800994073	1.03727294969605	31	0	0	0	0	16.8038396773663	0	4.25639295019716	0	0	0	0	0	24	0	7	0
+Gm16596	5.74978562564206	-0.223536957487372	12.8628518678679	0.000335169415722602	0.00188388326768221	0.403208283223198	12	1.22770638665139	2.23596595965423	1.7836959488103	2.10047995967078	0	0	0	0	3	3	3	3	0	0	0	0
+Mir297c	6.35987297081253	0.398055363685947	12.7928346540932	0.000347949488780715	0.00194612924852351	0.86476711912211	16	4.16195721389071	4.20095991934157	0	1.82416840722736	0	0	0	0	7	6	0	3	0	0	0	0
+Snord68	-1.13457444274774	8.92132519667897	12.7118658261147	0.000363342726950629	0.0020046158463653	0.0936159992954593	7303	159.237377581939	195.464016624962	433.789589950159	280.24106694333	977.465379948047	906.707182591222	558.711562553138	796.553537822612	460	353	1060	376	1644	1295	805	1310
+Slc25a44	-2.96909247201373	2.37553272872162	12.7112171467032	0.00036346878335363	0.0020046158463653	0.406906467452325	77	0.818470924434263	0.74532198655141	1.7836959488103	1.40031997311386	15.2691358710174	1.82416840722736	11.4235510004434	6.0909466936957	2	1	3	2	22	3	33	11
+Mir186	1.18971925817329	10.3333935373353	12.7014824275027	0.000365365815963977	0.0020046158463653	0.103706182462682	18235	2194.9732503939	1436.46980410857	2902.16314427847	1881.57397028765	1238.61034850737	496.405216201088	408.647150904312	740.306951150791	2945	2416	4145	2711	2037	1434	738	1809
+Bmp1	-3.97471936953623	1.38701445027206	12.7011339267468	0.000365433914148977	0.0020046158463653	0.543071332932969	39	0	0.700159986556928	0.694051630500793	0	4.50018675775045	1.66116728009883	7.36623831990836	2.23596595965423	0	1	1	0	13	3	18	3
+Pglyrp2	-6.68358905274349	0.818938124586529	12.6644090443586	0.00037268230723405	0.00203459575384713	1.04491512795468	27	0	0	0	0	4.91082554660558	0	8.91847974405152	0	0	0	0	0	12	0	15	0
+U05342	-3.57180440937422	1.81969552214636	12.6294872731998	0.000379709308836468	0.00206308724467814	0.533167133824104	54	0	0.608056135742452	1.03850463640395	0	8.18470924434263	2.23596595965423	14.2695675904824	2.10047995967078	0	1	3	0	20	3	24	3
+Mir34a	1.91945112130955	3.61902087448453	12.6166339601411	0.000382329185895629	0.00206747678249722	0.209108419099582	180	10.2308865554283	20.1236936368881	36.2684842924762	19.604479623594	8.32861956600951	3.64833681445471	3.4616821213465	6.0909466936957	25	27	61	28	12	6	10	11
+Mtfr1	-4.04881533517461	1.45196702496999	12.5820304874237	0.000389473361755969	0.0020961750271866	0.587826977228111	40	0	0.34616821213465	0.553722426699609	0	7.4532198655141	1.1891306325402	15.4035197042524	2.77620652200317	0	1	1	0	10	2	22	4
+Snord49b	-1.26067966372732	6.59754559587082	12.5629346353204	0.000393473367643403	0.00210776109146067	0.111486118172609	1485	36.8630496087463	39.9091192337449	149.915152188171	57.7653328955329	136.044107368917	135.661994541404	50.3359618527072	219.124664046115	62	57	216	95	393	245	123	294
+Ank1	1.35227733675525	11.2588220131714	12.4614990275367	0.000415426418612258	0.00221496048428311	0.135867548702657	33776	2895.96829163896	2268.80140253178	5907.42206540648	3041.79615803784	1106.25277875995	862.012125081985	2438.30510432723	1082.81416755718	5230	5544	7926	5116	1580	1242	4010	3128
+4833418N02Rik	-2.07313530572046	3.53931042163891	12.4439824566212	0.000419340681838063	0.00222543124640572	0.244921651041945	170	6.70789787896269	1.7836959488103	9.802239811797	4.16430978300476	20.6739086152434	9.69270993977019	28.2398437616801	10.2308865554283	9	3	14	6	34	28	51	25
+Mir340	-1.24781368093967	8.59679560345445	12.360285434567	0.000438563635265595	0.0023166717955465	0.11588698056633	5906	175.120167093826	82.3880344880466	585.838327448187	100.671923705414	896.622349821346	438.789203407335	966.220781448561	524.008981028099	288	238	1058	246	1203	738	1380	755
+Pknox1	-5.96867464377884	0.108276776805556	12.3202806513909	0.00044806332818544	0.00235594588691054	0.585510339236401	16	0	0	0	0	3.32233456019766	0.818470924434263	5.21725390585987	0.594565316270102	0	0	0	0	6	2	7	1
+Mir3107	1.3508075738813	10.2573409434783	12.2375775967787	0.000468365962224657	0.00245140166467126	0.137805722557386	16873	1553.00460609751	1938.04284278958	2747.75040515264	1553.58342682196	273.126719374239	343.861626980457	820.517101745348	1165.68358696641	2612	2768	3959	2555	789	621	2005	1564
+Mir486	1.35080726179605	10.2573415082787	12.2166008121444	0.000473661512742678	0.00246779810976893	0.13804319607134	16873	1828.8178848867	1921.13491322619	2407.29424140437	884.45978200403	436.886994665992	254.135222036839	1494.37058303558	929.900154646439	2612	2768	3959	2555	789	621	2005	1564
+Gm15787	-5.84922159415344	-0.0267336728102733	12.0781096044983	0.000510173001972336	0.0026459427056838	0.520917363420797	14	0	0	0	0	1.10744485339922	2.45541277330279	1.49064397310282	2.37826126508041	0	0	0	0	2	6	2	4
+Snord23	-3.10776202871609	2.42787154463463	12.0107649436004	0.000528941434547806	0.00273086957836673	0.509625657247902	83	1.10744485339922	0	5.21725390585987	0	19.604479623594	2.77620652200317	21.8900208867283	2.0770092728079	2	0	7	0	28	4	36	6
+Snord1a	-1.79805603420245	3.92918303968764	11.9925876763572	0.000534125716115637	0.00274521370309884	0.200145509933857	230	4.9011199058985	6.24646467450714	16.4175156650462	2.7693456970772	34.3307904553758	22.0987149597251	23.8503035696451	18.4315248043731	7	9	27	8	62	54	32	31
+Snord42b	-1.18512884296518	6.24789852349338	11.9040618509162	0.000560116711777104	0.00285518663749724	0.101627779377629	1095	48.5836141350555	40.1317049590018	30.4628026678492	45.9589614160676	92.8964499232888	170.678734920273	81.4554483290039	136.531197378601	70	66	88	83	227	229	137	195
+Snhg7	-2.34268751527016	3.5610429386213	11.9026964396979	0.000560527438036267	0.00285518663749724	0.338566530531322	173	2.21488970679844	1.22770638665139	11.1798297982712	4.16195721389071	23.8054395429356	10.4107744575119	49.860603130881	4.50018675775045	4	3	15	7	34	15	82	13
+1700001L05Rik	-5.950973384031	0.0930486569679726	11.7459555862755	0.000609755940371602	0.00309214012428443	0.654968245797187	16	0	0	0	0	4.47193191930846	0	4.20095991934157	2.77620652200317	0	0	0	0	6	0	6	4
+Rnf44	-3.56352892254898	2.54220698820135	11.7368125443015	0.000612758782003269	0.00309361845250323	0.670391576244117	88	0.818470924434263	1.49064397310282	1.1891306325402	0	22.2096521760254	0	15.9237377581939	2.21488970679844	2	2	2	0	32	0	46	4
+Trmt61b	-6.04462877508772	0.197297525490101	11.686250899599	0.000629636409648177	0.00316482442030207	0.741746117911198	18	0	0	0	0	6.68861749316697	0.6923364242693	2.76861213349805	0	0	0	0	0	11	2	5	0
+Def8	-5.9906404918121	0.123717443385779	11.628655678048	0.000649434749337637	0.0032500221447116	0.700504873096256	16	0	0	0	0	1.73084106067325	0.553722426699609	3.68311915995418	0.74532198655141	0	0	0	0	5	1	9	1
+Mir878	-5.70475205457436	-0.1626146032132	11.6151126935116	0.000654180742215014	0.00325947697321978	0.47390488168473	13	0	0	0	0	1.22770638665139	0.74532198655141	2.97282658135051	2.80063994622771	0	0	0	0	3	1	5	4
+Mir511	-1.91950371805125	3.59489884941376	11.5870640997842	0.000664121779537945	0.0032946215237078	0.22775643116366	183	4.9011199058985	6.24646467450714	9.72889817187923	1.3846728485386	31.5621783218777	14.3232411775996	14.1611177444768	21.4043513857237	7	9	16	4	57	35	19	36
+AI506816	-5.56956186604363	-0.292465011885234	11.5304780492608	0.000684644063235273	0.00338172673658635	0.377489090786083	12	0	0	0	0	2.21488970679844	0.818470924434263	2.98128794620564	1.1891306325402	0	0	0	0	4	2	4	2
+Mir335	1.11656851457955	6.55078457560659	11.3673264027419	0.000747473949853804	0.00367615421027237	0.0963844774767941	1318	137.884567512011	120.696759202831	200.245756155281	135.340067947655	83.9117467324583	34.9629894255996	39.8680147223719	56.4744937859641	185	203	286	195	138	101	72	138
+Mir210	1.3815129543114	5.22746528492104	11.3305689566611	0.000762415382904168	0.00373354485791268	0.14042671192209	592	60.3710809106642	26.7554392321546	170.83903671989	40.9490461995468	42.5639295019716	6.92336424269299	20.4877297878855	14.7324766398167	81	45	244	59	70	20	37	36
+4931408D14Rik	-6.38756698788491	0.523260717236992	11.280671896319	0.00078318206252862	0.00381884928779981	1.07304045821678	22	0	0	0	0	5.53722426699609	0	8.94386383861692	0	0	0	0	0	10	0	12	0
+1810026B05Rik	-5.8169788152171	-0.032347099625177	11.2635797850259	0.00079042631245266	0.0038377720106744	0.626059377853638	15	0	0	0	0	2.7693456970772	0.553722426699609	2.04617731108566	0.74532198655141	0	0	0	0	8	1	5	1
+Mir190	1.91702509695609	3.42954120734986	11.2262346008614	0.0008064910540028	0.00388883762828111	0.233988281959687	163	8.18470924434263	14.1611177444768	38.6467455575566	17.5039996639232	6.94051630500793	5.47250522168207	1.73084106067325	5.53722426699609	20	19	65	25	10	9	5	10
+1810058I24Rik	-3.42873979152306	1.78663120652355	11.2233161109447	0.000807760313674517	0.00388883762828111	0.562407933094681	50	0	1.1891306325402	1.40031997311386	0	6.08056135742452	0.6923364242693	15.5042279475891	2.45541277330279	0	2	2	0	10	2	28	6
+Meg3	5.71546848310332	-0.241674554922147	11.1958611597532	0.000819799822226995	0.00393021679479412	0.613085247102082	12	2.43222454296981	1.3846728485386	2.21488970679844	0	0	0	0	0	4	4	4	0	0	0	0	0
+2410004N09Rik	-4.48657037659986	1.6757068910884	11.0955922012835	0.000865331464948072	0.00413114310253452	0.959371087373287	50	0	0	0.818470924434263	0	13.0804369579422	0	18.0453423930206	0	0	0	2	0	22	0	26	0
+Snord65	1.99835877269016	4.70192846623195	11.0805491937091	0.000872379596812486	0.00414743799984603	0.295394767173396	320	40.9754595757711	36.8311915995418	5.96257589241128	40.4304415063669	20.3046396101509	11.7988777185135	11.5530665791066	5.19252318201975	74	90	8	68	29	17	19	15
+Tysnd1	-5.73739359459806	-0.138947738722222	11.049738354647	0.000886997153791899	0.00419943465757907	0.58228515939149	13	0	0	0	0	1.40031997311386	0.694051630500793	4.25639295019716	1.03850463640395	0	0	0	0	2	1	7	3
+Mirlet7i	1.07302198102237	10.7310252728864	11.0393926184035	0.000891960799917054	0.00420548459795603	0.0976465050666323	26242	1668.36567164592	985.438993018852	7299.68353628451	1646.35136075191	1767.90396605624	1045.9358071647	1359.00546338438	689.220910360088	3013	2408	9794	2769	2525	1507	2235	1991
+Mir3098	-1.79653680485735	4.13275156820863	10.9996036948799	0.000911313713823056	0.00427904916655188	0.225289324612017	259	8.40191983868314	10.4107744575119	12.161122714849	2.42317748494255	36.5456801621742	8.18470924434263	62.6070468703184	20.8097860694536	12	15	20	7	66	20	84	35
+Zfp862	-6.00900695330373	0.137260173296749	10.9587797077338	0.000931611478588379	0.00435642908634976	0.827218325136608	16	0	0	0	0	2.21488970679844	0	7.4532198655141	1.1891306325402	0	0	0	0	4	0	10	2
+Gm8883	-6.00903518142652	0.137235780049281	10.9392834847835	0.000941465710262349	0.00438203576977106	0.830808243916824	16	0	0	0	0	2.37826126508041	0	6.94051630500793	1.2161122714849	0	0	0	0	4	0	10	2
+Mir136	1.48579773526204	5.56288024723084	10.9261992834096	0.000948138063898294	0.00438203576977106	0.174066319140284	753	59.6257589241128	45.1869640365277	210.047995967078	61.7705951145706	80.2634099180036	12.4620556368474	7.19839154709492	11.0493574798625	80	76	300	89	132	36	13	27
+Mir3071	1.4857985362653	5.5628798270356	10.9252793760163	0.000948608970318538	0.00438203576977106	0.174082205996986	753	55.5241304400634	46.2122663164263	103.850463640395	49.2812959762652	54.0190810126613	26.8315915158508	7.72934911151132	18.9043196370371	80	76	300	89	132	36	13	27
+Snora17	-2.46127401857233	3.40420342285319	10.874005626142	0.00097523375467	0.00448686175031641	0.40851922722979	155	2.10047995967078	2.08215489150238	7.29667362890942	2.0770092728079	17.7191176543875	3.68311915995418	61.1164028972156	4.75652253016081	3	3	12	6	32	9	82	8
+Clip4	5.52952392001519	-0.458726906169357	10.7824070833312	0.00102469341988096	0.00469548269913325	0.502799642510046	10	0.409235462217131	2.98128794620564	1.1891306325402	2.10047995967078	0	0	0	0	1	4	2	3	0	0	0	0
+Tor2a	-6.05348342746507	0.174493511900422	10.7693806553913	0.00103193034471589	0.00470973009328334	0.896944340718012	16	0	0	0	0	1.40031997311386	0	6.68861749316697	1.03850463640395	0	0	0	0	2	0	11	3
+Mir128-2	3.80595315755454	1.17261315395944	10.7419570699145	0.00104733513871024	0.00476099359867881	0.634080706784321	35	3.47025815250396	0	6.2310278184237	5.53722426699609	0	0.74532198655141	0	0.700159986556928	5	0	18	10	0	1	0	1
+Hspa13	-5.59458897523584	-0.27627009189198	10.6867872417783	0.0010790343663428	0.00488562782538546	0.521237684268079	12	0	0	0	0	1.66116728009883	0.409235462217131	4.47193191930846	1.1891306325402	0	0	0	0	3	1	6	2
+D830015G02Rik	4.14283168053781	0.551973657077271	10.6760953370882	0.00108528904983538	0.00489452492435639	0.576712851276144	19	2.08215489150238	3.04028067871226	0.6923364242693	4.42977941359688	0	0	0	0.700159986556928	3	5	2	8	0	0	0	1
+Tmem41a	-5.72440095395471	-0.127430607973083	10.5566366819088	0.00115771656627495	0.00520060866976266	0.666956066151007	14	0	0	0	0	2.42317748494255	0	2.04617731108566	1.49064397310282	0	0	0	0	7	0	5	2
+Snhg8	-1.83987674889479	3.46416913391953	10.5096082183788	0.0011875543104793	0.00531372340492893	0.228182931549006	164	4.85836141350555	3.04028067871226	4.8463549698851	4.42977941359688	17.1878894131195	26.8315915158508	11.2967410091319	23.1052795563786	7	5	14	8	42	36	19	33
+1810064F22Rik	-5.71185796121916	-0.138019637864516	10.4694796589287	0.00121362897199574	0.00540313207893838	0.672791990598712	14	0	0	0	0	4.42977941359688	0.818470924434263	2.98128794620564	0	0	0	0	0	8	2	4	0
+A530013C23Rik	-5.70467836394175	-0.143280603126766	10.4643449167901	0.00121700696256544	0.00540313207893838	0.668292869459531	14	0	0	0	0	3.27388369773705	2.98128794620564	0	1.40031997311386	0	0	0	0	8	4	0	2
+4732471J01Rik	-2.40361917198915	2.3838183502368	10.4213715563006	0.00124565349249119	0.00550887842997075	0.332913698975582	78	2.21488970679844	0	2.23596595965423	2.37826126508041	17.5039996639232	6.94051630500793	8.51278590039432	6.2310278184237	4	0	3	4	25	10	14	18
+D830005E20Rik	5.29021647337736	-0.682320418680887	10.3493783559945	0.00129518294778252	0.00570580595915001	0.358026721476975	9	1.66116728009883	0.818470924434263	2.23596595965423	0.594565316270102	0	0	0	0	3	2	3	1	0	0	0	0
+Atp2a2	2.0123235287421	4.868592175877	10.3240172903538	0.00131310157750702	0.00576249576898274	0.326890138977092	394	51.8118390052127	58.3003369620666	47.4283785879112	23.5394384251562	21.0414522145852	0.818470924434263	35.7754553544677	1.1891306325402	74	84	78	68	38	2	48	2
+Lrrc28	-3.51474895709429	2.08366925878611	10.2057873690644	0.0014000060627547	0.00611767150380119	0.701657354307468	60	0	1.49064397310282	0	1.40031997311386	8.32861956600951	1.2161122714849	13.846728485386	1.10744485339922	0	2	0	2	12	2	40	2
+AV039307	-6.20159006204567	0.324020684262981	10.1995373444327	0.00140475892550036	0.00611767150380119	1.14514068085484	18	0	0	0	0	2.77620652200317	0	4.8463549698851	0	0	0	0	0	4	0	14	0
+Snord19	-1.0382015661787	7.22385150526551	10.1767515297517	0.00142222528934907	0.00616001156039107	0.0955181999794412	2203	51.2328953959282	65.3392463505539	136.275408918305	90.1839603727206	217.610905754857	219.850235778875	322.734008182869	205.522973880949	148	118	333	121	366	314	465	338
+Snord34	-2.08475017146841	2.83962853955605	10.1727972396382	0.00142527874841651	0.00616001156039107	0.285645529074013	110	1.3846728485386	1.66116728009883	5.32006100882271	0.74532198655141	20.2152207531835	14.7033597176955	10.4107744575119	11.5530665791066	4	3	13	1	34	21	15	19
+Gm10319	-5.60183019030439	-0.272283085597053	10.1165026412179	0.00146947577925262	0.00632706363821601	0.628336599585883	12	0	0	0	0	1.22770638665139	0.74532198655141	4.16195721389071	0.700159986556928	0	0	0	0	3	1	7	1
+Mir551b	-5.28945446764904	-0.570019864619093	9.96896126389673	0.00159201283526663	0.00682889716180158	0.368842494562338	10	0	0	0	0	1.63694184886853	1.49064397310282	0.594565316270102	2.10047995967078	0	0	0	0	4	2	1	3
+2700038G22Rik	1.0991587512314	5.82706341644059	9.95941636790478	0.00160028777214299	0.0068386829513676	0.103563390951204	872	64.213054157171	70.0159986556928	223.484625021255	41.3478172304867	31.1551390921185	32.1159007485773	27.8280114307649	43.2286752199818	108	100	322	68	90	58	68	58
+Snora24	-1.78976990973169	3.42523406404003	9.931884623743	0.00162440130550695	0.00691582794620685	0.228501461205898	160	3.87605698689727	2.04617731108566	10.4345078117197	4.75652253016081	29.406719435391	22.9037038065262	11.5530665791066	11.0773827883088	7	5	14	8	42	33	19	32
+Wac	-3.6951273770279	1.25653637775457	9.84734492230561	0.00170077053129811	0.00721404898219758	0.650342173610494	36	0	0	0	1.10744485339922	6.13853193325697	1.49064397310282	8.91847974405152	1.40031997311386	0	0	0	2	15	2	15	2
+Mirlet7d	1.01253633956975	10.1217350046956	9.79739851990192	0.00174758920538644	0.00738518253091085	0.0980317463946137	16847	721.068385876475	955.171186056826	2209.87149597251	1445.92465390974	1258.6947745438	920.710382322361	553.159149509132	893.842519541404	2083	1725	5400	1940	2117	1315	797	1470
+Mir3057	1.56624574489393	4.13735216248517	9.71249631557864	0.00183019242429111	0.00770571791924781	0.195683754696777	244	25.6799103285293	25.538357701183	18.6930834552711	24.3637867747828	8.59394470655976	18.6330496637853	5.35108784643091	8.40191983868314	37	42	54	44	21	25	9	12
+4930483K19Rik	-4.07599496401445	0.707807703877924	9.68729747922232	0.00185546239279753	0.00778339187566907	0.650201622154782	24	0	0	0	0.608056135742452	2.7693456970772	1.66116728009883	4.50159008438844	0.74532198655141	0	0	0	1	8	3	11	1
+Abhd1	-5.66647646801464	-0.198980726318646	9.61449776551205	0.00193047250374198	0.00806838507974211	0.798215818999853	13	0	0	0	0	2.04617731108566	0	4.16195721389071	0.700159986556928	0	0	0	0	5	0	7	1
+4931403E22Rik	-5.96978485173564	0.0998305059838412	9.60001485906455	0.00194575794845059	0.00810259058095667	1.08621383004923	16	0	0	0	0	3.64833681445471	0	5.53722426699609	0	0	0	0	0	6	0	10	0
+Tmem179b	-5.91733615380083	0.0555854404990001	9.5767299128365	0.00197059084015365	0.00817616054041931	1.04701992451759	16	0	0	0	0	5.55241304400634	0	2.7693456970772	0	0	0	0	0	8	0	8	0
+Gm16551	-5.39818426417959	-0.456472505628428	9.54681648699309	0.0020029650635253	0.00828037368653032	0.557166179690809	11	0	0	0	0	2.76861213349805	0	2.23596595965423	1.7836959488103	0	0	0	0	5	0	3	3
+Mir467c	-3.19133751128218	1.23147666370608	9.50360214880608	0.00205068921842834	0.00842076289090342	0.504945662631203	35	0.608056135742452	0	0.553722426699609	0.409235462217131	8.94386383861692	1.7836959488103	9.802239811797	2.08215489150238	1	0	1	1	12	3	14	3
+Mir379	1.8411314595372	3.36114899756091	9.50271175811926	0.00205168456062327	0.00842076289090342	0.262009063995429	153	14.5933472578188	7.96186887909694	28.2398437616801	7.77547378212549	14.9064397310282	4.16195721389071	3.50079993278464	2.77620652200317	24	23	51	19	20	7	5	4
+4933405D12Rik	-4.20339477654173	0.833797599470417	9.48229754646459	0.00207463988425776	0.00848445916823692	0.76728472152477	26	0	0	0	0.34616821213465	4.42977941359688	1.63694184886853	9.68918582516833	0	0	0	0	1	8	4	13	0
+Mir205	-5.5496472784481	-0.289774410021733	9.45142550093119	0.00210985060915748	0.00859764123231674	0.735049022988572	13	0	0	0	0	5.35108784643091	1.40031997311386	0	1.2161122714849	0	0	0	0	9	2	0	2
+Mir1a-2	3.96385634049465	0.456332250134469	9.4183755919052	0.00214821737610278	0.00872283283321451	0.633681733191561	23	0.6923364242693	0.553722426699609	6.5477673954741	2.23596595965423	0	0	0	0.608056135742452	2	1	16	3	0	0	0	1
+Mir1b	3.96366007425221	0.456164631557195	9.40381428072631	0.00216534504927928	0.00876120106818318	0.635507314511787	23	1.40031997311386	0.694051630500793	9.72889817187923	1.03850463640395	0	0	0	0.594565316270102	2	1	16	3	0	0	0	1
+Rnu12	-2.0789573310526	3.77260980645493	9.37294121968574	0.00220211893578888	0.00887850779411699	0.355055174324306	212	4.75652253016081	5.60127989245543	7.63456793550872	4.86444908593961	32.1936437285224	2.76861213349805	27.0095405063307	9.68918582516833	8	8	11	8	93	5	66	13
+Cldn25	-5.62670660260646	-0.254133994120215	9.26347528762952	0.00233769010488806	0.00937375843488922	0.833753133549746	12	0	0	0	0	1.10744485339922	0	5.96257589241128	1.1891306325402	0	0	0	0	2	0	8	2
+Snord69	-0.990680806137596	7.25666151567352	9.2605822201903	0.00234138576156304	0.00937375843488922	0.0959745173213836	2301	109.925117889438	72.8754212025833	243.830510432723	40.501680819754	243.637867747828	139.549292616042	303.346048526424	197.990250317944	157	105	401	117	440	341	407	333
+Schip1	3.99609034629807	0.424115359917217	9.23151685898449	0.00237884494599487	0.00949042686496556	0.652017730969643	17	3.32233456019766	2.45541277330279	0.74532198655141	1.7836959488103	0	0	0.608056135742452	0	6	6	1	3	0	0	1	0
+C330022C24Rik	-5.86791058522248	-0.00112585493013314	9.22013376430013	0.00239368057698804	0.00951633985485487	1.08856934734907	15	0	0	0	0	3.64833681445471	0	4.98350184029649	0	0	0	0	0	6	0	9	0
+2700089E24Rik	-3.31825238706569	2.2242433349291	9.19606448069847	0.00242536006842217	0.00960880499329756	0.74313806927634	70	0.694051630500793	0.608056135742452	0	1.66116728009883	11.0493574798625	0	21.4043513857237	1.40031997311386	1	1	0	3	27	0	36	2
+Mirlet7b	0.937138218982313	9.38818883152705	9.17750884023032	0.00245007280130308	0.0096731247968402	0.0895107516917409	10012	743.649219057575	420.694055159211	2223.29548588286	671.264242068945	893.40414284664	545.524581573623	398.276768911306	281.088588253336	1343	1028	2983	1129	1276	786	655	812
+Dmr	-5.77170314815234	-0.0797406660206753	9.13087854946811	0.00251330999291549	0.00988857483419507	1.02707333968874	15	0	0	0	0	4.42977941359688	0	0	4.16195721389071	0	0	0	0	8	0	0	7
+Mir668	3.65464394045293	0.0447295147058579	9.04222855064229	0.00263813851840573	0.0103440414072197	0.420750050074846	15	2.77620652200317	1.2161122714849	1.73084106067325	1.66116728009883	0.409235462217131	0	0	0	4	2	5	3	1	0	0	0
+AW112010	-3.81468417960031	1.20869686190852	9.02944763887385	0.0026566474478555	0.0103809408835724	0.81558416289978	34	0.594565316270102	0	0.694051630500793	0	3.11551390921185	0	8.59394470655976	1.49064397310282	1	0	1	0	9	0	21	2
+Rnu11	-1.99169858610028	4.26616621222318	9.00298526824096	0.00269538963278575	0.0104963807884251	0.357732874849185	297	4.86444908593961	4.1540185456158	16.6116728009883	3.27388369773705	77.5134866013466	6.54021847897112	81.2185584406037	5.55241304400634	8	12	30	8	104	11	116	8
+4933406I18Rik	-5.51419893511843	-0.369915742190644	8.99409538905896	0.00270853316627777	0.0105116882405542	0.784549158060522	11	0	0	0	0	0.694051630500793	0	2.0770092728079	2.21488970679844	0	0	0	0	1	0	6	4
+Nagpa	-3.26321422407828	0.711913571681929	8.9343928467794	0.00279850477796738	0.0108240472937653	0.461375279778792	24	0.74532198655141	0	0.700159986556928	0	3.64833681445471	1.73084106067325	3.87605698689727	1.63694184886853	1	0	1	0	6	5	7	4
+Ncaph2	-3.24794657364615	1.40236514138266	8.87893430752886	0.00288479887931402	0.0111201200043827	0.608383042258691	39	0.34616821213465	0	0	1.49064397310282	8.32391442778142	3.50079993278464	11.1048260880127	0.608056135742452	1	0	0	2	14	5	16	1
+Snord35a	-1.86645078488422	3.1958895587416	8.80397854951295	0.00300574374395181	0.0115130374700931	0.277855654184593	131	5.60127989245543	4.16430978300476	4.25639295019716	1.73084106067325	13.8430606674902	9.41241563099402	29.067557475505	10.7021756928618	8	6	7	5	25	23	39	18
+Hdac10	-6.29766277932921	0.409438374965166	8.80327031569925	0.00300691075029599	0.0115130374700931	1.62403963994052	18	0	0	0	0	0	0	10.7021756928618	0	0	0	0	0	0	0	18	0
+B830017H08Rik	5.32941621896309	-0.686862415819199	8.71729469417869	0.0031520542327124	0.0120284076238289	0.721384416134407	8	1.22770638665139	2.23596595965423	0	1.40031997311386	0	0	0	0	3	3	0	2	0	0	0	0
+Mir483	4.95299475147863	-1.03855334834364	8.66099771495384	0.00325093246385866	0.0123371020106544	0.31761008964285	7	0.694051630500793	1.2161122714849	0.6923364242693	1.10744485339922	0	0	0	0	1	2	2	2	0	0	0	0
+Mir221	0.922265525125667	8.55842785260915	8.65895835066664	0.00325457292305608	0.0123371020106544	0.0912934836443556	5659	255.125972343237	338.878125140161	689.970989298083	450.174479877052	464.355512006949	267.461114864747	257.493154915794	295.515281970832	737	612	1686	604	781	382	371	486
+Hyi	-5.37191465404839	-0.513083591072126	8.54364069953964	0.00346731428867763	0.0131000185542423	0.750122172843921	10	0	0	0	0	0.694051630500793	0	1.73084106067325	2.21488970679844	0	0	0	0	1	0	5	4
+AF357399	-2.02509274782888	2.62961192791143	8.52849192173923	0.00349629285179349	0.0131459115540079	0.310477511331951	89	2.21488970679844	1.22770638665139	2.98128794620564	2.97282658135051	12.6028797580247	8.32861956600951	15.8094595293037	5.88485960628905	4	3	4	5	18	12	26	17
+Mir218-1	4.89509483633198	-1.07472502168	8.52526158730094	0.00350250404243506	0.0131459115540079	0.294529197532838	7	0.553722426699609	0.409235462217131	2.23596595965423	1.1891306325402	0	0	0	0	1	1	3	2	0	0	0	0
+Crem	-3.57926858214912	0.093385262246104	8.44067526067868	0.00366919976852365	0.0137264161832311	0.43650542752889	16	0	0	0.409235462217131	0	2.97282658135051	1.40031997311386	2.08215489150238	3.04028067871226	0	0	1	0	5	2	3	5
+Cacnb2	4.95159972901503	-1.03756393439504	8.4103747432516	0.00373085748437516	0.0139114653257257	0.377642228096051	7	2.08215489150238	0.608056135742452	0.6923364242693	0.553722426699609	0	0	0	0	3	1	2	1	0	0	0	0
+Numb	-2.15585722667369	2.43904569134592	8.3909714925846	0.00377089311820349	0.0140149480386651	0.357897850116302	80	2.80063994622771	1.38810326100159	3.64833681445471	0.6923364242693	11.0744485339922	3.27388369773705	22.3596595965423	4.75652253016081	4	2	6	2	20	8	30	8
+Snora64	-2.80236496230048	1.59221260392222	8.35365855518681	0.00384911525753426	0.0142592224313201	0.554109016621612	47	0	0	2.76861213349805	0.409235462217131	13.4157957579254	4.16195721389071	10.5023997983539	0.694051630500793	0	0	5	1	18	7	15	1
+Mir92-2	-0.974195409614297	7.79620997802811	8.27349220919526	0.00402280557443	0.0148399286867159	0.105313036321083	3238	167.215437329174	67.5028013662567	151.719944915693	99.0349818565458	570.91664169838	311.552225725533	214.949115872977	454.603817978019	275	195	274	242	766	524	307	655
+1700012B15Rik	-3.71464754573846	0.363301874486619	8.26940017368961	0.00403188246527775	0.0148399286867159	0.581673238061597	19	0	0	0	0.34616821213465	3.87605698689727	0.818470924434263	5.96257589241128	0.594565316270102	0	0	0	1	7	2	8	1
+Rreb1	-2.28698243842595	2.86069815395797	8.15968905871472	0.00428317140719232	0.0157141433299243	0.46155938291093	113	2.10047995967078	2.77620652200317	5.47250522168207	0.6923364242693	25.471231628182	1.22770638665139	31.3035234351592	2.37826126508041	3	4	9	2	46	3	42	4
+Ccl25	-5.04971900304356	-0.841015363596638	8.12538916599192	0.00436496134325028	0.0159628874764377	0.493136361754168	8	0	0	0	0	0.553722426699609	0.409235462217131	2.98128794620564	1.1891306325402	0	0	0	0	1	1	4	2
+1300002E11Rik	-4.27085129798674	0.913088381500286	8.06223132333958	0.00451974874521871	0.0164761447868835	1.0675323386472	28	0.553722426699609	0	0	0	7.00159986556928	0	10.3369543076217	0	1	0	0	0	10	0	17	0
+Mir450b	1.53561629878188	3.79888996155825	8.02621551756357	0.00461050735129575	0.016753467795632	0.22585969880479	205	23.8054395429356	18.7393940235214	40.7397610947443	7.96186887909694	9.41328125389336	7.77547378212549	2.98128794620564	8.32391442778142	34	27	67	23	17	19	4	14
+Snord42a	1.37473053772198	5.0749280490694	7.96649206637177	0.0047651195395581	0.0172603218877327	0.201409759579643	438	51.4961856830637	40.9235462217131	22.3596595965423	40.4304415063669	42.7097591799726	21.5156005455246	12.161122714849	12.1158874247127	93	100	30	68	61	31	20	35
+Mir704	-4.81767995439293	-1.0639345641914	7.95753441632376	0.00478876043778264	0.0172910622136392	0.265251638190652	7	0	0	0	0	0.6923364242693	0.553722426699609	0.818470924434263	1.49064397310282	0	0	0	0	2	1	2	2
+Gm5105	4.96536868003461	-1.02507804781198	7.94289950623894	0.00482764204552365	0.0173764655329416	0.519901321793637	7	1.82416840722736	0.6923364242693	1.10744485339922	0	0	0	0	0	3	2	2	0	0	0	0	0
+A730017L22Rik	-3.87318424349948	0.518718416663479	7.8967840964419	0.00495227663831838	0.017769017749438	0.772709732011105	21	0.608056135742452	0	0	0	5.21725390585987	1.7836959488103	7.00159986556928	0	1	0	0	0	7	3	10	0
+5730420D15Rik	-5.01564384886024	-0.865600873478205	7.76307010642554	0.00533252424309005	0.019073386085786	0.560350556242892	8	0	0	0	0	0.818470924434263	0	2.37826126508041	1.40031997311386	0	0	0	0	2	0	4	2
+Snora7a	-2.26792863685883	2.37127807649404	7.75582983890058	0.00535394359705501	0.0190901551382493	0.444782255282773	80	0.608056135742452	1.3846728485386	3.87605698689727	0.409235462217131	22.3596595965423	1.1891306325402	18.2041596504801	6.24646467450714	1	4	7	1	30	2	26	9
+Tmem161b	-5.08032108462326	-0.818054234540908	7.69712673776783	0.0055308800357475	0.0196596078529218	0.648764565221836	8	0	0	0	0	0	0.818470924434263	1.49064397310282	2.37826126508041	0	0	0	0	0	2	2	4
+Mir463	-4.82719320612508	-1.05835510395959	7.67152298486994	0.00560990872530515	0.0198550118071565	0.349609386918062	7	0	0	0	0	0.6923364242693	1.66116728009883	0.409235462217131	0.74532198655141	0	0	0	0	2	3	1	1
+Mir743b	-4.79061777708149	-1.08151469243471	7.6680694291925	0.00562065627845008	0.0198550118071565	0.314000541205754	7	0	0	0	0	1.82416840722736	0.34616821213465	0.553722426699609	0.818470924434263	0	0	0	0	3	1	1	2
+Snord38a	-1.33913119331526	4.0857767202001	7.63352642509689	0.00572931741141385	0.0201763924889605	0.18168090739892	255	5.35108784643091	7.70175985212621	25.6799103285293	9.12084203613678	18.6930834552711	23.2563419213836	13.9140057153825	39.5020652872247	9	11	37	15	54	42	34	53
+4933425B07Rik	-4.96142180315298	-0.904963475415413	7.58361256973045	0.00589012799191041	0.0206788801192916	0.557324296403384	8	0	0	0	0	2.80063994622771	0.694051630500793	1.82416840722736	0	0	0	0	0	4	1	3	0
+1700123M08Rik	3.57557941732565	0.0299528370794082	7.56956080036362	0.00593622476896389	0.0207767866913736	0.574721577433121	14	2.0770092728079	1.66116728009883	1.22770638665139	0.74532198655141	0	0	0.694051630500793	0	6	3	3	1	0	0	1	0
+Gm10791	-5.29675073457302	-0.576575415250665	7.55339789530342	0.00598970253798212	0.0208998489169346	0.979929412884947	10	0	0	0	0	2.37826126508041	0	4.16430978300476	0	0	0	0	0	4	0	6	0
+Surf1	-3.11557486370192	0.443181433822012	7.53511371510928	0.00605079181924948	0.0210486386151331	0.514912835729877	20	0	0	0.818470924434263	0	1.7836959488103	2.10047995967078	4.85836141350555	3.04028067871226	0	0	2	0	3	3	7	5
+Mir190b	2.95802648449286	0.358038324450742	7.51712973668544	0.00611149837328476	0.0211951964860727	0.418766938312034	19	1.2161122714849	1.03850463640395	4.42977941359688	1.63694184886853	0	0.594565316270102	0	0.694051630500793	2	3	8	4	0	1	0	1
+4930405P13Rik	-5.33370980155161	-0.547374288612431	7.49520291535994	0.00618635602760609	0.0213897946287835	1.04173152033113	10	0	0	0	0	1.03850463640395	0	2.86464823551992	0	0	0	0	0	3	0	7	0
+1700045H11Rik	-3.37957420103823	0.0441220586298499	7.45995305585384	0.0063086651861424	0.0217467884513247	0.428060112576303	15	0	0.74532198655141	0	0	2.77620652200317	1.2161122714849	1.03850463640395	2.76861213349805	0	1	0	0	4	2	3	5
+G630025P09Rik	-3.55343334673305	0.0383612803151585	7.45026820497568	0.0063426997205869	0.0217508057765078	0.561498847336713	15	0	0	0.700159986556928	0	1.2161122714849	0.34616821213465	2.76861213349805	2.45541277330279	0	0	1	0	2	1	5	6
+Mir1191	-3.05031926237303	1.12342386853995	7.44877707988913	0.00634795646238133	0.0217508057765078	0.647708540511775	34	0	0.553722426699609	0.409235462217131	0.74532198655141	10.1076103765917	0	6.94051630500793	2.43222454296981	0	1	1	1	17	0	10	4
+Psmd2	-2.73873658771658	1.94638769421169	7.3980830572068	0.00652934195254587	0.0223053268498648	0.652811733336645	58	1.2161122714849	0	1.66116728009883	0.818470924434263	14.1611177444768	0	20.3046396101509	2.08215489150238	2	0	3	2	19	0	29	3
+Adhfe1	-3.12716506690649	0.72764049925686	7.38107535962579	0.00659137465965001	0.0224310758946098	0.572944343909241	25	1.10744485339922	0	0	0	7.70175985212621	1.38810326100159	3.64833681445471	1.3846728485386	2	0	0	0	11	2	6	4
+Snord2	-0.835788458583385	8.06657402096099	7.37627910987488	0.00660897671301661	0.0224310758946098	0.0874540350229517	3954	194.577963437585	85.8497166093931	265.233042389113	115.404400345231	681.224295707989	346.037014069199	352.880633224692	433.782269062996	320	248	479	282	914	582	504	625
+2310015A10Rik	-4.91632094011797	-0.937165006838922	7.3718892662158	0.00662512933959991	0.0224310758946098	0.576199575464096	8	0	0	0	0	1.73084106067325	0	0.818470924434263	0.74532198655141	0	0	0	0	5	0	2	1
+Mir185	1.37190403654877	4.34018013107411	7.36475706437366	0.00665145859746777	0.0224535924843513	0.208263730315133	331	27.0680135895309	14.5933472578188	55.7330821536786	11.6281709606918	12.6862993287311	17.1424056906824	9.51304506032163	11.2025597849109	39	24	161	21	31	23	16	16
+2900009J06Rik	-5.18564488410358	-0.663845594756243	7.31860424602692	0.00682443929615001	0.0229695729702276	0.943542639042969	10	0	0	0	0	4.9011199058985	0	1.82416840722736	0	0	0	0	0	7	0	3	0
+Mir378b	4.97038429524366	-0.961795059363911	7.27202849870353	0.00700366614441412	0.0234565049801267	0.788310935249594	8	0	2.23596595965423	2.97282658135051	0	0	0	0	0	0	3	5	0	0	0	0	0
+9530036O11Rik	4.79137988711484	-1.22276664852111	7.27034689174331	0.00701022629116846	0.0234565049801267	0.483016590272417	6	2.23596595965423	0.594565316270102	0.700159986556928	0.694051630500793	0	0	0	0	3	1	1	1	0	0	0	0
+0610007N19Rik	1.75285598167579	2.75634800902129	7.24864913372478	0.00709543706427371	0.0236722037729132	0.29537051608402	104	12.670473771374	6.54021847897112	29.406719435391	6.94051630500793	6.08056135742452	0.6923364242693	3.32233456019766	2.45541277330279	17	11	42	10	10	2	6	6
+Snord32a	-0.867940398938489	7.44816468128633	7.23287271905415	0.00715805756245784	0.0238114976057271	0.0952424424817424	2646	113.82446740213	70.5345117461244	173.43027427946	94.1328125389336	206.663908419651	293.656862701256	224.745689550098	292.666874380796	164	116	501	170	505	394	378	418
+Snora3	-2.02338105739282	2.25273796050994	7.16219129319929	0.00744561826636039	0.0246960768660384	0.362837907840272	69	0	1.10744485339922	2.04617731108566	4.47193191930846	8.32391442778142	14.0031997311386	9.02267119651031	5.47250522168207	0	2	5	6	14	20	13	9
+Raver1-fdx1l	-3.15256605591627	1.06096616586223	7.02341707572973	0.0080450557388284	0.0266069814434876	0.777916109214555	32	0	0	1.10744485339922	0.409235462217131	8.94386383861692	0	10.5023997983539	1.38810326100159	0	0	2	1	12	0	15	2
+9430083A17Rik	-4.78761131488812	-1.08681534236434	6.95013071766346	0.00838131087918455	0.0275704164530979	0.533478195307408	7	0	0	0	0	1.03850463640395	0	1.22770638665139	0.74532198655141	0	0	0	0	3	0	3	1
+Mir1249	1.33420902575511	4.11168580936998	6.94609339087773	0.00840024771000095	0.0275704164530979	0.202224907664229	240	29.067557475505	23.188047334534	36.4083193009603	25.6799103285293	11.5530665791066	10.0388781519048	4.98350184029649	6.5477673954741	39	39	52	37	19	29	9	16
+A630019I02Rik	3.26167399534256	-0.272699385491757	6.94426114097636	0.00840885620129541	0.0275704164530979	0.400159341054461	12	1.03850463640395	0.553722426699609	1.63694184886853	2.23596595965423	0	0	0	0.608056135742452	3	1	4	3	0	0	0	1
+C730036E19Rik	-5.05477254306333	-0.799269961296597	6.9368640322839	0.00844370204999448	0.0276053410860851	0.918623508831139	9	0	0	0	0	2.0770092728079	0	1.22770638665139	0	0	0	0	0	6	0	3	0
+Ankrd11	-2.18103909667878	2.52283020447273	6.89341897565766	0.00865136429428079	0.0282034475993554	0.486351664986784	86	3.72660993275705	0.594565316270102	4.9011199058985	1.38810326100159	15.2014033935613	2.0770092728079	21.0414522145852	0.818470924434263	5	1	7	2	25	6	38	2
+B430319G15Rik	4.72081863854311	-1.26892848961946	6.87616695760186	0.00873527020447139	0.0283958498669568	0.542702288493143	6	1.03850463640395	0.553722426699609	0.818470924434263	0	0	0	0	0	3	1	2	0	0	0	0	0
+E430016F16Rik	4.79935062066812	-1.21063469924739	6.85331199005173	0.00884771066359478	0.0286796530317092	0.651023683068673	6	1.49064397310282	0	0.700159986556928	2.08215489150238	0	0	0	0	2	0	1	3	0	0	0	0
+Mir3096	-4.59951967555061	-1.28909371583304	6.83550379944407	0.00893634858741344	0.0288849114397698	0.299587495202805	6	0	0	0	0	1.2161122714849	0.34616821213465	1.10744485339922	0.409235462217131	0	0	0	0	2	1	2	1
+Gm9920	-4.5995200988505	-1.28910604757003	6.82500777140143	0.00898901649220674	0.0289356394674086	0.303121517582577	6	0	0	0	0	0.6923364242693	0.553722426699609	0.818470924434263	0.74532198655141	0	0	0	0	2	1	2	1
+Snord93	1.09475239691961	4.82400726589799	6.82227873145514	0.00900276249862406	0.0289356394674086	0.144476606641905	435	22.0987149597251	37.2660993275705	95.7250159194863	23.1052795563786	31.2323233725357	17.6336279365311	11.7697192125781	16.0579503742887	54	50	161	33	45	29	34	29
+Mir3096b	1.09474073351477	4.82400166218608	6.81430030669435	0.00904307290110857	0.0289835566858564	0.144666503515226	435	18.6930834552711	27.6861213349805	65.8869094169581	24.5956255561965	26.7554392321546	20.3046396101509	23.597755437027	17.6336279365311	54	50	161	33	45	29	34	29
+B230206H07Rik	-4.74346407829275	-1.11736319836185	6.79005661208549	0.00916670014515469	0.029204896383076	0.540989661043619	7	0	0	0	0	2.77620652200317	0	0.34616821213465	1.10744485339922	0	0	0	0	4	0	1	2
+Gm16880	-4.75883967312706	-1.10770483939409	6.78420753082298	0.0091967849901342	0.029204896383076	0.560384825794036	7	0	0	0	0	2.37826126508041	0.700159986556928	1.38810326100159	0	0	0	0	0	4	1	2	0
+Gm20605	-4.75879889989136	-1.1077532754186	6.78162174649064	0.00921011722732317	0.029204896383076	0.561298981347345	7	0	0	0	0	1.63694184886853	0.74532198655141	1.1891306325402	0	0	0	0	0	4	1	2	0
+Mir222	0.841584698085981	6.91582989037381	6.78076945633395	0.00921451594908622	0.029204896383076	0.0942592144970467	1840	163.837436854321	115.212570663132	357.537007816562	64.0411192449102	139.538051528302	59.7483774837012	90.929282359272	87.4011014917049	234	166	588	185	252	146	122	147
+Wdr73	-4.74966730819967	-1.11364737745149	6.76880153130504	0.00927651086208881	0.0292587976867808	0.555799370264571	7	0	0	0	0	2.21488970679844	0	1.49064397310282	0.594565316270102	0	0	0	0	4	0	2	1
+C030037D09Rik	-4.74959285756282	-1.11373080910421	6.76490074887779	0.00929680943568341	0.0292587976867808	0.55716569404608	7	0	0	0	0	2.21488970679844	0	1.49064397310282	0.594565316270102	0	0	0	0	4	0	2	1
+Mir1933	2.82725221302978	0.698610551790541	6.76266735743312	0.00930845184951921	0.0292587976867808	0.585759864698133	26	2.0770092728079	1.10744485339922	5.72929647103984	0.74532198655141	1.1891306325402	0	0	0.608056135742452	6	2	14	1	2	0	0	1
+Mir1968	-2.46768357590063	1.09810079635797	6.73924271859571	0.00943146526658702	0.0295640161241093	0.471188104398069	33	0	0	2.77620652200317	0.608056135742452	3.80785033348115	2.21488970679844	3.27388369773705	3.72660993275705	0	0	4	1	11	4	8	5
+Snord123	1.70578334623011	2.72038537358282	6.72943167472097	0.00948348111736436	0.0296456217942815	0.302926017640622	102	9.72889817187923	3.80785033348115	23.2563419213836	3.68311915995418	7.4532198655141	1.1891306325402	4.20095991934157	4.16430978300476	16	11	42	9	10	2	6	6
+Vsig8	-0.902834264927296	5.55459078576635	6.70341350588094	0.00962285112700383	0.0299991069287196	0.102205746319398	711	27.6861213349805	14.3232411775996	74.532198655141	29.7282658135051	135.831037392044	68.7111114195785	44.9961540449414	37.7323351226768	50	35	100	50	194	99	74	109
+Snord12	-0.919816922407107	7.35562306675395	6.65603848835887	0.0098820361671187	0.0307231696639849	0.116694630120205	2566	47.0620781549701	77.5134866013466	357.928320394601	84.7193583733883	370.623570687423	231.061331582132	122.543547095666	197.125183905061	115	104	602	121	534	380	354	356
+Senp2	-4.99341410510682	-0.887327724565546	6.64264381285972	0.0099566068260705	0.0308708923601805	0.939478152223678	8	0	0	0	0	2.08215489150238	0	1.73084106067325	0	0	0	0	0	3	0	5	0
+Gm16548	-4.63390380895177	-1.26705162742001	6.63248563327131	0.0100135436635543	0.0309632881303942	0.411066747851104	6	0	0	0	0	0.594565316270102	0.700159986556928	2.08215489150238	0.608056135742452	0	0	0	0	1	1	3	1
+Angel2	-3.32197651328682	0.924659782606656	6.61162681503805	0.0101315063874819	0.0312433751030185	0.863441483281838	28	0	0	0	1.2161122714849	3.4616821213465	1.10744485339922	5.72929647103984	0	0	0	0	2	10	2	14	0
+Gm9899	4.43949216009681	-1.5540258813559	6.60462695972415	0.01017141105759	0.0312818868374936	0.212932303162572	5	0.608056135742452	0.34616821213465	1.10744485339922	0.409235462217131	0	0	0	0	1	1	2	1	0	0	0	0
+Mir466g	-3.0399705440106	1.2520604419821	6.56805113798332	0.0103825581338254	0.0318454269642334	0.790312988487452	38	1.40031997311386	0.694051630500793	0	0	13.2893382407906	0.818470924434263	6.70789787896269	0	2	1	0	0	24	2	9	0
+Gnas	-1.82521520869349	3.70870243724255	6.52730550631142	0.010623076088082	0.0324957903927657	0.405267494665349	198	5.21725390585987	7.72934911151132	4.9011199058985	6.24646467450714	49.2525469951386	1.03850463640395	35.9919577354746	5.32006100882271	7	13	7	9	81	3	65	13
+Gm3230	-4.86989485239441	-1.02936826048138	6.49591486565287	0.0108122642703658	0.0329711114167912	0.812822826834647	7	0	0	0	0	0.700159986556928	0	3.04028067871226	0.34616821213465	0	0	0	0	1	0	5	1
+Gm1976	-5.0369196812994	-0.854209425428817	6.49197458631003	0.0108362548477622	0.0329711114167912	1.06320259111897	8	0	0	0	0	1.49064397310282	0	4.20095991934157	0	0	0	0	0	2	0	6	0
+Gm16119	-2.92562292854026	0.72176555087102	6.4808173603759	0.0109044828024529	0.0330904650999967	0.680406555206017	24	0	0	2.23596595965423	0	0.700159986556928	2.77620652200317	4.86444908593961	2.7693456970772	0	0	3	0	1	4	8	8
+Mir1198	-2.23856803773979	1.53291654103201	6.42090534617109	0.0112784649155055	0.0341345582721268	0.444176624548971	43	0.608056135742452	0.34616821213465	1.66116728009883	0.818470924434263	8.94386383861692	1.1891306325402	11.2025597849109	4.16430978300476	1	1	3	2	12	2	16	6
+Mir466n	-2.4388682367728	2.12324881443706	6.38958299192249	0.0114791992524297	0.0346501755212229	0.617857914094893	64	1.22770638665139	0.74532198655141	0	2.80063994622771	15.9631875015182	2.43222454296981	9.69270993977019	0.553722426699609	3	1	0	4	23	4	28	1
+Snord37	-0.907474093709009	5.34576258146551	6.36736660460981	0.0116237964831889	0.0349940680404182	0.10743818814236	605	23.7141892939556	11.0773827883088	49.2812959762652	18.0063603375538	99.873146197889	67.1858807385215	51.8118390052127	55.5241304400634	39	32	89	44	134	113	74	80
+Gm16793	-4.86584521091781	-0.984373300007398	6.35796351056233	0.0116855592449884	0.0350874292066625	0.90916215866401	8	0	0	0	0	2.0770092728079	0	0.818470924434263	0	0	0	0	0	6	0	2	0
+Six3os1	5.35591520283124	-0.619642163849833	6.31819985852289	0.0119504887988145	0.0357887341717779	1.74781375074076	8	0	0	0	5.55241304400634	0	0	0	0	0	0	0	8	0	0	0	0
+E230016K23Rik	4.95447619215765	-1.07335266880581	6.29287399193814	0.0121224329623612	0.0362086282985709	1.12630875333369	6	1.1891306325402	2.80063994622771	0	0	0	0	0	0	2	4	0	0	0	0	0	0
+B430010I23Rik	-4.56045022066575	-1.31609325012697	6.25695731425781	0.012370648975783	0.0368535521706747	0.470630993784846	6	0	0	0	0	1.82416840722736	0	1.10744485339922	0.409235462217131	0	0	0	0	3	0	2	1
+Gm14207	3.10414436765598	-0.456288935823787	6.24115701788293	0.012481490912576	0.0370869300292949	0.37865565032756	11	0.818470924434263	1.49064397310282	2.97282658135051	0.700159986556928	0.694051630500793	0	0	0	2	2	5	1	1	0	0	0
+D330041H03Rik	-3.77053842990024	0.436757410461614	6.22482906999438	0.0125971068737917	0.0373332440077825	1.0680577020917	20	0.700159986556928	0	0	0	3.87605698689727	0	8.94386383861692	0	1	0	0	0	7	0	12	0
+Gm12718	-4.60712196452859	-1.28569453744605	6.21732658980043	0.0126505993344318	0.037394647255406	0.545893031867059	6	0	0	0	0	0.6923364242693	0.553722426699609	1.22770638665139	0	0	0	0	0	2	1	3	0
+4833422C13Rik	-2.70590219169449	1.23246769664305	6.19309018482061	0.0128250047318736	0.0377404723023295	0.667074736609862	34	0.6923364242693	0.553722426699609	0.409235462217131	0	5.35108784643091	4.20095991934157	10.4107744575119	0	2	1	1	0	9	6	15	0
+C130080G10Rik	4.44114066551529	-1.55279427161606	6.19188448872279	0.0128337451825625	0.0377404723023295	0.382129097234149	5	0	0.34616821213465	1.10744485339922	0.818470924434263	0	0	0	0	0	1	2	2	0	0	0	0
+4930545L23Rik	-4.65270264027644	-1.25428970702057	6.18714186214492	0.012868185344469	0.0377444716659103	0.618058342096432	6	0	0	0	0	0.608056135742452	0.6923364242693	1.66116728009883	0	0	0	0	0	1	2	3	0
+AW011738	-4.69352521398441	-1.22465208415207	6.16871820626591	0.0130028786706948	0.0380417552904174	0.680610948711193	6	0	0	0	0	0	1.7836959488103	1.40031997311386	0.694051630500793	0	0	0	0	0	3	2	1
+Gm12992	-3.44317598520529	-0.0854225797284822	6.15441299699051	0.0131084614456725	0.0382525690780366	0.729927107959208	14	0	0	0.74532198655141	0	2.80063994622771	1.38810326100159	4.25639295019716	0	0	0	1	0	4	2	7	0
+Mir3471-1	0.997287393635222	4.94217766267901	6.12638973089996	0.0133178554366995	0.0387197780439375	0.134343698437695	469	19.731588091675	31.0084558951781	66.2961448791753	27.5769135024022	33.2956577111257	21.0047995967078	27.0680135895309	19.4577963437585	57	56	162	37	56	30	39	32
+Gm16675	-4.79049745465137	-1.09037255953691	6.12322463475043	0.0133417206788594	0.0387197780439375	0.884492449467394	7	0	0	0	0	2.23596595965423	0	2.80063994622771	0	0	0	0	0	3	0	4	0
+Mir350	1.44031710779667	3.50452947573003	6.11710432230229	0.0133879934512334	0.0387197780439375	0.262356833774395	172	19.9340073611859	6.95700285769123	42.4833532334304	7.72934911151132	18.2041596504801	5.55241304400634	4.86444908593961	2.42317748494255	36	17	57	13	26	8	8	7
+Arfrp1	-4.79044885687476	-1.09049170588236	6.11165284370939	0.013429348445403	0.0387197780439375	0.890196266708108	7	0	0	0	0	1.03850463640395	0	1.63694184886853	0	0	0	0	0	3	0	4	0
+4930549G23Rik	-4.7904439535645	-1.09050376123376	6.11048296974453	0.0134382402326023	0.0387197780439375	0.890774503132499	7	0	0	0	0	2.08215489150238	0	1.3846728485386	0	0	0	0	0	3	0	4	0
+A730056A06Rik	4.75939760745855	-1.23601551280444	6.1004330231804	0.0135148760826941	0.0388425027968614	0.947098800404391	6	0	1.63694184886853	1.49064397310282	0	0	0	0	0	0	4	2	0	0	0	0	0
+D130020L05Rik	-2.18498353855442	1.90852129507034	6.07899706786759	0.0136798413565997	0.0391385785085493	0.485041815926962	52	2.98128794620564	2.37826126508041	0	0	4.86444908593961	4.1540185456158	8.85955882719375	3.27388369773705	4	4	0	0	8	12	16	8
+Snord100	-0.79184365112736	6.08126535452823	6.07813783609298	0.0136864967790633	0.0391385785085493	0.0890811476060749	1006	38.2068474422731	22.9171858841594	119.251517848226	44.5923987202576	137.931517351715	93.0029184871063	97.2889817187923	53.6560728808707	69	56	160	75	197	134	160	155
+4930564K09Rik	-4.74543745973896	-1.12382679009559	6.04083407487956	0.0139786784896747	0.039874180391797	0.865843473143036	7	0	0	0	0	1.63694184886853	0	1.7836959488103	0	0	0	0	0	4	0	3	0
+Mllt10	-1.86926853121574	2.38611744305032	6.02926399221928	0.0140705990653471	0.0400362931011497	0.384589052576615	76	2.77620652200317	2.43222454296981	0.6923364242693	2.21488970679844	9.00318016877689	2.98128794620564	15.4586982230226	7.00159986556928	4	4	2	4	22	4	26	10
+Mir127	0.975507127579735	10.006292384558	6.02064572196315	0.0141394724501816	0.0400837103670484	0.148503826419806	14429	1294.96325883628	1467.53533182332	1569.94478819279	1388.80021403576	1025.0040761307	774.103952526054	193.97760909092	578.369861563894	2178	2096	2262	2284	2961	1398	474	776
+Mir1949	4.63322473900413	-1.41367891135757	6.01627983950761	0.0141744949264376	0.0400837103670484	0.739240892573431	5	0.594565316270102	0.700159986556928	0	1.82416840722736	0	0	0	0	1	1	0	3	0	0	0	0
+A330009N23Rik	4.54594477948466	-1.38832731191796	6.01402042293841	0.0141926546786043	0.0400837103670484	0.696412658094153	6	1.49064397310282	0	2.80063994622771	0	0	0	0	0	2	0	4	0	0	0	0	0
+Mir19a	-1.24526645075184	3.88238037407187	5.9802674621998	0.0144668081475452	0.0407571064107386	0.199646979899429	223	8.30583640049414	5.72929647103984	19.3783716503367	4.16195721389071	46.2105591127573	16.657239132019	21.2819647509858	12.4620556368474	15	14	26	7	66	24	35	36
+Mir98	0.811391831918862	8.04345611653739	5.95566318832199	0.0146700832344921	0.0412279925383141	0.102727038641255	4140	303.346048526424	210.476121959616	1058.64189967408	270.680135895309	329.566425572409	88.6190623064703	168.885340143381	153.054062869207	407	354	1512	390	542	256	305	374
+1700042O10Rik	-4.52602512738634	-1.34143437169305	5.94928233259783	0.0147232790544411	0.0412377540508809	0.562900420571659	6	0	0	0	0	2.21488970679844	0.409235462217131	0.74532198655141	0	0	0	0	0	4	1	1	0
+Cox18	-4.52594876310546	-1.34151310532301	5.94658328216434	0.0147458401864675	0.0412377540508809	0.564069284504222	6	0	0	0	0	1.63694184886853	0.74532198655141	0.594565316270102	0	0	0	0	0	4	1	1	0
+1810014B01Rik	-4.65472174227517	-1.25272552720818	5.92625117460215	0.0149169426620441	0.0416142581354334	0.746940240029483	6	0	0	0	0	0.694051630500793	0.608056135742452	1.3846728485386	0	0	0	0	0	1	1	4	0
+Mir297a-3	2.38847204568904	1.12339751621335	5.91147915598414	0.0150425360725469	0.0417849731055422	0.535142168542096	32	3.04028067871226	1.03850463640395	6.64466912039531	2.86464823551992	0	0	0.700159986556928	2.77620652200317	5	3	12	7	0	0	1	4
+A630066F11Rik	-4.36169213150998	-1.54372517840173	5.90893243988917	0.0150642983556821	0.0417849731055422	0.278938165197312	5	0	0	0	0	0.553722426699609	0.409235462217131	0.74532198655141	1.1891306325402	0	0	0	0	1	1	1	2
+Mir449a	4.36921513388423	-1.59738234243611	5.90616298412623	0.0150880008058575	0.0417849731055422	0.418303050465709	5	0	0.553722426699609	1.22770638665139	0.74532198655141	0	0	0	0	0	1	3	1	0	0	0	0
+9130019P16Rik	-2.84065748119699	0.484472559320195	5.84286475934197	0.0156403414757766	0.0432097569585015	0.59123448929216	20	0	1.1891306325402	0	0	3.04028067871226	1.03850463640395	4.42977941359688	0.818470924434263	0	2	0	0	5	3	8	2
+5730522E02Rik	-3.1550564340133	-0.32129116168565	5.83730397633937	0.015689849825029	0.0432418324887877	0.510910151140775	12	0	0	0.409235462217131	0	2.37826126508041	0.700159986556928	3.47025815250396	0.608056135742452	0	0	1	0	4	1	5	1
+F730035M05Rik	-2.77040528665825	0.252839547538199	5.81079026895199	0.0159281349182739	0.0437927757632542	0.514212842878516	17	0	0	0.608056135742452	0.34616821213465	1.10744485339922	2.04617731108566	4.47193191930846	1.1891306325402	0	0	1	1	2	5	6	2
+Mir1970	-4.88725365823116	-1.01721336421137	5.78412944911692	0.016171504832887	0.0443550168613559	1.20509331798187	7	0	0	0	0	0.409235462217131	0	3.56739189762061	0	0	0	0	0	1	0	6	0
+Osbpl1a	-2.72941508191175	1.88703676401833	5.77053106432782	0.0162971088908848	0.0444860264158971	0.864403068471403	52	0	1.2161122714849	0.34616821213465	1.66116728009883	3.68311915995418	0.74532198655141	21.4043513857237	0	0	2	1	3	9	1	36	0
+Mir5121	-2.14426173923313	1.30914299437549	5.76736967602592	0.0163264534720534	0.0444860264158971	0.447609437499421	37	0.553722426699609	0.409235462217131	3.72660993275705	0	5.60127989245543	7.63456793550872	4.25639295019716	1.3846728485386	1	1	5	0	8	11	7	4
+Mir664	0.850826988332697	5.44257143826939	5.76631709351486	0.0163362358179324	0.0444860264158971	0.105537233882269	632	48.0364347236537	21.8085973644829	86.3806985651391	40.1050752972789	55.8991489913558	31.5119617623154	26.6060794891633	48.5836141350555	79	63	156	98	75	53	38	70
+Snora36b	0.845925637317396	5.4443251884731	5.70739558152532	0.0168935845900923	0.0458942381364175	0.105430491795193	633	48.0364347236537	21.8085973644829	86.3806985651391	40.1050752972789	56.6444709779072	31.5119617623154	26.6060794891633	48.5836141350555	79	63	156	98	76	53	38	70
+4931440P22Rik	-3.02355708577247	-0.294058742067184	5.6937016662616	0.017025903585048	0.046143838457339	0.426071154826174	12	0.594565316270102	0	0	0	1.3846728485386	0.553722426699609	0.818470924434263	2.98128794620564	1	0	0	0	4	1	2	4
+Mir331	1.02828115977103	4.60858989572193	5.67956830877918	0.0171635902691095	0.0464067689503649	0.151465793172874	359	37.4787880470428	24.3222454296981	33.9244847891957	23.8100643480832	20.0525376486394	26.0862695292994	10.1076103765917	16.1036796908094	54	40	98	43	49	35	17	23
+3110039I08Rik	4.66710473339333	-1.37724942365974	5.66391869531516	0.0173173892787993	0.0467119176527423	0.997931816083102	5	0	1.38810326100159	0	1.03850463640395	0	0	0	0	0	2	0	3	0	0	0	0
+Gorasp2	-2.77869854922804	0.719913380130782	5.64312158878824	0.0175239796339807	0.0471041177138396	0.721900399119535	24	0	0	0.818470924434263	0.74532198655141	2.37826126508041	0.700159986556928	9.7167228270111	1.2161122714849	0	0	2	1	4	1	14	2
+D330050I16Rik	-3.01113541942147	-0.439437361530946	5.64098422823465	0.0175453549766712	0.0471041177138396	0.403678089207391	11	0	0	0.594565316270102	0	2.08215489150238	1.2161122714849	0.34616821213465	2.21488970679844	0	0	1	0	3	2	1	4
+Xist	-5.13613683201078	-0.772780738328248	5.62649417684841	0.0176909786811773	0.0473835837446557	1.70734837749777	8	0	0	0	0	0	0	4.86444908593961	0	0	0	0	0	0	0	8	0
+Gm13944	-4.33378769704655	-1.56137932912199	5.59843783032572	0.0179764996328636	0.0480355645927339	0.388124026811924	5	0	0	0	0	1.1891306325402	0	1.38810326100159	0.608056135742452	0	0	0	0	2	0	2	1
+Gm10658	-4.34208774081353	-1.55643296429839	5.59067372773794	0.0180563499364064	0.0480598312901321	0.403128044640173	5	0	0	0	0	1.40031997311386	0.694051630500793	1.2161122714849	0	0	0	0	0	2	1	2	0
+Apol7d	-4.33365136865811	-1.56150376145668	5.58681781322576	0.0180961422929121	0.0480598312901321	0.39379522563825	5	0	0	0	0	1.38810326100159	0	0.6923364242693	0.553722426699609	0	0	0	0	2	0	2	1
+9530080O11Rik	-4.34206486208939	-1.55646319286893	5.58528909682071	0.0181119434309876	0.0480598312901321	0.405830507755595	5	0	0	0	0	1.10744485339922	0.409235462217131	1.49064397310282	0	0	0	0	0	2	1	2	0
+Mir503	1.52498130607447	2.62997785341829	5.57615664972052	0.0182066355809051	0.0481990050993335	0.285133970619286	88	7.13478379524122	11.2025597849109	15.9631875015182	7.90472976465187	2.42317748494255	3.32233456019766	2.86464823551992	2.98128794620564	12	16	23	13	7	6	7	4
+2700069I18Rik	-4.363975924111	-1.54199449772265	5.57204613469149	0.0182494232124457	0.048200444179168	0.443577653506995	5	0	0	0	0	0.700159986556928	0	1.2161122714849	0.6923364242693	0	0	0	0	1	0	2	2
+Snord67	-1.58415695612717	2.77386442018943	5.55420921951776	0.0184362996597731	0.0485815656161687	0.327169249334561	108	2.98128794620564	0.594565316270102	11.9027197714678	3.47025815250396	23.7141892939556	6.2310278184237	7.19839154709492	4.50159008438844	4	1	17	5	39	18	13	11
+Snora65	-1.65696910063083	2.5201234673238	5.54312145693541	0.0185534606840094	0.0487776466369923	0.330202270684043	83	1.7836959488103	4.20095991934157	1.38810326100159	3.64833681445471	8.30803709123159	6.0909466936957	6.95700285769123	10.4345078117197	3	6	2	6	24	11	17	14
+Mir140	0.742644657946567	9.47727722729599	5.53650190229239	0.0186237738744092	0.048849944806209	0.0938788293476974	10795	493.128731971643	736.378122712793	2027.46772848105	814.986224352264	893.244448454521	487.052964729704	383.900547257327	460.143336587375	1205	988	3410	1164	1287	801	1109	831
+Zfp809	-3.18630495109524	-0.118176305320276	5.51983100882118	0.0188020750180037	0.0491573995288799	0.655378408990054	14	0.74532198655141	0	0	0	4.25639295019716	0	2.21488970679844	0.818470924434263	1	0	0	0	7	0	4	2
+Ralgps2	-2.72567361415324	0.976816169731756	5.51298746308074	0.0188757788835162	0.0491573995288799	0.729657294476011	30	0.700159986556928	1.38810326100159	0	0	8.30583640049414	0.409235462217131	7.4532198655141	0.594565316270102	1	2	0	0	15	1	10	1
+D630024D03Rik	-5.05773854514281	-0.83787801901214	5.50975366147475	0.0189107101868288	0.0491573995288799	1.67487804178275	8	0	0	0	0	0	0	0	5.55241304400634	0	0	0	0	0	0	0	8
+4930519F09Rik	4.69883109194223	-1.34751467361663	5.50951228100682	0.01891332023942	0.0491573995288799	1.15048784382369	5	0	2.98128794620564	0	0.700159986556928	0	0	0	0	0	4	0	1	0	0	0	0
+4930556M19Rik	-2.96997270016198	0.602351656760163	5.50367692963132	0.0189765314234308	0.0492095962593966	0.795999812061091	23	1.1891306325402	0	0	0	3.80785033348115	1.66116728009883	2.86464823551992	0	2	0	0	0	11	3	7	0
+4930546K05Rik	-4.38576653835092	-1.52826826541548	5.49607177063888	0.0190592417664179	0.0492150032811166	0.514259831464266	5	0	0	0	0	0.594565316270102	1.40031997311386	1.38810326100159	0	0	0	0	0	1	2	2	0
+Fam187b	-4.41229089947872	-1.50966942063263	5.49555431029868	0.0190648829537717	0.0492150032811166	0.553674802479722	5	0	0	0	0	0	0.694051630500793	1.2161122714849	0.6923364242693	0	0	0	0	0	1	2	2
+4930592A05Rik	-4.60644281967906	-1.28925979997623	5.47854968235591	0.0192512252210648	0.0495838554790857	0.928853902684399	6	0	0	0	0	1.40031997311386	0	2.43222454296981	0	0	0	0	0	2	0	4	0
+Gm20300	-4.60645464959625	-1.289281817894	5.47293467271813	0.0193131688977027	0.0496313642168441	0.932323295798368	6	0	0	0	0	1.40031997311386	0	2.43222454296981	0	0	0	0	0	2	0	4	0
+St7l	-2.2189654673135	1.14554938580967	5.45944439188239	0.0194628344819	0.0499035823457256	0.471062196945795	32	0.694051630500793	0.608056135742452	0.34616821213465	1.10744485339922	3.27388369773705	2.23596595965423	7.13478379524122	2.80063994622771	1	1	1	2	8	3	12	4
+Dnajc5	-2.72638061235134	0.677776746512274	5.45140704355741	0.0195525728812462	0.050021268290363	0.718242219800619	24	0.608056135742452	0	1.10744485339922	0	5.21725390585987	0.594565316270102	8.40191983868314	0.694051630500793	1	0	2	0	7	1	12	1
+H2-K2	-4.3739613458593	-1.53568847785942	5.4040126388066	0.0200905100485588	0.0512824876183571	0.54904969651255	5	0	0	0	0	0.34616821213465	0	1.22770638665139	0.74532198655141	0	0	0	0	1	0	3	1
+4933417D19Rik	-4.38215151610853	-1.53049991387322	5.39496611611829	0.0201949175545036	0.0514339306466265	0.565860797235032	5	0	0	0	0	0.74532198655141	1.7836959488103	0	0.694051630500793	0	0	0	0	1	3	0	1
+1700018L02Rik	-2.80020601153252	0.437164091958315	5.38985059767737	0.0202542048871283	0.0514700395906758	0.65447582063791	20	0.594565316270102	0	0	0.608056135742452	2.7693456970772	2.21488970679844	2.45541277330279	0	1	0	0	1	8	4	6	0
+Gm8615	-4.3865554457949	-1.52756030282699	5.34270773991366	0.0208091262871766	0.0527097679227499	0.602779304595555	5	0	0	0	0	0.608056135742452	0.34616821213465	1.66116728009883	0	0	0	0	0	1	1	3	0
+C730027H18Rik	-4.38660031217306	-1.52752944041572	5.3405876848061	0.0208344481447504	0.0527097679227499	0.604100547201435	5	0	0	0	0	0.74532198655141	0.594565316270102	2.10047995967078	0	0	0	0	0	1	1	3	0
+D030028A08Rik	-4.66099404649387	-1.24859807260024	5.27933372568	0.0215800044250171	0.0544301945469956	1.14292627145135	6	0	0	0	0	0.700159986556928	0	3.04028067871226	0	0	0	0	0	1	0	5	0
+Gm14403	-4.66108311409197	-1.24854214540607	5.27222466268006	0.0216683039906921	0.0544301945469956	1.1480188620546	6	0	0	0	0	0.74532198655141	0	3.50079993278464	0	0	0	0	0	1	0	5	0
+Gm3219	-4.66111058225096	-1.24852491457626	5.27002843105692	0.021695658311197	0.0544301945469956	1.14959564755902	6	0	0	0	0	0.34616821213465	0	2.04617731108566	0	0	0	0	0	1	0	5	0
+Dennd2d	-4.66112024243351	-1.24851885662957	5.26925561696671	0.0217052923040166	0.0544301945469956	1.1501508848393	6	0	0	0	0	0.700159986556928	0	3.04028067871226	0	0	0	0	0	1	0	5	0
+Mir365-2	-2.40446642068728	0.656389510468249	5.25136767302149	0.0219295279997562	0.0548719110695654	0.569843581463586	25	0	0	2.43222454296981	0	5.53722426699609	1.63694184886853	2.98128794620564	1.7836959488103	0	0	4	0	10	4	4	3
+Snora62	-2.81087060301771	0.144821719268767	5.22358138824377	0.0222826149371134	0.0556333996569944	0.677276452940496	17	0	0	1.1891306325402	0	3.47025815250396	0	1.3846728485386	3.32233456019766	0	0	2	0	5	0	4	6
+Gm16998	-2.34605151155975	1.02476273248633	5.19737349381261	0.0226210437101954	0.0563550455749628	0.551015426306811	28	0.594565316270102	1.40031997311386	0	0.608056135742452	0.6923364242693	4.42977941359688	2.04617731108566	6.70789787896269	1	2	0	1	2	8	5	9
+Gm15850	4.32485989010306	-1.75136485782155	5.17598004331388	0.02290124934226	0.0569288137244416	0.638146949527696	4	0	2.98128794620564	0	0	0	0	0	0	0	4	0	0	0	0	0	0
+Icmt	-3.43964717192378	-0.117979851487391	5.16602317910198	0.0230328861231014	0.0571315718836058	1.02910298564861	14	0	0	0.553722426699609	0	3.72660993275705	0	5.60127989245543	0	0	0	1	0	5	0	8	0
+Snord17	-0.824863576667047	6.52948148967961	5.15225649594236	0.0232161846768319	0.0574613160873432	0.118543212928014	1360	86.4573504399636	46.3760946690679	103.623678010425	76.3456793550872	198.226300252039	78.9263523667001	47.0664062694668	110.084339336408	116	78	148	110	326	228	85	269
+Gm19705	4.30544101853957	-1.76267782482169	5.13181671270203	0.0234911276013293	0.0578906621881572	0.638146949527696	4	1.40031997311386	1.38810326100159	0	0	0	0	0	0	2	2	0	0	0	0	0	0
+Mir701	4.30544101853957	-1.76267782482169	5.13181671270203	0.0234911276013293	0.0578906621881572	0.638146949527696	4	0.818470924434263	1.49064397310282	0	0	0	0	0	0	2	2	0	0	0	0	0	0
+4930412C18Rik	4.2981587523336	-1.76690275121654	5.11537642460026	0.0237147210156602	0.0581903154384264	0.638146949527696	4	0.553722426699609	0.409235462217131	0	1.1891306325402	0	0	0	0	1	1	0	2	0	0	0	0
+Gm17769	4.2981587523336	-1.76690275121654	5.11537642460026	0.0237147210156602	0.0581903154384264	0.638146949527696	4	0.553722426699609	0.409235462217131	0	1.1891306325402	0	0	0	0	1	1	0	2	0	0	0	0
+9330133O14Rik	-4.44362480702571	-1.40870537572914	5.10698829039436	0.023829651723276	0.0583468511078497	0.922324467910694	6	0	0	0	0	1.73084106067325	0	0	0.74532198655141	0	0	0	0	5	0	0	1
+Slc25a43	4.28610369975683	-1.77393201165615	5.08818866597313	0.0240893397879402	0.0588289245157709	0.638146949527696	4	2.80063994622771	0	0	0	0	0	0	0	4	0	0	0	0	0	0	0
+Snora23	-3.340975114243	-0.188121295349034	5.08528896743113	0.0241296552790366	0.0588289245157709	0.949900152389812	14	0	0	0.694051630500793	0	2.7693456970772	0	2.04617731108566	0	0	0	1	0	8	0	5	0
+Hsf4	-2.59699845103262	0.135896950618057	5.07188928104409	0.0243168668859822	0.0591589448121658	0.517660448314775	17	0	0.553722426699609	0.409235462217131	0	5.35108784643091	1.40031997311386	1.38810326100159	1.2161122714849	0	1	1	0	9	2	2	2
+5430405H02Rik	-2.8196995121282	0.461135729079766	5.05058855443142	0.0246175749690112	0.0597630915737058	0.75732533558914	20	0	0	0	1.40031997311386	4.16430978300476	4.86444908593961	0	2.21488970679844	0	0	0	2	6	8	0	4
+Mir666	2.93419724288666	-0.607938610965555	5.01918767618117	0.0250679265030401	0.0607271850105495	0.460856961136671	9	1.1891306325402	1.40031997311386	0.694051630500793	1.82416840722736	0	0	0	0.74532198655141	2	2	1	3	0	0	0	1
+Mir3470a	-1.87021761872493	1.99410161630258	5.01053744762987	0.0251934847013949	0.0609020467040076	0.464679556412486	61	3.47025815250396	0.608056135742452	1.73084106067325	0.553722426699609	9.41241563099402	1.49064397310282	11.2967410091319	3.50079993278464	5	1	5	1	23	2	19	5
+Mir345	0.734909613178412	6.12800185450291	4.99315356648432	0.0254477908140659	0.061230508814674	0.0947082280915224	1042	69.2153033374512	48.6990200038386	203.472902328535	67.7804460547916	123.228157634019	52.7479239180603	50.4686592666235	26.3087841222334	125	119	273	114	176	76	83	76
+Slc35c2	-4.33695533551557	-1.56255368840464	4.99248368816412	0.0254576435378352	0.061230508814674	0.749848078876026	5	0	0	0	0	1.49064397310282	0	2.10047995967078	0	0	0	0	0	2	0	3	0
+Gm19710	-4.33694548359162	-1.56257486402717	4.99026179339674	0.0254903520481772	0.061230508814674	0.751364495056686	5	0	0	0	0	1.38810326100159	0	1.03850463640395	0	0	0	0	0	2	0	3	0
+Dtnb	-3.17505351287045	0.841387743258975	4.97923578965442	0.0256533127750487	0.0614924997401903	1.15628171752664	26	0	1.1891306325402	0	0	4.86444908593961	0	8.85955882719375	0	0	2	0	0	8	0	16	0
+4933404O12Rik	-4.42579132318076	-1.49815567894859	4.95531027686733	0.0260106568760744	0.0622183637224336	0.922648094486409	5	0	0	0	0	0	0	2.08215489150238	1.2161122714849	0	0	0	0	0	0	3	2
+Mir671	-0.725369678599479	6.04255898820116	4.93281211766451	0.0263514017896377	0.0629003167448506	0.0924050997208331	973	58.113278884225	42.3371494605484	97.8970378545347	19.3854198795404	93.579090112234	64.2499675680896	102.109112157543	88.5902321242451	83	61	161	56	169	157	137	149
+Gm10532	-4.2872747151629	-1.59671824839497	4.92923498677878	0.026406005013833	0.0629003167448506	0.714293128450685	5	0	0	0	0	2.08215489150238	0	0.6923364242693	0	0	0	0	0	3	0	2	0
+Gm16907	-4.28715725434401	-1.59684775559759	4.92486693774264	0.0264728407372805	0.0629281485025772	0.717133204617271	5	0	0	0	0	2.08215489150238	0	0.6923364242693	0	0	0	0	0	3	0	2	0
+Mir1195	-1.3589724701246	3.30216987457252	4.90790607575142	0.0267340311334275	0.0634169012957189	0.283296732530939	144	6.30143987901235	4.16430978300476	6.68861749316697	3.80785033348115	20.4877297878855	6.95700285769123	30.5582014486078	7.13478379524122	9	6	11	11	37	17	41	12
+Mir1929	4.20693402162931	-1.82829173793219	4.89682648218169	0.0269060977253478	0.0636558635838898	0.638146949527696	4	0	1.2161122714849	0.34616821213465	0.553722426699609	0	0	0	0	0	2	1	1	0	0	0	0
+Gm12295	4.20574528873674	-1.8289814032897	4.89424539941862	0.0269463471612785	0.0636558635838898	0.638146949527696	4	0.409235462217131	1.49064397310282	0.594565316270102	0	0	0	0	0	1	2	1	0	0	0	0	0
+Gm5088	4.1985462508946	-1.83310329056964	4.87875076209192	0.0271892903379618	0.0640970666851538	0.638146949527696	4	0	0.553722426699609	0.409235462217131	1.49064397310282	0	0	0	0	0	1	1	2	0	0	0	0
+Rchy1	-2.87993342912263	-0.412369356704153	4.86878031988778	0.0273468220962669	0.0643233470333028	0.478980051611401	11	0	0.694051630500793	0	0	2.21488970679844	0.409235462217131	2.98128794620564	0.594565316270102	0	1	0	0	4	1	4	1
+Gm9961	-2.84370299651583	-0.592048912374425	4.86555245541893	0.0273980251167267	0.0643233470333028	0.414619734912702	10	0	0	0.74532198655141	0	2.80063994622771	2.08215489150238	0.608056135742452	0.34616821213465	0	0	1	0	4	3	1	1
+Mir330	1.05240260718454	3.96066818404172	4.85632711058787	0.0275449155404997	0.0645354181349284	0.17731135215144	231	17.1653952276879	11.0493574798625	52.1725390585987	15.4586982230226	17.5039996639232	11.1048260880127	10.3369543076217	6.57719603055835	31	27	70	26	25	16	17	19
+Pum2	-2.21812892661648	1.8236814421157	4.83864209647008	0.0278287999416218	0.0650669277323576	0.686497877414486	52	0.594565316270102	2.80063994622771	1.38810326100159	0.608056135742452	5.5386913941544	0	10.6401220176454	1.49064397310282	1	4	2	1	16	0	26	2
+Zfp414	-4.39322317594084	-1.52321168441367	4.78780814288875	0.0286618773804242	0.0668777138876564	0.994958029677988	5	0	0	0	0	0.409235462217131	0	2.37826126508041	0	0	0	0	0	1	0	4	0
+Mir708	2.68716394607092	0.0711815210020507	4.76453661396524	0.0290518787484033	0.0676493747998534	0.691199963705031	16	3.32233456019766	0	5.21725390585987	0.594565316270102	0.700159986556928	0.694051630500793	0	0	6	0	7	1	1	1	0	0
+Gm9999	-4.40695581378278	-1.51120365460116	4.74114071938235	0.0294495381268142	0.0684060274368463	1.05881460289785	5	0	0	0	0	0	0	0.594565316270102	2.80063994622771	0	0	0	0	0	0	1	4
+Mirlet7f-2	-0.749028328814578	9.82437144186694	4.73838627298902	0.0294967269929259	0.0684060274368463	0.1118988891969	14033	453.609877263869	231.932702130215	1860.50735371069	305.698890276197	1806.66049540062	991.734947538529	1627.87196874486	1452.65006263816	746	670	3360	747	2424	1668	2325	2093
+Gm5089	-2.55897886180306	1.23551189149562	4.72033310490704	0.0298079682828465	0.0689876101637482	0.852888567444377	34	0.700159986556928	0.694051630500793	0	0.6923364242693	5.53722426699609	0	14.1611177444768	0.594565316270102	1	1	0	2	10	0	19	1
+Snord55	-0.729362997449786	7.06314087453579	4.71634081224755	0.0298772572710651	0.0690079970572575	0.103003842641375	2070	42.9248583046966	55.9259650966606	184.155957997709	88.6933163996178	274.689176116787	216.349435846091	176.983165777702	152.014033935613	124	101	450	119	462	309	255	250
+Mir3089	4.10609417441111	-1.89407801957868	4.66838303824757	0.0307228400760573	0.0708176980339019	0.638146949527696	4	0	1.2161122714849	0.6923364242693	0	0	0	0	0	0	2	2	0	0	0	0	0
+Elp3	1.86431594033298	2.07277561337725	4.65305287403314	0.0309983708314294	0.0713087522553648	0.531287705056586	55	10.3369543076217	2.42317748494255	1.10744485339922	5.72929647103984	7.4532198655141	0.594565316270102	2.10047995967078	0.694051630500793	17	7	2	14	10	1	3	1
+BC024582	-2.74243198012145	-0.557092895659259	4.63849482796119	0.0312624101806381	0.071320166353759	0.377764081952408	10	0.694051630500793	0	0	0	1.63694184886853	1.49064397310282	1.1891306325402	0.700159986556928	1	0	0	0	4	2	2	1
+4932412D23Rik	4.08961152063957	-1.90344255573407	4.63453969965143	0.0313345488092793	0.071320166353759	0.638146949527696	4	0	0	1.49064397310282	1.1891306325402	0	0	0	0	0	0	2	2	0	0	0	0
+Smpx	4.08961152063957	-1.90344255573407	4.63453969965143	0.0313345488092793	0.071320166353759	0.638146949527696	4	0	0	1.38810326100159	1.2161122714849	0	0	0	0	0	0	2	2	0	0	0	0
+Mir1938	4.08844638824145	-1.9041116993875	4.63214159943731	0.0313783729268949	0.071320166353759	0.638146949527696	4	0.409235462217131	0	1.1891306325402	0.700159986556928	0	0	0	0	1	0	2	1	0	0	0	0
+Mir384	4.08844638824145	-1.9041116993875	4.63214159943731	0.0313783729268949	0.071320166353759	0.638146949527696	4	0.694051630500793	0	0.6923364242693	0.553722426699609	0	0	0	0	1	0	2	1	0	0	0	0
+Sec14l1	4.08844638824145	-1.9041116993875	4.63214159943731	0.0313783729268949	0.071320166353759	0.638146949527696	4	0.74532198655141	0	1.40031997311386	0.694051630500793	0	0	0	0	1	0	2	1	0	0	0	0
+Snord88c	-0.931338003503823	4.55114882228658	4.61823407238763	0.0316337899802813	0.0717262620445574	0.150977773843396	341	16.0579503742887	9.00318016877689	26.0862695292994	13.6750022742123	51.8118390052127	28.4561168505325	39.5236488232594	18.0007470310018	29	22	35	23	74	41	65	52
+Mir329	2.23803795350777	0.290422564342482	4.61558070031246	0.0316827660564916	0.0717262620445574	0.44908816914487	18	1.2161122714849	1.03850463640395	3.87605698689727	1.22770638665139	0	1.1891306325402	0	0.694051630500793	2	3	7	3	0	2	0	1
+BC029722	-4.22735989837203	-1.64150898139513	4.60640949824354	0.0318526587623106	0.0719680864312801	0.856481808302187	5	0	0	0	0	2.43222454296981	0	0.553722426699609	0	0	0	0	0	4	0	1	0
+A230108P19Rik	-2.37353765876239	0.516633701524973	4.59391725060311	0.0320856032034256	0.0723511329152344	0.586094176786546	21	0	0.608056135742452	0.34616821213465	0.553722426699609	2.45541277330279	0.74532198655141	5.35108784643091	1.40031997311386	0	1	1	1	6	1	9	2
+Snora52	-1.32770000191998	2.82430805766402	4.58495625194707	0.0322537946201336	0.0725869421332789	0.270249435101158	105	1.3846728485386	2.21488970679844	5.32006100882271	5.96257589241128	14.2695675904824	11.2025597849109	15.9631875015182	7.90472976465187	4	4	13	8	24	16	23	13
+Mir3061	1.31233812183835	3.0369942208777	4.57815474930133	0.0323820680346795	0.0727321646211995	0.278078412770089	119	7.70175985212621	13.1869809795151	20.0658524795009	6.92336424269299	6.64466912039531	4.09235462217131	2.23596595965423	6.54021847897112	11	19	33	20	12	10	3	11
+Zfp410	-2.69952260917983	0.395528824073657	4.5189405682202	0.0335215828629465	0.075143666103383	0.789500807655785	20	0	0.818470924434263	0	0	7.00159986556928	0	3.64833681445471	0.6923364242693	0	2	0	0	10	0	6	2
+Gm12359	-2.42575621884223	0.749676389218599	4.51264576021709	0.0336451587657393	0.075272796375899	0.753144082371769	26	0.608056135742452	0	1.66116728009883	0	6.70789787896269	0	7.70175985212621	1.38810326100159	1	0	3	0	9	0	11	2
+Polg2	-4.12411192811269	-1.82151885704115	4.49394057121341	0.0340151844668462	0.075803370071624	0.638146949527696	4	0	0	0	0	0	1.10744485339922	0.818470924434263	0	0	0	0	0	0	2	2	0
+Sgsm1	-4.12411192811269	-1.82151885704115	4.49394057121341	0.0340151844668462	0.075803370071624	0.638146949527696	4	0	0	0	0	0	1.38810326100159	1.2161122714849	0	0	0	0	0	0	2	2	0
+1190002F15Rik	-4.11803142846939	-1.82534652200596	4.48127406637341	0.0342681661309806	0.0759481942525399	0.638146949527696	4	0	0	0	0	0	0	1.63694184886853	0	0	0	0	0	0	0	4	0
+Tsix	-4.11803142846939	-1.82534652200596	4.48127406637341	0.0342681661309806	0.0759481942525399	0.638146949527696	4	0	0	0	0	0	0	1.3846728485386	0	0	0	0	0	0	0	4	0
+Mir542	1.05726365562716	3.91239824161194	4.48069094278527	0.0342798598072376	0.0759481942525399	0.1959886286223	225	13.6750022742123	22.4051195698217	52.0538722875595	13.3772349863339	6.92336424269299	8.30583640049414	9.41241563099402	11.1798297982712	23	32	75	22	20	15	23	15
+9230116N13Rik	-4.11133735502004	-1.8296491175196	4.4672063339432	0.0345514403378628	0.0762400644531103	0.638146949527696	4	0	0	0	0	0	0.608056135742452	0.6923364242693	0.553722426699609	0	0	0	0	0	1	2	1
+Mir297-2	-1.74036242444806	1.69583451914289	4.46707175864515	0.034554161997183	0.0762400644531103	0.412928500012421	47	2.04617731108566	0.74532198655141	1.7836959488103	0.700159986556928	7.63456793550872	3.64833681445471	5.5386913941544	2.21488970679844	5	1	3	1	11	6	16	4
+9330151L19Rik	-4.10830302209086	-1.83155766024206	4.46091717923999	0.0346788724374796	0.0762400644531103	0.638146949527696	4	0	0	0	0	0	0	1.82416840722736	0.34616821213465	0	0	0	0	0	0	3	1
+Lins	-4.10830302209086	-1.83155766024206	4.46091717923999	0.0346788724374796	0.0762400644531103	0.638146949527696	4	0	0	0	0	0	0	2.08215489150238	0.608056135742452	0	0	0	0	0	0	3	1
+4930502E09Rik	-4.09191548661964	-1.84203731318131	4.42677797549459	0.0353792352562969	0.0775760128311178	0.638146949527696	4	0	0	0	0	0	0.694051630500793	0	1.03850463640395	0	0	0	0	0	1	0	3
+Snord71	-0.955120708530058	4.51498915950296	4.4207003213376	0.0355054612538313	0.0775760128311178	0.168050833809458	341	11.891306325402	14.0031997311386	26.3739619590301	17.6336279365311	32.1936437285224	28.2398437616801	10.6401220176454	47.7006071392902	20	20	38	29	93	51	26	64
+Mir880	-4.08889162412657	-1.84393669687063	4.42056468400816	0.0355082836562712	0.0775760128311178	0.638146949527696	4	0	0	0	0	0	0	0.694051630500793	1.82416840722736	0	0	0	0	0	0	1	3
+Cd40	3.98853196498671	-1.96832823340441	4.41815303960816	0.0355585054431854	0.0775760128311178	0.638146949527696	4	0.608056135742452	0	1.66116728009883	0	0	0	0	0	1	0	3	0	0	0	0	0
+Alg11	-2.91746441789601	-0.356455446075155	4.37859552645042	0.0363929731044889	0.0788854417139366	0.706370492250227	12	0	0	0	0.700159986556928	4.85836141350555	0	1.03850463640395	0.553722426699609	0	0	0	1	7	0	3	1
+Stap2	-2.19552607597296	0.707730435297325	4.37653214141865	0.0364370588531311	0.0788854417139366	0.570956875691062	25	0	1.1891306325402	1.40031997311386	0	6.08056135742452	0.34616821213465	3.32233456019766	1.63694184886853	0	2	2	0	10	1	6	4
+Mir129-1	-4.06884099363945	-1.85841131947687	4.37629201354318	0.0364421929934367	0.0788854417139366	0.638146949527696	4	0	0	0	0	0.608056135742452	0.34616821213465	1.10744485339922	0	0	0	0	0	1	1	2	0
+A730020M07Rik	-4.06582213619695	-1.86030123418635	4.3701612498462	0.0365735308209224	0.0788854417139366	0.638146949527696	4	0	0	0	0	0.34616821213465	0	1.22770638665139	0	0	0	0	0	1	0	3	0
+F630206G17Rik	-4.06582213619695	-1.86030123418635	4.3701612498462	0.0365735308209224	0.0788854417139366	0.638146949527696	4	0	0	0	0	0.594565316270102	0	2.08215489150238	0	0	0	0	0	1	0	3	0
+Gm21944	-4.06582213619695	-1.86030123418635	4.3701612498462	0.0365735308209224	0.0788854417139366	0.638146949527696	4	0	0	0	0	0.553722426699609	0	2.23596595965423	0	0	0	0	0	1	0	3	0
+4930451G09Rik	-4.06218135011626	-1.86266730759621	4.36262408960627	0.0367356769979684	0.0789367372027908	0.638146949527696	4	0	0	0	0	0.34616821213465	1.10744485339922	0	0.74532198655141	0	0	0	0	1	2	0	1
+4933421O10Rik	-4.06218135011626	-1.86266730759621	4.36262408960627	0.0367356769979684	0.0789367372027908	0.638146949527696	4	0	0	0	0	0.34616821213465	1.10744485339922	0	0.74532198655141	0	0	0	0	1	2	0	1
+1700034P13Rik	-4.05615312273869	-1.86643936217435	4.35042607968738	0.0369996883643231	0.0791333136258031	0.638146949527696	4	0	0	0	0	0.594565316270102	0	1.38810326100159	0.608056135742452	0	0	0	0	1	0	2	1
+Fam120aos	-4.05615312273869	-1.86643936217435	4.35042607968738	0.0369996883643231	0.0791333136258031	0.638146949527696	4	0	0	0	0	0.694051630500793	0	0.6923364242693	0.553722426699609	0	0	0	0	1	0	2	1
+Ythdf3	-1.74609152248204	1.80381807875995	4.34879124911614	0.0370352230290787	0.0791333136258031	0.451143612970826	52	1.3846728485386	0.553722426699609	1.63694184886853	1.49064397310282	9.51304506032163	2.10047995967078	13.1869809795151	1.82416840722736	4	1	4	2	16	3	19	3
+Gm10516	-4.04950853481582	-1.87068223831354	4.33686580917984	0.0372955180993558	0.0795266882692114	0.638146949527696	4	0	0	0	0	0.553722426699609	0.409235462217131	0	1.1891306325402	0	0	0	0	1	1	0	2
+Mir294	-4.04650119827995	-1.87256292336199	4.33081029928285	0.0374284238392345	0.0795266882692114	0.638146949527696	4	0	0	0	0	0.594565316270102	0	0.694051630500793	1.2161122714849	0	0	0	0	1	0	1	2
+Snora70	-4.04650119827995	-1.87256292336199	4.33081029928285	0.0374284238392345	0.0795266882692114	0.638146949527696	4	0	0	0	0	0.608056135742452	0	0.553722426699609	0.818470924434263	0	0	0	0	1	0	1	2
+C530005A16Rik	-2.35830413614665	0.0398009444546594	4.29264896394365	0.0382774838415955	0.0811795707495549	0.464336618201745	15	0	0.694051630500793	0	0.34616821213465	2.76861213349805	0.409235462217131	2.98128794620564	1.7836959488103	0	1	0	1	5	1	4	3
+2310044G17Rik	-2.26269892849728	0.549698073149406	4.2847771464391	0.0384551234624672	0.0814050016153526	0.561232526625958	21	0	1.2161122714849	0	0.553722426699609	2.45541277330279	2.23596595965423	4.16195721389071	1.40031997311386	0	2	0	1	6	3	7	2
+2610020C07Rik	-2.70163097892754	0.364000305555862	4.2653219113525	0.0388978785475462	0.0817329391154928	0.871328639864001	19	1.38810326100159	0	0	0	2.86464823551992	0	5.35108784643091	0.700159986556928	2	0	0	0	7	0	9	1
+Snhg3	-1.41622896880049	2.6340659540425	4.26330501043091	0.0389440832520463	0.0817329391154928	0.335657556826962	94	6.30143987901235	1.38810326100159	6.08056135742452	1.03850463640395	15.5042279475891	2.45541277330279	13.4157957579254	10.7021756928618	9	2	10	3	28	6	18	18
+1500015L24Rik	-4.01381917958462	-1.89488966537583	4.26225317431253	0.0389682023477897	0.0817329391154928	0.638146949527696	4	0	0	0	0	1.2161122714849	0	1.10744485339922	0	0	0	0	0	2	0	2	0
+Cyp2d37-ps	-4.01381917958462	-1.89488966537583	4.26225317431253	0.0389682023477897	0.0817329391154928	0.638146949527696	4	0	0	0	0	1.38810326100159	0	0.6923364242693	0	0	0	0	0	2	0	2	0
+Trpt1	-4.01381917958462	-1.89488966537583	4.26225317431253	0.0389682023477897	0.0817329391154928	0.638146949527696	4	0	0	0	0	1.10744485339922	0	1.49064397310282	0	0	0	0	0	2	0	2	0
+4833417C18Rik	-2.70825404396028	-0.725970783957293	4.25732760148008	0.0390813566696084	0.0818198678165563	0.428193962550269	9	0	0	0.34616821213465	0	0.818470924434263	0.74532198655141	0.594565316270102	2.80063994622771	0	0	1	0	2	1	1	4
+5730408K05Rik	-4.00720956832825	-1.89909188977037	4.24903440378983	0.0392726541017003	0.0820697771612455	0.638146949527696	4	0	0	0	0	1.40031997311386	0.694051630500793	0	0.34616821213465	0	0	0	0	2	1	0	1
+BC031361	-4.00422113245092	-1.90095362347432	4.24313587364672	0.0394093118010205	0.0822047984734266	0.638146949527696	4	0	0	0	0	1.1891306325402	0	0.694051630500793	0.608056135742452	0	0	0	0	2	0	1	1
+Yipf2	-3.34184791158038	-0.252874288421611	4.22074958507356	0.0399325160996857	0.0828118071394653	1.30930817659146	12	0	0	0.700159986556928	0	0.608056135742452	0	5.53722426699609	0	0	0	1	0	1	0	10	0
+1700102H20Rik	3.89082017977606	-2.03056170835189	4.21828219859005	0.0399906272864552	0.0828118071394653	0.638146949527696	4	0	0	1.3846728485386	0	0	0	0	0	0	0	4	0	0	0	0	0
+9230112J17Rik	3.89082017977606	-2.03056170835189	4.21828219859005	0.0399906272864552	0.0828118071394653	0.638146949527696	4	0	0	2.43222454296981	0	0	0	0	0	0	0	4	0	0	0	0	0
+Mir3100	3.89082017977606	-2.03056170835189	4.21828219859005	0.0399906272864552	0.0828118071394653	0.638146949527696	4	0	0	2.43222454296981	0	0	0	0	0	0	0	4	0	0	0	0	0
+Cops5	-2.74277299547302	0.226431665149612	4.18235809780445	0.040846829713992	0.0843223691619662	0.93474486502049	18	0.553722426699609	0	0.74532198655141	0	5.60127989245543	0	4.86444908593961	0	1	0	1	0	8	0	8	0
+Mir338	0.880044436101206	5.05378388813902	4.17709516231065	0.0409738719926891	0.0843223691619662	0.157817687637039	469	43.4099191665296	37.4787880470428	54.7250522168207	29.0781298193106	33.7770680286762	21.2802440352908	9.68918582516833	31.5119617623154	62	54	90	84	61	52	13	53
+2010003O02Rik	-2.26499437181878	0.173533443670672	4.17505423403297	0.0410232496648664	0.0843223691619662	0.553877020535981	17	0	0	1.7836959488103	0	2.08215489150238	1.2161122714849	2.0770092728079	1.66116728009883	0	0	3	0	3	2	6	3
+Snora61	-1.13929292635118	3.42314387958311	4.17384160983589	0.0410526171619562	0.0843223691619662	0.235971517375169	164	7.00159986556928	3.47025815250396	13.9852911220764	3.80785033348115	27.6861213349805	8.59394470655976	17.8877276772338	11.891306325402	10	5	23	11	50	21	24	20
+Mir3065	0.880052068574874	5.05379134091003	4.17231570109871	0.0410896032025006	0.0843223691619662	0.158022076718089	469	25.3725986574621	40.2473872737761	53.5108784643091	58.813438870782	42.3371494605484	31.6189190586075	4.50018675775045	29.3472886150793	62	54	90	84	61	52	13	53
+Mir465	-3.96505397297716	-1.92726105726275	4.16328361615134	0.0413092470664329	0.0846209172402154	0.638146949527696	4	0	0	0	0	2.10047995967078	0.694051630500793	0	0	0	0	0	0	3	1	0	0
+4930414N06Rik	-3.9620867245947	-1.929103668579	4.15754091127589	0.0414495402538273	0.084651135570796	0.638146949527696	4	0	0	0	0	1.7836959488103	0	0.694051630500793	0	0	0	0	0	3	0	1	0
+Mir467d	2.05279780631616	0.848429956164326	4.15660795974648	0.0414723793024321	0.084651135570796	0.56454176739212	27	2.97282658135051	1.40031997311386	7.63456793550872	2.43222454296981	0	0	0.409235462217131	2.98128794620564	5	2	11	4	0	0	1	4
+D930015M05Rik	-2.28826976055491	0.444390421848186	4.15285346786993	0.0415644245963214	0.0846875151150048	0.610024792932182	20	0	0.594565316270102	0.700159986556928	0.694051630500793	3.64833681445471	0.34616821213465	4.98350184029649	0.409235462217131	0	1	1	1	6	1	9	1
+Mea1	-2.26984916965905	-0.17311453854932	4.13558639294138	0.0419905169624685	0.085403172645591	0.384698019815479	13	0.409235462217131	0	0.594565316270102	0	2.08215489150238	1.2161122714849	1.3846728485386	1.10744485339922	1	0	1	0	3	2	4	2
+C920021L13Rik	-1.96158632640905	1.14195272250258	4.11494573036799	0.0425058889106721	0.086297543144265	0.536329402383485	32	0	0.818470924434263	1.49064397310282	1.1891306325402	4.20095991934157	0.694051630500793	6.08056135742452	3.11551390921185	0	2	2	2	6	1	10	9
+2810013P06Rik	-2.35851702389742	-0.221303845666127	4.10700942780947	0.0427058146741521	0.0865494396859813	0.481368760572018	13	0	0	1.2161122714849	0	2.21488970679844	1.63694184886853	1.49064397310282	0.594565316270102	0	0	2	0	4	4	2	1
+Snhg10	-2.71050155843518	-0.5701353917104	4.10375519077588	0.0427880787236106	0.0865624074887228	0.522207025512832	10	0.74532198655141	0	0	0	2.43222454296981	0	1.10744485339922	1.22770638665139	1	0	0	0	4	0	2	3
+Scarna13	-2.71013588698149	-0.570227672567595	4.09436542619313	0.0430263785049904	0.0868904387153877	0.525354151245509	10	0.553722426699609	0	0	0	2.80063994622771	0	1.2161122714849	1.03850463640395	1	0	0	0	4	0	2	3
+Mir92b	1.05044666152489	3.9894491812515	4.08735951556546	0.0432050881905728	0.0870971830838226	0.218876934489161	237	19.0260901206433	18.9043196370371	41.6430978300476	20.0658524795009	17.3084106067325	6.64466912039531	3.68311915995418	10.4345078117197	32	27	60	33	50	12	9	14
+A930005H10Rik	-2.52625234204566	-0.116815101035818	4.07433773304422	0.0435393305764957	0.0875494859959466	0.689309301498005	14	0	0	0.6923364242693	0	1.22770638665139	2.23596595965423	0	4.20095991934157	0	0	2	0	3	3	0	6
+Mir1947	1.16184849878844	3.38888934180821	4.072647408532	0.0435829167797525	0.0875494859959466	0.253542491868531	146	9.00318016877689	20.8690156234395	17.2423941718329	12.6028797580247	10.4107744575119	9.12084203613678	2.0770092728079	7.19839154709492	22	28	29	18	15	15	6	13
+B330016D10Rik	2.58188210511056	-0.92647248780797	4.06376451086592	0.0438127242575601	0.0878564470612935	0.332152802450769	8	0.694051630500793	0.608056135742452	1.3846728485386	0.553722426699609	0.409235462217131	0	0	0	1	1	4	1	1	0	0	0
+4931403G20Rik	-3.91068585346704	-1.96293646496455	4.05600415048542	0.0440145343589822	0.0879519854704005	0.638146949527696	4	0	0	0	0	2.37826126508041	0	0	0	0	0	0	0	4	0	0	0
+Gm4265	-3.91068585346704	-1.96293646496455	4.05600415048542	0.0440145343589822	0.0879519854704005	0.638146949527696	4	0	0	0	0	1.63694184886853	0	0	0	0	0	0	0	4	0	0	0
+Gm15417	-1.85449559634089	1.29933114150381	4.04875262199335	0.0442039964129681	0.0881761536839101	0.494873532642221	35	1.10744485339922	1.22770638665139	1.49064397310282	0	2.80063994622771	2.77620652200317	4.25639295019716	4.50018675775045	2	3	2	0	4	4	7	13
+0610040F04Rik	-2.29919578617586	-0.155903889018436	4.04577247307808	0.04428210800949	0.088177810189927	0.439425572394417	13	0.553722426699609	0	0.74532198655141	0	1.40031997311386	1.38810326100159	3.04028067871226	0.6923364242693	1	0	1	0	2	2	5	2
+Jmjd4	-2.41789002440107	0.0958351978201194	4.02480338387042	0.0448358456813521	0.0891249127568342	0.605193947511051	15	0.74532198655141	0.594565316270102	0	0	1.2161122714849	0.34616821213465	3.87605698689727	1.22770638665139	1	1	0	0	2	1	7	3
+2210408F21Rik	-1.26304791817536	4.10038284753412	3.96292511834473	0.0465128114536258	0.0922975962931948	0.336426107903926	234	2.0770092728079	9.96700368059297	7.36623831990836	17.8877276772338	3.56739189762061	29.406719435391	45.8074076130523	32.8350313300924	6	18	18	24	6	42	66	54
+Mir669e	-2.28034728403021	-0.160323500189221	3.92236640509021	0.0476477657125764	0.0943855914549474	0.455750759055477	13	0	0.553722426699609	0.409235462217131	0	1.1891306325402	0.700159986556928	2.77620652200317	2.43222454296981	0	1	1	0	2	1	4	4
+Gm2061	-4.13493254556791	-1.72179028228564	3.90530038748977	0.0481340219810965	0.0951835685969343	1.37111610862966	5	0	0	0	0	3.04028067871226	0	0	0	0	0	0	0	5	0	0	0
+9430008C03Rik	-2.12772390645449	0.842783391213854	3.85506279511582	0.0495960702426196	0.0979050452367284	0.648527763363307	26	0.818470924434263	0	0	1.40031997311386	5.55241304400634	0.608056135742452	3.4616821213465	1.66116728009883	2	0	0	2	8	1	10	3
+Vps39	-3.03128296886564	-0.257578396449929	3.84149362660251	0.0499989621179506	0.098529906349882	1.09802563648622	12	0.594565316270102	0	0	0	1.03850463640395	0	3.27388369773705	0	1	0	0	0	3	0	8	0
+Mir33	-1.21540037378028	2.94277914169533	3.83055886500294	0.0503261498546497	0.0988978523752143	0.282927679475003	118	2.37826126508041	5.60127989245543	11.7988777185135	3.04028067871226	12.4620556368474	8.85955882719375	4.09235462217131	16.397083704131	4	8	17	5	36	16	10	22
+Mir351	0.655237503083963	8.65982871998017	3.82946418155201	0.0503590291235754	0.0988978523752143	0.105361004391824	5692	588.555782664672	417.734565255064	356.899426710824	413.630652744608	298.332651956289	440.485294051883	186.693509308812	521.619189984912	848	687	1031	747	729	591	314	745
+1700003F17Rik	2.16905764453752	0.171014559154538	3.82423112893146	0.0505165199946117	0.0990366826698486	0.559575891849877	16	1.1891306325402	0.700159986556928	2.77620652200317	3.64833681445471	0.34616821213465	0	0.818470924434263	0	2	1	4	6	1	0	2	0
+4930512B01Rik	-2.68272428730049	-0.761886192595232	3.80830661656567	0.0509989857063868	0.0996506563679103	0.573119791174756	9	0	0	0.409235462217131	0	2.37826126508041	0.700159986556928	2.08215489150238	0	0	0	1	0	4	1	3	0
+Mir19b-2	-2.20617041123567	-0.208696484752137	3.8081298817669	0.0510043675011916	0.0996506563679103	0.411624695815593	13	0	0.608056135742452	0.34616821213465	0	2.04617731108566	0.74532198655141	1.1891306325402	2.10047995967078	0	1	1	0	5	1	2	3
+Snord15a	-1.43564160685077	1.92522862532201	3.80193978905936	0.0511932428958397	0.0997644954374314	0.337515882032742	57	2.37826126508041	2.10047995967078	3.47025815250396	1.2161122714849	6.92336424269299	5.53722426699609	3.68311915995418	2.98128794620564	4	3	5	2	20	10	9	4
+Mir3076	2.12329578946456	0.0922806967810566	3.80049262917723	0.0512375059827649	0.0997644954374314	0.529262894842634	17	0.818470924434263	1.49064397310282	5.35108784643091	0.700159986556928	1.38810326100159	0	0	0.553722426699609	2	2	9	1	2	0	0	1
+Rpl22	-1.89072184240997	1.38231580560322	3.75059054350973	0.0527888578029051	0.102610028540229	0.619175478195319	40	1.38810326100159	0	1.3846728485386	1.10744485339922	5.72929647103984	0	8.32391442778142	2.80063994622771	2	0	4	2	14	0	14	4
+A330035P11Rik	-2.99091010419799	-0.287427490768855	3.72293968733688	0.0536698023412327	0.104144973590725	1.08922432320619	11	0	0.74532198655141	0	0	0	3.64833681445471	1.3846728485386	0	0	1	0	0	0	6	4	0
+Mir29a	0.63714717394328	11.1270907250767	3.69749163956147	0.0544943333872423	0.105565423420787	0.104398005624803	33081	2934.3326610529	2052.43947176439	5870.14132729329	2659.60584807904	2982.51534581673	1208.12706034993	805.666130847932	1483.88778599932	3937	3452	8384	3832	4905	3490	1455	3626
+Mir337	1.49882033620899	1.77170780175397	3.67166823928597	0.0553447631564869	0.107031143663647	0.396301675969854	50	3.4616821213465	3.87605698689727	5.72929647103984	3.72660993275705	4.16195721389071	3.50079993278464	0	1.2161122714849	10	7	14	5	7	5	0	2
+Mir200c	-1.71799818717548	1.39949364604321	3.66064652283256	0.055712010581618	0.107559059346237	0.508889006027724	43	0.594565316270102	0.700159986556928	3.47025815250396	1.2161122714849	8.30803709123159	1.66116728009883	0.818470924434263	3.72660993275705	1	1	5	2	24	3	2	5
+Ranbp3	-2.16696680107855	0.489292961488543	3.65065361045232	0.0560472123579359	0.107873579008201	0.643437542338229	21	0	1.49064397310282	0	0.700159986556928	6.94051630500793	1.2161122714849	1.73084106067325	0.553722426699609	0	2	0	1	10	2	5	1
+Ano4	2.4069743314865	-0.210975829614415	3.65015459429835	0.0560640073197752	0.107873579008201	0.697604937791774	12	4.20095991934157	0	1.2161122714849	0.6923364242693	0.553722426699609	0	0.74532198655141	0	6	0	2	2	1	0	1	0
+Gm7854	-1.99372092377354	0.639537659887419	3.63728634104245	0.0564989525999933	0.108311102636843	0.556005142097944	23	0.694051630500793	1.2161122714849	0.34616821213465	0	3.27388369773705	5.21725390585987	0.594565316270102	2.10047995967078	1	2	1	0	8	7	1	3
+Snord53	-0.932418473952378	4.23833339925168	3.63545890506229	0.0565610094593012	0.108311102636843	0.195680434982763	290	15.6517617175796	6.54021847897112	39.9091192337449	8.32861956600951	39.5236488232594	17.3084106067325	12.735615814091	20.8710085730737	21	11	57	12	65	50	23	51
+Ldha	-1.60163984560335	1.55313858832621	3.6350125986827	0.0565761763116198	0.108311102636843	0.43166174827261	43	0.74532198655141	2.37826126508041	2.80063994622771	0.694051630500793	5.47250522168207	0.6923364242693	6.64466912039531	4.09235462217131	1	4	4	1	9	2	12	10
+A630072M18Rik	-1.88945230772215	0.436585339437612	3.62917878438678	0.0567748245603485	0.108509338062576	0.434564141693086	20	0.409235462217131	0	1.1891306325402	0.700159986556928	3.47025815250396	3.64833681445471	0.6923364242693	1.66116728009883	1	0	2	1	5	6	2	3
+Mir1247	-0.89692435206613	4.40638940271252	3.59190694579669	0.058061581207386	0.110734236218292	0.182413054530646	300	18.7393940235214	9.12084203613678	10.0388781519048	15.5042279475891	15.550947564251	40.2473872737761	24.9717432833443	46.9107190993142	27	15	29	28	38	54	42	67
+Mir495	2.45884043098718	-1.06357895738017	3.58986264781871	0.058133047760523	0.110734236218292	0.305999780417887	7	0.694051630500793	1.2161122714849	0.6923364242693	0.553722426699609	0.409235462217131	0	0	0	1	2	2	1	1	0	0	0
+9330162012Rik	-2.64597509525281	-0.607729453237061	3.58319230551558	0.0583668867471177	0.110969643788492	0.664413115690481	10	0	0	0	0.553722426699609	2.45541277330279	0.74532198655141	1.1891306325402	0	0	0	0	1	6	1	2	0
+Nt5c2	-2.03753840123603	0.795724254523336	3.58079577753282	0.058451144537146	0.110969643788492	0.68035109259016	26	0.34616821213465	0	1.22770638665139	0.74532198655141	4.16195721389071	2.10047995967078	7.63456793550872	0	1	0	3	1	7	3	11	0
+Snora28	-1.31393833799057	2.25008870890569	3.57548633864738	0.0586382759659248	0.111139988167974	0.317161221160946	71	2.23596595965423	2.97282658135051	3.50079993278464	3.47025815250396	15.2014033935613	2.42317748494255	7.19839154709492	3.27388369773705	3	5	5	5	25	7	13	8
+2010310C07Rik	-2.51820245030896	-0.741009758359549	3.54930567954037	0.0595703719868758	0.112719393759578	0.479899464957842	9	0.553722426699609	0	0	0	3.50079993278464	0.694051630500793	0.608056135742452	0.34616821213465	1	0	0	0	5	1	1	1
+Mir1981	-0.88444139689906	4.30993313715607	3.53328246575625	0.0601485992368908	0.113491591836561	0.178933640502486	295	20.1236936368881	10.7021756928618	22.4051195698217	12.4929293490143	49.2525469951386	14.5390649096553	12.735615814091	22.0987149597251	27	18	32	18	81	42	23	54
+Mirlet7c-1	0.690105523512962	5.16296749398074	3.53062710619878	0.060244998043007	0.113491591836561	0.112603455137868	536	47.8895625045547	31.010862922865	52.2714000323321	30.4547334684785	30.2834242040677	30.5582014486078	26.7554392321546	35.0079993278464	69	51	151	55	74	41	45	50
+Mir3069	-2.53814811054941	-0.725659824554044	3.52975026615391	0.0602768664793654	0.113491591836561	0.514943180488464	9	0.553722426699609	0	0	0	2.80063994622771	0	1.2161122714849	0.6923364242693	1	0	0	0	4	0	2	2
+2010009K17Rik	-2.21950245954869	0.524254473263017	3.52616406236556	0.060407392566746	0.113549975154295	0.744543426984969	21	1.2161122714849	0.34616821213465	0	0	5.21725390585987	0	5.60127989245543	2.08215489150238	2	1	0	0	7	0	8	3
+5730422E09Rik	-2.54582237136323	-0.888666978878022	3.51713332664369	0.0607374158297288	0.113708546167576	0.484739999116974	8	0	0	0.700159986556928	0	1.2161122714849	0.6923364242693	1.66116728009883	0	0	0	1	0	2	2	3	0
+Gm19461	-2.8705390986764	-0.383947004385017	3.51595719970958	0.0607805377473326	0.113708546167576	1.03656159842096	11	0	0.608056135742452	0	0	1.22770638665139	0	4.16195721389071	0	0	1	0	0	3	0	7	0
+3110045C21Rik	-1.97190522394957	0.405542127312951	3.51567957464902	0.0607907214392827	0.113708546167576	0.553097975674567	21	0	0	1.7836959488103	0.700159986556928	6.94051630500793	1.82416840722736	0.6923364242693	1.10744485339922	0	0	3	1	10	3	2	2
+Mir22	0.609545421886264	16.8216105840893	3.51260052536122	0.060903787284987	0.113733586402897	0.100887934426274	1751447	149681.523915147	93663.0634026616	348267.979233255	129625.246822111	161030.290316402	61621.0572738769	39539.657323339	79663.8212524979	200828	157532	497412	186766	264828	178009	71407	194665
+Mir22hg	0.609472524033361	16.8216496698065	3.49984368361129	0.0613746219193982	0.114425561454303	0.101231644857872	1751491	122115.305685021	54533.609298632	275429.840876786	76431.2703364448	197385.85766437	105848.084994301	50004.0259199227	135110.336857959	200829	157535	497415	186766	264833	178026	71418	194669
+Luc7l	-2.09257958524839	1.27484352590251	3.49552478494674	0.061534902332253	0.11453723256297	0.830686480363091	36	0	2.80063994622771	1.38810326100159	0	4.1540185456158	0	6.5477673954741	1.49064397310282	0	4	2	0	12	0	16	2
+Gm10804	-2.25060893898656	-0.332099810601697	3.48674608340714	0.0618620676120201	0.114958663103119	0.548108804063087	12	0	0	1.2161122714849	0	1.66116728009883	0.409235462217131	3.72660993275705	0.594565316270102	0	0	2	0	3	1	5	1
+Rad51d	-1.44278256223507	2.59483186874556	3.4730887267858	0.0623747392855082	0.115667025594559	0.453736577901523	92	2.7693456970772	2.21488970679844	4.91082554660558	0	16.6478288555628	5.60127989245543	19.4334456540222	2.43222454296981	8	4	12	0	28	8	28	4
+Jpx	-2.33705047050853	-0.290514349744684	3.4711998008099	0.0624460015479826	0.115667025594559	0.659407227072236	12	0	0	0.818470924434263	0	0.594565316270102	1.40031997311386	4.16430978300476	0.608056135742452	0	0	2	0	1	2	6	1
+Mir1199	2.11570209672783	-0.43266165312206	3.45826800316053	0.0629362068432382	0.116386081050462	0.393501459927567	11	1.7836959488103	0.700159986556928	2.77620652200317	0.608056135742452	0.34616821213465	0.553722426699609	0	0	3	1	4	1	1	1	0	0
+Snord90	-1.30329501783743	3.39814799847389	3.44823177211941	0.0633194759918496	0.116905375577185	0.409024493235669	171	1.49064397310282	1.7836959488103	32.2073593816187	3.47025815250396	26.1464138369254	4.8463549698851	26.5786764815813	4.09235462217131	2	3	46	5	43	14	48	10
+2010308F09Rik	2.42668127085034	-1.04780125606612	3.44158448924549	0.0635746952691771	0.117186958484864	0.331282273998265	7	0.594565316270102	1.40031997311386	1.38810326100159	0.608056135742452	0	0	0	0.74532198655141	1	2	2	1	0	0	0	1
+Malat1	-1.09576602890769	5.27487661170378	3.43231468694815	0.063932437779261	0.117656308880866	0.311503478208475	560	24.9858586980285	24.9303015654405	8.65420530336624	27.6861213349805	68.3423221902609	6.70789787896269	119.50762857029	21.7049595832648	36	41	25	50	167	9	201	31
+Mir142	-0.62116673923136	10.3765584143049	3.38640817666575	0.0657360035415822	0.120780644188318	0.108200068658509	19662	1122.53931711795	831.089904043074	1786.48889690904	958.904526065846	1505.48555457359	1268.02435714211	621.628667107822	3188.48745846693	1888	1187	2574	1577	4349	2290	1519	4278
+1700008J07Rik	-2.52530504224124	-0.730002050378442	3.37915429532289	0.0660259263517997	0.121118298982964	0.570492084174377	9	0	0	0	0.694051630500793	2.43222454296981	0.34616821213465	0	1.22770638665139	0	0	0	1	4	1	0	3
+4930455H04Rik	-2.5659263550046	-0.688326174280802	3.36970023449527	0.0664058371192177	0.121619679218343	0.630026331086356	9	0	0.608056135742452	0	0	1.22770638665139	0.74532198655141	2.37826126508041	0	0	1	0	0	3	1	4	0
+Crebzf	-1.68292820555855	1.67619423047852	3.35201991191338	0.0671226011017612	0.122735397206906	0.559063797780322	48	2.23596595965423	0	0	4.16430978300476	12.7691788505915	1.03850463640395	3.32233456019766	3.68311915995418	3	0	0	6	21	3	6	9
+Mir152	0.563627948522561	7.31984599834385	3.34691584201567	0.0673310556052307	0.122919575112909	0.0870806466469695	2398	190.05710657061	128.426108314342	469.107190993142	190.170146757217	206.739086152434	78.2340159424308	114.06681990012	86.3486825278147	255	216	670	274	340	226	206	211
+Oxsr1	-2.05135932445349	0.685096995707251	3.34113466854414	0.0675679996058554	0.123155091933356	0.713403009451677	24	0.74532198655141	0.594565316270102	0.700159986556928	0.694051630500793	5.47250522168207	0	5.53722426699609	0.409235462217131	1	1	1	1	9	0	10	1
+Dancr	-1.57671143435255	1.63046042462881	3.31570392317169	0.0686209273006813	0.124874765630107	0.491834284804082	48	0	1.38810326100159	3.04028067871226	1.3846728485386	11.0744485339922	0.818470924434263	8.94386383861692	1.7836959488103	0	2	5	4	20	2	12	3
+Mir540	1.77651384021252	0.74839767223793	3.29165730133653	0.0696327045290126	0.126514197241407	0.538191261791522	25	0.818470924434263	2.98128794620564	4.75652253016081	3.50079993278464	2.77620652200317	1.2161122714849	0	0	2	4	8	5	4	2	0	0
+Mir673	1.28585937670247	1.84000624125486	3.26807896941518	0.0706402980932199	0.128140826906779	0.310632295375564	51	4.86444908593961	2.0770092728079	6.0909466936957	4.09235462217131	4.47193191930846	1.7836959488103	2.80063994622771	2.08215489150238	8	6	11	10	6	3	4	3
+Mir532	-0.561654226718209	7.68195956944474	3.25572412187793	0.0711744938324325	0.128904916607628	0.0896099916195964	3010	158.936316948423	163.102133167686	263.896362912224	89.3113987307396	338.878125140161	135.866173456088	393.530008899145	228.313081447719	227	235	434	258	612	332	528	384
+Mir188	1.49202480594582	1.56681665018515	3.24238617715539	0.071756059292067	0.129752240336368	0.436167040424949	41	4.20095991934157	5.55241304400634	4.25639295019716	2.7693456970772	2.76861213349805	2.04617731108566	0	1.1891306325402	6	8	7	8	5	5	0	2
+Snapc4	-2.8623553567167	-0.689987490162066	3.20944833373627	0.0732141647944871	0.132179370301439	1.17510679339557	9	0	0	0.74532198655141	0	0.700159986556928	0	4.25639295019716	0	0	0	1	0	1	0	7	0
+Snora26	-2.07861823420208	-0.191461579368179	3.20668914357376	0.0733377443579351	0.132193311709959	0.474540677447955	13	0	0.608056135742452	0	0.553722426699609	2.45541277330279	1.49064397310282	0.594565316270102	1.40031997311386	0	1	0	1	6	2	1	2
+1700028E10Rik	-2.0652688823537	-0.459675319447973	3.17153262105053	0.0749321003008918	0.134678761520125	0.421700227234798	11	0	0	0.6923364242693	0	1.22770638665139	2.23596595965423	0.594565316270102	1.40031997311386	0	0	2	0	3	3	1	2
+1110020A21Rik	-2.27827625707394	-0.33978533999392	3.17108398499719	0.0749526849827162	0.134678761520125	0.71797031550863	12	0	0	1.2161122714849	0	1.10744485339922	0	1.49064397310282	3.56739189762061	0	0	2	0	2	0	2	6
+Gm9895	-2.45189421579403	-0.825725802697013	3.16528090914814	0.0752194945742441	0.134945665580523	0.537359944368136	8	0.409235462217131	0	0	0	0.694051630500793	0.608056135742452	1.3846728485386	0.553722426699609	1	0	0	0	1	1	4	1
+0610043K17Rik	-1.81060761546092	1.0863567096307	3.15350479551773	0.0757640699626319	0.135709268174824	0.659419741220838	32	1.38810326100159	0	1.3846728485386	0.553722426699609	3.68311915995418	2.98128794620564	7.13478379524122	0	2	0	4	1	9	4	12	0
+Mir653	-1.97416223342066	0.0433819061285546	3.12495346133814	0.0771020732526597	0.137889444484772	0.544419097202906	15	0	0	1.1891306325402	0.700159986556928	1.38810326100159	3.64833681445471	1.03850463640395	0.553722426699609	0	0	2	1	2	6	3	1
+Mir191	0.586194340163979	13.6434324584366	3.11670163726762	0.0774934965300888	0.138372581441051	0.105174623742065	174890	15784.5200163387	16364.1392058085	15602.9747052883	15473.8125423739	7868.40346182059	10369.0061623769	5358.93837773334	16762.2914775412	26548	23372	22481	25448	22730	18726	13095	22490
+Gm16833	-1.89280142058388	-0.0020768508706695	3.0980004600763	0.0783885196133484	0.139752032623173	0.460488755172295	15	0	0	1.49064397310282	0.594565316270102	2.80063994622771	0.694051630500793	2.43222454296981	1.03850463640395	0	0	2	1	4	1	4	3
+Runx2	1.80039834342879	0.341363637031057	3.06313436970726	0.0800870450390827	0.142557438985325	0.496009189727262	18	1.82416840722736	0.6923364242693	2.76861213349805	1.63694184886853	0	1.7836959488103	0	0.694051630500793	3	2	5	4	0	3	0	1
+Rn45s	-0.835838763570733	14.5990151568484	3.05689056716824	0.0803953813777779	0.142883380299135	0.216576752166253	360404	10403.0471110705	18605.0735371069	5019.68217955533	22507.2333498795	75088.8429223837	14442.2000427098	60567.8036389127	12223.1444406948	30052	33600	12266	30198	126292	20627	87267	20102
+Mir146	0.5707797303988	9.93251237368074	3.04686071067934	0.0808933659562148	0.143544837567715	0.101486949581607	13917	1331.00413444472	1175.72346206834	1553.58342682196	596.793997720136	1177.76760159007	563.51723147299	582.096471496651	1045.24582600284	1901	1694	2555	1724	2127	1377	781	1758
+2410006H16Rik	-0.546758920728247	7.61134150410212	3.03271437920691	0.0816013974840486	0.144576389020651	0.0911632082178294	2927	154.735357029081	138.116274469658	293.083057427862	82.3880344880466	363.241911914944	169.014245895675	196.765004449572	269.932653586626	221	199	482	238	656	413	264	454
+Zc3h14	-1.96711850910046	0.305655744487762	3.02102611082764	0.0821914464385149	0.145396031606737	0.626039140638942	19	0.700159986556928	0	0	0.6923364242693	6.0909466936957	0.409235462217131	1.49064397310282	1.1891306325402	1	0	0	2	11	1	2	2
+4930413G21Rik	-2.19357032066283	-0.261380445357714	3.00822349356958	0.0828430391442843	0.146206439230094	0.683620747047905	12	0.694051630500793	0	0.34616821213465	0	0.818470924434263	4.47193191930846	1.1891306325402	0	1	0	1	0	2	6	2	0
+Mir26b	-0.527260284044026	11.6000564587937	3.0069952715067	0.082905842403042	0.146206439230094	0.0881603427940385	46666	2183.52958345114	1080.04482186011	4658.46677582381	1427.41329221335	7330.24173773312	3975.85826989817	3161.22233930453	4870.16029122406	3591	3120	8413	3488	9835	6687	4515	7017
+Gm6981	-2.3645602923077	-0.884754587109077	2.97679215328766	0.0844665285358673	0.148718105213178	0.51675161730589	8	0.594565316270102	0	0	0	1.03850463640395	0	0.409235462217131	2.23596595965423	1	0	0	0	3	0	1	3
+Snora68	-0.927736627796706	3.79246203892748	2.97441404338721	0.0845907539731396	0.148718105213178	0.233183429278086	213	5.53722426699609	2.04617731108566	35.7754553544677	8.32391442778142	25.9059195026063	15.9631875015182	23.1061331582132	13.1543920611167	10	5	48	14	37	23	38	38
+4932702P03Rik	-2.16634093570703	0.475371932662161	2.96025080712409	0.0853347031091169	0.149515266933007	0.911993701210207	20	2.08215489150238	0	0	0	2.45541277330279	1.49064397310282	5.35108784643091	0	3	0	0	0	6	2	9	0
+4930599N23Rik	-2.32474144145299	0.640880747954899	2.958445700524	0.0854300267459888	0.149515266933007	1.13881222532462	22	0	0.608056135742452	0	1.10744485339922	2.04617731108566	0	8.32391442778142	0	0	1	0	2	5	0	14	0
+Scarna3a	-0.556657124909703	6.89112916872821	2.95830814643962	0.0854372953902896	0.149515266933007	0.0950603281358328	1742	51.2328953959282	60.3557445102574	122.770638665139	102.109112157543	161.721766025468	137.231357365158	233.895399478767	147.757640985416	148	109	300	137	272	196	337	243
+Mir1843b	-0.553619961487839	6.889326401022	2.93592478557493	0.0866290397111907	0.151368658974684	0.0947279325689032	1740	81.9509191515422	44.6066653816673	223.596595965423	81.4554483290039	190.443516343484	136.034119578155	203.698805473721	84.1188755487199	148	109	300	137	272	196	335	243
+Ankrd10	-1.93869084472078	0.275352781752103	2.93242419423319	0.0868170409578833	0.151465204484625	0.617680667211812	18	0	0	0	1.66116728009883	3.27388369773705	2.23596595965423	1.1891306325402	1.40031997311386	0	0	0	3	8	3	2	2
+2810008D09Rik	-1.18917296277524	3.14191760799627	2.90575186109813	0.0882640862411791	0.153754690688833	0.386794352408957	137	3.11551390921185	2.21488970679844	5.32006100882271	8.19854185206551	34.4847883436659	2.80063994622771	21.5156005455246	4.25639295019716	9	4	13	11	58	4	31	7
+A130049A11Rik	-2.59420383302972	-0.901531387169304	2.90187001237783	0.088476856102347	0.153890385385332	0.923845854093179	8	0	0	0.694051630500793	0	0.6923364242693	0	2.04617731108566	0	0	0	1	0	2	0	5	0
+Ppp4r1l-ps	-2.5944504993773	-0.901578647062624	2.89920937941809	0.0886230103693417	0.153909976912357	0.926252337298252	8	0	0	0.700159986556928	0	1.2161122714849	0	2.76861213349805	0	0	0	1	0	2	0	5	0
+Mir103-1	-1.87047425322774	-0.13489458486075	2.8919790146591	0.0890215133901999	0.154113058627971	0.491992063614291	14	0	0	1.7836959488103	0	2.77620652200317	1.82416840722736	1.03850463640395	0.553722426699609	0	0	3	0	4	3	3	1
+Rmst	2.24526799659314	-0.375190715629596	2.8901558399611	0.0891223044370956	0.154113058627971	0.794507100950876	10	0.74532198655141	2.97282658135051	0	1.38810326100159	0.608056135742452	0	0.553722426699609	0	1	5	0	2	1	0	1	0
+Chpt1	-1.69941109508001	1.97070748039007	2.88974286489544	0.0891451522300272	0.154113058627971	0.758993028997224	61	0.34616821213465	1.66116728009883	3.27388369773705	1.49064397310282	13.0804369579422	0	17.3512907625198	0	1	3	8	2	22	0	25	0
+Mir139	0.563951324033535	5.64085900717631	2.8795258215151	0.0897124361840326	0.15485913719513	0.0941617546314625	751	55.3126389379973	47.8895625045547	131.948181456112	27.693456970772	57.0334099500598	27.0095405063307	55.1538270048043	37.4576149250164	79	69	217	80	103	66	74	63
+Snora20	-1.80581297997876	0.254416491380607	2.83866433913221	0.0920206757745447	0.158603611871232	0.566870081355952	18	0.409235462217131	0	1.7836959488103	0	2.77620652200317	0.608056135742452	2.42317748494255	1.10744485339922	1	0	3	0	4	1	7	2
+2900060B14Rik	0.941874568760492	3.61545091918903	2.83553788409779	0.0921999245753864	0.158672871705152	0.249864503235054	185	13.4157957579254	8.32391442778142	39.9091192337449	21.5156005455246	16.4175156650462	7.26953245482764	3.32233456019766	4.50159008438844	18	14	57	31	27	21	6	11
+2610203C22Rik	-2.28392650180438	0.0261007873558907	2.81438509387521	0.0934226898239557	0.160535073929418	0.969748430596533	15	0.409235462217131	0.74532198655141	0	0	4.16430978300476	0	2.42317748494255	0	1	1	0	0	6	0	7	0
+Mir431	1.57857124648879	1.21921611917511	2.79206552127052	0.0947320496685324	0.162540253641798	0.595605818890505	36	3.32233456019766	2.04617731108566	8.94386383861692	1.7836959488103	6.30143987901235	0.694051630500793	0	0	6	5	12	3	9	1	0	0
+4930471I20Rik	-2.30192936877694	-0.171458220975617	2.77811573878341	0.0955605352269653	0.163715571612564	0.986400931460124	13	0	0	0.409235462217131	0.74532198655141	1.7836959488103	0	5.55241304400634	0	0	0	1	1	3	0	8	0
+0610039K10Rik	-1.79498808938954	0.469692265895109	2.76999026464054	0.0960467454387993	0.164128857281082	0.609968583744063	21	0	0	0.694051630500793	1.82416840722736	3.11551390921185	1.66116728009883	0.409235462217131	2.98128794620564	0	0	1	3	9	3	1	4
+R74862	-1.78286947890056	0.0170690084317789	2.76927852598867	0.0960894624572852	0.164128857281082	0.453354405999975	15	0	0	0.34616821213465	1.10744485339922	2.04617731108566	1.49064397310282	1.7836959488103	1.40031997311386	0	0	1	2	5	2	3	2
+Sfpq	-1.64379873947779	1.53849169622524	2.75990767769319	0.0966538149389088	0.164846043117033	0.671204647153191	42	1.7836959488103	2.10047995967078	1.38810326100159	0.608056135742452	3.80785033348115	0	8.18470924434263	1.49064397310282	3	3	2	1	11	0	20	2
+Rcbtb2	-1.65913388185983	0.991558974408157	2.75032485688196	0.0972346709029742	0.16558919328402	0.591821467535648	29	0	1.10744485339922	0.409235462217131	2.23596595965423	5.35108784643091	0.700159986556928	6.94051630500793	1.82416840722736	0	2	1	3	9	1	10	3
+Afg3l1	-1.70659202444962	0.854225396766524	2.7459764382197	0.097499501402476	0.165792743815537	0.634619977147559	27	0	1.1891306325402	2.10047995967078	0.694051630500793	4.25639295019716	0	5.53722426699609	1.63694184886853	0	2	3	1	7	0	10	4
+4930577N17Rik	-2.26487237731461	-1.12211900652471	2.71285567435973	0.0995426547834168	0.168993211051236	0.465405157922419	7	0	0	0.594565316270102	0	2.08215489150238	0.608056135742452	0	1.10744485339922	0	0	1	0	3	1	0	2
+4930515G01Rik	-2.27032922367157	-1.12004208299167	2.71069024668339	0.0996778536700104	0.168993211051236	0.475247994911701	7	0	0	0.608056135742452	0	1.66116728009883	0	1.49064397310282	0.594565316270102	0	0	1	0	3	0	2	1
+Mir1955	-2.17408702613025	-1.07258549903328	2.6919798582594	0.100854428615549	0.170514261280368	0.34050564311728	7	0.74532198655141	0	0	0	1.82416840722736	0.34616821213465	0.553722426699609	0.409235462217131	1	0	0	0	3	1	1	1
+Dnm1l	-2.05326425210773	0.809050134389066	2.6916721358037	0.100873905665423	0.170514261280368	1.05132601594413	26	0	1.40031997311386	2.08215489150238	0	2.0770092728079	0	6.13853193325697	0	0	2	3	0	6	0	15	0
+Gm16861	-1.81138773166603	0.0352176091102867	2.67940880880725	0.101653459818565	0.171577807178969	0.524952921218063	15	0.74532198655141	0	0.700159986556928	0.694051630500793	2.43222454296981	0.34616821213465	3.32233456019766	0.409235462217131	1	0	1	1	4	1	6	1
+Mir411	0.636446808730339	7.15665747069891	2.65511811098465	0.103217089820075	0.173959674275783	0.14159024870082	2196	143.53279724417	156.855668493179	364.225625309729	87.2343894579317	284.613327323599	82.6655633678605	58.8804369375614	70.7532726361421	205	226	599	252	514	202	79	119
+Dlg1	-1.40810593174088	1.59017739841537	2.61669514038752	0.105744471146076	0.177732047874824	0.505998172459558	45	0.6923364242693	1.10744485339922	2.45541277330279	1.49064397310282	6.54021847897112	0.700159986556928	12.4929293490143	1.82416840722736	2	2	6	2	11	1	18	3
+D130009I18Rik	-2.0187475113017	-0.082035836636512	2.6163583191924	0.105766924195447	0.177732047874824	0.833114006854998	15	0	0	1.03850463640395	0	2.45541277330279	3.72660993275705	0.594565316270102	0	0	0	3	0	6	5	1	0
+1110054M08Rik	-1.87542361955477	0.0936957172998474	2.59539737265037	0.107174556211294	0.179832600936892	0.660615985328115	16	0.608056135742452	0	0.553722426699609	0.409235462217131	4.47193191930846	0	4.20095991934157	0.694051630500793	1	0	1	1	6	0	6	1
+Mir5128	-1.85501263716432	0.396993446538296	2.59009971500331	0.107533565631489	0.180170041682127	0.753196269796778	20	0	0	1.40031997311386	1.38810326100159	4.25639295019716	0	4.42977941359688	0.409235462217131	0	0	2	2	7	0	8	1
+9330175M20Rik	1.84328988974851	-0.684609520356453	2.58030052193028	0.108201117766631	0.181022691160889	0.333995814209591	9	1.49064397310282	1.1891306325402	1.40031997311386	0.694051630500793	0.608056135742452	0	0	0.409235462217131	2	2	2	1	1	0	0	1
+Mir339	-0.581232897852849	5.31251654804454	2.56028969456141	0.109578502195027	0.183058669113508	0.111413713845571	599	15.550947564251	27.5769135024022	62.4293582083607	36.4083193009603	99.9434347921142	52.9008838095933	24.5779430615601	35.9919577354746	38	37	105	52	144	87	71	65
+Rnu73b	-1.30715431594542	1.54023730915002	2.5449412389762	0.110648027427511	0.184575145167822	0.416283885552946	44	1.10744485339922	1.22770638665139	2.23596595965423	1.7836959488103	12.6028797580247	1.38810326100159	4.86444908593961	1.73084106067325	2	3	3	3	18	2	8	5
+1500011K16Rik	-2.44477877849851	-1.04999173389295	2.52063479978018	0.112365342920624	0.187166213536397	0.922990651986708	7	0	0	0.34616821213465	0	0	0	2.37826126508041	1.40031997311386	0	0	1	0	0	0	4	2
+Kat5	-2.06663127669773	-0.189588133971375	2.51404645283263	0.112835867601293	0.187675983867457	0.781443612530342	12	0	0.694051630500793	0	0.34616821213465	0.553722426699609	1.63694184886853	3.72660993275705	0	0	1	0	1	1	4	5	0
+9530026P05Rik	1.64356923703615	0.54790279121103	2.50755199185487	0.113301812428464	0.188176663727623	0.583510200246358	20	2.08215489150238	2.43222454296981	1.3846728485386	2.21488970679844	0	0.74532198655141	2.37826126508041	0	3	4	4	4	0	1	4	0
+BC090627	1.25248432027161	1.77408019310546	2.49880717121329	0.113932562366748	0.188745903156683	0.419415630888235	47	1.63694184886853	8.94386383861692	3.56739189762061	6.30143987901235	4.85836141350555	0.608056135742452	0.6923364242693	3.32233456019766	4	12	6	9	7	1	2	6
+Cep57	-2.46722583600765	-0.784380325003353	2.49821524958084	0.113975396384711	0.188745903156683	1.04274664639639	8	0.553722426699609	0	0	0	0	0	3.04028067871226	0.6923364242693	1	0	0	0	0	0	5	2
+Mir29b-2	1.30899912808112	1.42150410550797	2.49032016025445	0.114548420468998	0.189419924282792	0.437871544069771	41	2.10047995967078	3.47025815250396	9.12084203613678	2.0770092728079	2.76861213349805	0	1.49064397310282	2.97282658135051	3	5	15	6	5	0	2	5
+Snhg6	-0.514505510013689	6.93280384212585	2.4763014027307	0.115573746552834	0.190731659755944	0.0972226574445347	1762	86.2119708591647	96.6220781448561	132.563861425651	116.138721926808	135.005602732513	130.678492701108	104.764278327586	160.244227108553	145	138	191	191	390	236	256	215
+9430091E24Rik	-1.44502141414246	1.54308552766239	2.47491096362017	0.115675993471615	0.190731659755944	0.562785698427756	42	1.10744485339922	0.818470924434263	1.49064397310282	2.37826126508041	7.00159986556928	0	9.72889817187923	2.0770092728079	2	2	2	4	10	0	16	6
+1810062O18Rik	-2.23597145760443	-1.01516117709593	2.46991383953216	0.116044285629445	0.191062813713127	0.594087095383153	7	0.34616821213465	0	0	0	0.594565316270102	1.40031997311386	2.08215489150238	0	1	0	0	0	1	2	3	0
+Snord87	-0.512780624035546	6.93050794589746	2.46222476957477	0.116613507673046	0.191723360597904	0.0971145746784507	1759	88.1681396826555	47.7712132745817	105.207261072926	78.1639732834721	290.67557475505	139.722849323474	178.540796572017	149.22110055767	145	138	190	191	390	235	255	215
+9330179D12Rik	1.32807407979619	1.55993572794472	2.4552866999784	0.117129780781099	0.192205234250727	0.466439067678837	40	4.20095991934157	4.16430978300476	4.25639295019716	3.11551390921185	0	1.22770638665139	2.23596595965423	3.56739189762061	6	6	7	9	0	3	3	6
+Flcn	-1.69566681237587	0.535039416014445	2.45314978559534	0.11728930033472	0.192205234250727	0.67404503956276	22	0	0.34616821213465	1.66116728009883	0.409235462217131	5.21725390585987	1.1891306325402	5.60127989245543	0	0	1	3	1	7	2	8	0
+0610009L18Rik	1.58608108196201	0.372203685365149	2.45150880460495	0.117411961676386	0.192205234250727	0.541718588209175	21	1.40031997311386	1.38810326100159	6.68861749316697	0.34616821213465	1.66116728009883	0	0.74532198655141	0.594565316270102	2	2	11	1	3	0	1	1
+Gabpb1	-2.21446880991551	-1.02828360655136	2.44120077582773	0.118185724551529	0.193194715921625	0.580001149839739	7	0	0	0	0.34616821213465	0.553722426699609	0	2.23596595965423	1.1891306325402	0	0	0	1	1	0	3	2
+Clk1	-1.50255113323922	1.80316637211895	2.43735377159324	0.118475939628736	0.193392055960498	0.690768297461704	54	3.64833681445471	0	4.42977941359688	0	11.9251517848226	0	12.6028797580247	4.16430978300476	6	0	8	0	16	0	18	6
+Wdr13	1.66976242845857	-0.285618792288445	2.42653830982369	0.119296081575707	0.194452612968402	0.402030823193521	12	0.6923364242693	0.553722426699609	1.22770638665139	2.23596595965423	1.1891306325402	0	0.694051630500793	0	2	1	3	3	2	0	1	0
+Mir363	-2.04530975161902	-0.169477227326255	2.41704233957579	0.120021347056309	0.195355716107344	0.83068581203153	13	0	1.10744485339922	0	0	2.37826126508041	0	0.694051630500793	3.64833681445471	0	2	0	0	4	0	1	6
+Mir2137	2.42315770170727	-1.17092319864775	2.41285706654857	0.120342550605879	0.195599501768245	0.962843156656157	6	0.818470924434263	0	0	2.10047995967078	0.694051630500793	0	0	0	2	0	0	3	1	0	0	0
+Mir1839	-0.534183367388678	6.73673012730561	2.40554710265568	0.120905847898993	0.196235522692391	0.108147846884193	1655	46.652842692753	55.8991489913558	247.339171568362	67.2153587094651	208.909540780739	111.274272840869	84.4650437608545	125.141268434112	114	75	416	96	301	183	244	226
+Gm10125	2.22437962369311	-1.21927187008007	2.39807781484729	0.121484441143166	0.196691035893343	0.587276574265586	6	1.10744485339922	0.818470924434263	0.74532198655141	0	0	0	0.608056135742452	0	2	2	1	0	0	0	1	0
+Zfp326	-1.63611428275883	0.346273936896955	2.39696460511976	0.121570936088169	0.196691035893343	0.550744863081575	19	1.1891306325402	0.700159986556928	0.694051630500793	0	2.42317748494255	0	1.63694184886853	2.98128794620564	2	1	1	0	7	0	4	4
+4930417O13Rik	-1.9945649280459	-0.258441456807758	2.39525817691125	0.121703655863891	0.196691035893343	0.747013546169459	12	1.40031997311386	0	0	0	1.66116728009883	0	3.72660993275705	1.1891306325402	2	0	0	0	3	0	5	2
+AF357359	1.29026542084414	1.77790507271985	2.38693456277286	0.122353342936739	0.197269068918764	0.496501200687077	55	5.35108784643091	0.700159986556928	15.9631875015182	3.64833681445471	3.4616821213465	2.21488970679844	0.818470924434263	0	9	1	23	6	10	4	2	0
+Elmo1	2.15124893872068	-1.28123993933874	2.38624804142815	0.122407099732239	0.197269068918764	0.463249530709569	6	0.409235462217131	1.49064397310282	1.1891306325402	0	0	0	0	0.553722426699609	1	2	2	0	0	0	0	1
+Asb7	-2.30332380737985	-1.13517358872786	2.37979511991411	0.122913666092021	0.197806055022561	0.786898494565176	7	0	0	0.34616821213465	0	1.22770638665139	0	1.7836959488103	0	0	0	1	0	3	0	3	0
+Mir744	-0.52498904749871	7.1362287941672	2.36085310667998	0.124414134487684	0.199938771056968	0.107589691134598	2175	51.2328953959282	73.0913603243484	208.710085730737	87.202672426515	261.014173842575	224.051195698217	129.787654903648	195.794075709069	148	132	510	117	439	320	187	322
+6720401G13Rik	-2.65953479134889	-0.584180947981368	2.3525835050485	0.125075568735887	0.200719020995285	1.61181893425389	9	0	0	0	0.608056135742452	0	0	3.27388369773705	0	0	0	0	1	0	0	8	0
+Gm11602	-1.29756714405707	2.01010378357763	2.34451013262115	0.125725078502831	0.201477969904116	0.519415721978893	61	0	1.3846728485386	3.32233456019766	2.45541277330279	16.397083704131	1.7836959488103	12.6028797580247	1.38810326100159	0	4	6	6	22	3	18	2
+Snora74a	1.33264355338965	1.25318029683733	2.33695526841141	0.126336270684184	0.202173471038785	0.483100717105593	36	0.6923364242693	2.76861213349805	4.50159008438844	5.21725390585987	4.16195721389071	0	1.38810326100159	1.2161122714849	2	5	11	7	7	0	2	2
+2900056M20Rik	1.89186552248576	-0.574049734117164	2.33244151001062	0.126703012044797	0.202476381993156	0.588820779961853	10	1.38810326100159	1.2161122714849	1.3846728485386	0	0	0	0	1.40031997311386	2	2	4	0	0	0	0	2
+Gm14872	-2.23735510374369	-1.00614089551379	2.32239133209804	0.127523846951547	0.203503090030371	0.720120448365452	7	0.594565316270102	0	0	0	0.34616821213465	2.21488970679844	0.409235462217131	0	1	0	0	0	1	4	1	0
+2900076A07Rik	-0.521545176134999	6.74529850321175	2.30997114204509	0.128546436531987	0.204848441456699	0.107375020056288	1663	40.1555126076194	42.6366268558699	170.651187744544	72.2962326954868	178.964160197301	128.129277539918	170.736701103195	137.420686677794	116	77	417	97	301	183	246	226
+1700011J10Rik	-1.72849334751898	0.640580677413143	2.29973642498749	0.129395954814459	0.20591462265453	0.796092222115673	22	0.6923364242693	0	0.818470924434263	0.74532198655141	0.594565316270102	6.30143987901235	0	4.25639295019716	2	0	2	1	1	9	0	7
+Snhg4	1.10541905914778	1.69573600781149	2.28324904354064	0.130777656190338	0.207823545561526	0.330995408402855	47	1.63694184886853	4.47193191930846	6.54021847897112	7.00159986556928	4.85836141350555	1.82416840722736	1.03850463640395	1.66116728009883	4	6	11	10	7	3	3	3
+Mir3086	1.49810597458547	0.00644830414200601	2.27986633946565	0.131063168287593	0.20798758694874	0.379947811715574	15	1.1891306325402	1.40031997311386	3.47025815250396	1.2161122714849	0.6923364242693	0	0.409235462217131	0.74532198655141	2	2	5	2	2	0	1	1
+Snord15b	-0.79305867858917	3.87885497090033	2.2770370697661	0.131302502667252	0.208077993810187	0.221656978878816	219	14.3967830941898	6.5477673954741	17.8877276772338	4.16195721389071	44.1100791530865	16.657239132019	15.2014033935613	11.7697192125781	26	16	24	7	63	24	25	34
+Adamts10	-2.12723975853336	-0.535083741337976	2.24662969356018	0.133905766378689	0.211909125434236	1.02278601950861	10	0	0	1.1891306325402	0	0	2.43222454296981	1.3846728485386	0	0	0	2	0	0	4	4	0
+Brd2	-1.18642173245467	1.77815650748116	2.24291767379786	0.134227493599469	0.21212405844459	0.418486210030943	52	2.77620652200317	2.43222454296981	2.42317748494255	0	6.13853193325697	1.49064397310282	5.94565316270102	7.00159986556928	4	4	7	0	15	2	10	10
+2310050B05Rik	1.87730148304571	-0.58167432047207	2.22996997764389	0.135356477771014	0.213612366717465	0.634568295148245	10	0.74532198655141	0	2.80063994622771	2.08215489150238	0	0	0	0.818470924434263	1	0	4	3	0	0	0	2
+Mir300	0.931234363214763	3.8186971624929	2.22279374259378	0.135986788643579	0.214310671052933	0.331226170767854	222	13.3772349863339	6.2310278184237	39.8680147223719	11.8678284042968	39.5020652872247	11.891306325402	1.40031997311386	4.16430978300476	22	18	72	29	53	20	2	6
+Mphosph9	-2.09978232493943	-1.10329984032928	2.18617729120828	0.13925454794207	0.219157847175037	0.588884758294567	7	0	0	0	0.694051630500793	2.43222454296981	0.34616821213465	0	0.409235462217131	0	0	0	1	4	1	0	1
+4930509E16Rik	-1.96670064589673	-0.445192289297211	2.17161954354077	0.140578116453461	0.220659695801666	0.831201671482097	11	0	0	0.700159986556928	0.694051630500793	2.43222454296981	1.73084106067325	0	0	0	0	1	1	4	5	0	0
+Mir103-2	-0.941836722508497	2.47294225074852	2.17142809105701	0.140595616869247	0.220659695801666	0.278613498393072	81	4.25639295019716	2.0770092728079	4.98350184029649	1.63694184886853	12.670473771374	5.94565316270102	9.10207982524007	10.4107744575119	7	6	9	4	17	10	13	15
+Snord49a	-0.501332616501719	6.17482047891014	2.16504808635641	0.141180206533623	0.221095374572332	0.103259611976917	1114	51.0767154023659	17.6545788188671	141.7529412351	30.6926596662849	172.914700879927	89.7793627567853	84.0191983868314	100.637486422615	84	51	256	75	232	151	120	145
+Srsf3	-1.12110428542334	2.04712487958043	2.16417127282267	0.141260760791613	0.221095374572332	0.39021138949617	57	0.818470924434263	5.96257589241128	1.1891306325402	2.80063994622771	4.85836141350555	6.68861749316697	3.11551390921185	7.75211397379453	2	8	2	4	7	11	9	14
+Gm5512	-1.86047883743836	-0.34231156915842	2.16163853408758	0.14149373775901	0.221156650387713	0.691171162327006	12	0.694051630500793	0.608056135742452	0	0	2.86464823551992	0	1.1891306325402	0.700159986556928	1	1	0	0	7	0	2	1
+Snord73a	-1.11940214938228	2.03915188884629	2.15781877008791	0.141845920487471	0.221403823907256	0.4040626562047	64	2.08215489150238	1.82416840722736	2.42317748494255	2.76861213349805	11.8678284042968	4.47193191930846	5.35108784643091	1.40031997311386	3	3	7	5	29	6	9	2
+Mir1934	1.83947282188827	-0.74446424423774	2.14056139117466	0.143449388374919	0.223600754283857	0.590912312839328	9	2.10047995967078	0.694051630500793	1.82416840722736	0	1.10744485339922	0	0	0	3	1	3	0	2	0	0	0
+Adam17	-1.47765485817054	0.572656985101098	2.13830311141108	0.143660721117262	0.22362466956998	0.53793072464044	22	0	1.38810326100159	0.608056135742452	0.6923364242693	4.42977941359688	0.409235462217131	3.72660993275705	1.7836959488103	0	2	1	2	8	1	5	3
+Mir484	0.496724159779706	7.15300390847319	2.1270083709805	0.144722972074943	0.224971268579713	0.106862047953958	2052	199.746292395778	133.182630844503	295.467514327024	166.57239132019	173.295998686599	77.5416795181615	55.9259650966606	117.859813118534	268	224	422	240	285	224	101	288
+Mir211	-2.11640411296348	-1.296635198523	2.11559632877154	0.145805249833451	0.226345292598596	0.598280443421084	6	0	0	0.409235462217131	0	0.594565316270102	2.10047995967078	0.694051630500793	0	0	0	1	0	1	3	1	0
+Pradc1	-2.25590005990977	-0.95868629848959	2.10291632826993	0.147018491652324	0.227918612738182	0.976906978836214	7	0	0.553722426699609	0	0	0	1.40031997311386	2.77620652200317	0	0	1	0	0	0	2	4	0
+Gm11974	-1.81523971179377	-0.398341440836169	2.09115275386919	0.148154242220698	0.229104045846039	0.642388867011053	11	0.694051630500793	0.608056135742452	0	0	1.22770638665139	0.74532198655141	0	3.50079993278464	1	1	0	0	3	1	0	5
+Tug1	-1.17219505827173	2.33305842720221	2.09083829971301	0.148184737804011	0.229104045846039	0.506974912816645	78	1.7836959488103	0	11.1048260880127	3.64833681445471	6.2310278184237	1.10744485339922	11.0493574798625	4.47193191930846	3	0	16	6	18	2	27	6
+Snora69	-1.29476383675893	1.11950457587196	2.07610769605679	0.149621281568758	0.231012019309814	0.502103671147298	33	0.694051630500793	0	2.42317748494255	1.10744485339922	2.45541277330279	2.98128794620564	5.94565316270102	2.10047995967078	1	0	7	2	6	4	10	3
+Gm12238	-1.374752108325	1.14114685523995	2.05521130662535	0.151686209824723	0.233883737040552	0.577372977362401	32	1.40031997311386	1.38810326100159	1.2161122714849	0.6923364242693	4.98350184029649	1.63694184886853	8.19854185206551	0	2	2	2	2	9	4	11	0
+D930016D06Rik	-2.12966369804793	-1.07553615521407	2.04671676300506	0.152534824993466	0.234874811494662	0.781542045529223	7	0.34616821213465	0	0	0	1.7836959488103	0	2.08215489150238	0	1	0	0	0	3	0	3	0
+Gm16845	-1.35037437185959	0.998684782228077	2.03719619401201	0.153492340070176	0.236030673881497	0.543715457183106	30	0	2.43222454296981	1.3846728485386	0	3.27388369773705	1.49064397310282	3.56739189762061	4.20095991934157	0	4	4	0	8	2	6	6
+Mirlet7f-1	0.463096963187258	5.71101572600228	2.00271718012407	0.157017513673484	0.241126491388216	0.0916419612779841	779	39.6958398350617	55.1538270048043	121.885889835371	49.011199058985	74.2635244635848	47.4283785879112	27.3472887586373	38.2068474422731	97	74	205	70	107	78	79	69
+Kcnq1ot1	-1.71556705140993	0.108518001839463	1.99908859979138	0.157393821650088	0.241379503363911	0.777978191313217	16	0.608056135742452	0	0	0.818470924434263	5.21725390585987	0	3.50079993278464	0.694051630500793	1	0	0	2	7	0	5	1
+E2f6	-1.81417745427803	0.0474245706204916	1.98944603302227	0.15839881352126	0.242594692923164	0.944242976742487	16	1.38810326100159	0	0.34616821213465	0	3.27388369773705	0	2.97282658135051	0	2	0	1	0	8	0	5	0
+Pex11b	-1.93016439048385	-0.656877093644222	1.98691917809535	0.158663379473081	0.242674150105611	0.892152051944076	10	0	0	1.10744485339922	0	2.98128794620564	0	2.80063994622771	0	0	0	2	0	4	0	4	0
+C130046K22Rik	1.79715307384657	-0.040521346035172	1.97819313283185	0.159580885940423	0.243750724040191	0.897566000528065	13	2.04617731108566	2.23596595965423	1.1891306325402	0	0	1.82416840722736	0	0	5	3	2	0	0	3	0	0
+4930506C21Rik	-1.65053769664433	-0.694764026906908	1.96996208583779	0.160451886396519	0.244753479115546	0.380050862257095	9	0.694051630500793	0	0.34616821213465	0	0.409235462217131	0.74532198655141	1.1891306325402	2.10047995967078	1	0	1	0	1	1	2	3
+Parp6	-1.54123114223672	0.62814872457052	1.96748365339329	0.160715211459392	0.244827845494214	0.758303293968744	24	0	1.38810326100159	2.43222454296981	0	4.42977941359688	0	5.96257589241128	1.1891306325402	0	2	4	0	8	0	8	2
+Snord57	-0.424550183698455	9.42899739529723	1.95013094558153	0.162572740792391	0.247327329658824	0.0876538866624889	10268	549.625589447189	516.37441309259	1234.96201169292	272.434382949969	961.815855177222	552.877109455344	1076.99027056679	825.256658982901	785	744	2031	787	1737	1351	1445	1388
+Atp10d	-1.81862240134426	0.20357914089445	1.93618349854944	0.164083523730785	0.249293342978463	1.01200968731666	17	0.6923364242693	0	0	0.74532198655141	4.16195721389071	0	4.85836141350555	0	2	0	0	1	7	0	7	0
+Sec23b	-2.21243603654804	-1.00290887097928	1.93044768136253	0.16470947462801	0.249911583178936	1.09391905658926	7	0.700159986556928	0	0	0	0.553722426699609	0	3.72660993275705	0	1	0	0	0	1	0	5	0
+Gpr137b-ps	2.05273702160294	-1.47714677808234	1.9214658863889	0.165695151965476	0.251073264797621	0.595229382995133	5	0.700159986556928	0.694051630500793	0	0.6923364242693	0.553722426699609	0	0	0	1	1	0	2	1	0	0	0
+C230091D08Rik	-1.84293648776523	0.254818237596646	1.91785006191628	0.166093862043502	0.251340344526547	1.06923339537336	17	0	0.818470924434263	0	0.594565316270102	3.50079993278464	0	5.47250522168207	0	0	2	0	1	5	0	9	0
+Pnpla2	-1.28484908097568	1.13481026329584	1.91587626442695	0.166311972057444	0.251340344526547	0.52564889243845	32	2.43222454296981	0.34616821213465	0.553722426699609	0.818470924434263	7.4532198655141	0.594565316270102	5.60127989245543	3.47025815250396	4	1	1	2	10	1	8	5
+Uqcc	-1.57041361236052	0.309074613488122	1.8924413714092	0.16892681599039	0.254723499021246	0.71710336722371	18	0	1.49064397310282	0.594565316270102	0.700159986556928	3.47025815250396	0	2.7693456970772	0.553722426699609	0	2	1	1	5	0	8	1
+BC039771	-2.06309610190323	-1.10301112435516	1.89181723453087	0.168997097948364	0.254723499021246	0.816403778426575	7	0	0.694051630500793	0	0	2.21488970679844	0	1.49064397310282	0	0	1	0	0	4	0	2	0
+A330032B11Rik	-1.66655152016522	-0.789595024696857	1.88603294890012	0.169650045045355	0.255370318465369	0.464612129121783	9	0	0	1.2161122714849	0	2.21488970679844	0.409235462217131	0.74532198655141	0.594565316270102	0	0	2	0	4	1	1	1
+Lrrc57	-2.17070445697144	-1.29761368251018	1.87281978769662	0.171152474856121	0.257292455613747	0.997342767190326	6	0	0	0.553722426699609	0	0	0	0.700159986556928	2.77620652200317	0	0	1	0	0	0	1	4
+9130221H12Rik	-2.15491387498214	-1.30709073196849	1.86633532125394	0.171895390527264	0.258069263936326	0.967481092300224	6	0	0	0.409235462217131	0	0.594565316270102	0	2.77620652200317	0	0	0	1	0	1	0	4	0
+Snord58b	0.824001017170991	4.95759314596417	1.85949494328852	0.172683102362566	0.258911195526529	0.326718402532029	394	34.7850142884562	60.3710809106642	1.7836959488103	39.9091192337449	31.9263750030365	26.7544699726679	10.0388781519048	27.1323989082809	85	81	3	57	46	44	29	49
+Deaf1	-1.68933150336276	-0.0375917324464573	1.84051773407054	0.174890277775485	0.261876387062767	0.816928188001351	14	0	0.6923364242693	0.553722426699609	0	2.23596595965423	0.594565316270102	4.9011199058985	0	0	2	1	0	3	1	7	0
+Mir5117	0.769861533912983	3.38510464908533	1.83634168997562	0.175380329499629	0.261950075100346	0.252670978152571	153	6.54021847897112	14.7033597176955	27.0680135895309	13.9852911220764	7.61570066696229	8.85955882719375	5.72929647103984	5.21725390585987	11	21	39	23	22	16	14	7
+Ndufs6	-1.81309092834126	-0.57325841080545	1.83618584702039	0.175398648007593	0.261950075100346	0.812974102918629	10	0	0	0.608056135742452	0.34616821213465	1.66116728009883	0	3.72660993275705	0	0	0	1	1	3	0	5	0
+Dleu2	-0.456565558061684	8.18676176574458	1.83415717794833	0.175637308520394	0.2619636196363	0.106787155044243	4399	248.937543508171	173.61307235087	603.537908412072	231.813244587265	527.792725824448	221.201487554041	160.025781316187	319.61289599158	334	292	862	334	868	639	289	781
+St5	-1.33562099737395	0.724632427643315	1.81915115433972	0.177414350400045	0.264268634212078	0.551523336918288	24	1.66116728009883	0	0.74532198655141	1.1891306325402	4.9011199058985	1.38810326100159	4.25639295019716	0.6923364242693	3	0	1	2	7	2	7	2
+Mir376a	1.88500748515954	-1.52432846437541	1.81021092559471	0.178482929447281	0.265513719034352	0.362235859241723	5	0.694051630500793	0.608056135742452	0.34616821213465	0.553722426699609	0	0	0	0.700159986556928	1	1	1	1	0	0	0	1
+Snord89	-1.14485650069734	1.26613253545133	1.80125065214085	0.179561370642595	0.266770213415627	0.439950833120308	36	1.38810326100159	1.2161122714849	1.03850463640395	1.66116728009883	5.32006100882271	1.49064397310282	4.75652253016081	2.10047995967078	2	2	3	3	13	2	8	3
+E130317F20Rik	-1.60824937646526	-0.722578655269751	1.79552784473798	0.180254098311013	0.267451139366536	0.43525410940991	9	0	0	0.553722426699609	0.409235462217131	2.23596595965423	1.1891306325402	1.40031997311386	0	0	0	1	1	3	2	2	0
+Mir15a	-0.461402328077725	8.00278569934438	1.7893586844197	0.181004320368501	0.268215492909688	0.111613840522058	3883	178.768503908281	88.6190623064703	428.581158265498	116.632106731882	573.897929644586	337.713099641418	163.137276867764	487.918296242057	294	256	774	285	770	568	233	703
+Brat1	-1.95574401957814	-1.25063314436217	1.78419246426132	0.181635357558795	0.268609542338345	0.634272154541631	6	0	0	0	0.594565316270102	0.700159986556928	0	1.82416840722736	0.34616821213465	0	0	0	1	1	0	3	1
+4930481A15Rik	-1.87333991713146	-0.32693175590774	1.7833290007599	0.181741075096584	0.268609542338345	1.04397599186534	12	1.2161122714849	0	0	0	4.47193191930846	0	2.80063994622771	0	2	0	0	0	6	0	4	0
+4930573O16Rik	-1.88165509311408	-1.30729707537809	1.77171117032045	0.183170449946082	0.270371906065304	0.492655205678401	6	0	0	0	0.34616821213465	1.66116728009883	0	0.74532198655141	0.594565316270102	0	0	0	1	3	0	1	1
+C030016D13Rik	-1.8829703105524	-1.30683349415245	1.76051681853691	0.184560065362311	0.272071104106457	0.507974090816595	6	0.34616821213465	0	0	0	1.7836959488103	0.700159986556928	0	0.608056135742452	1	0	0	0	3	1	0	1
+March2	-1.38105355929432	1.30061439231026	1.75602874512035	0.185120626636346	0.272545335473639	0.752073358487019	36	1.3846728485386	1.10744485339922	0	1.49064397310282	8.32391442778142	0	8.32861956600951	1.2161122714849	4	2	0	2	14	0	12	2
+Mir485	1.54443076418955	-0.290426836066129	1.74506963224079	0.18649775072902	0.2742189865745	0.64093520437003	13	0.34616821213465	0	2.86464823551992	1.49064397310282	0.594565316270102	1.40031997311386	0	0	1	0	7	2	1	2	0	0
+Trpc4	1.70843643240801	-0.813700346749931	1.70858221472067	0.191169424259359	0.28072627166014	0.666617778501811	8	1.3846728485386	0.553722426699609	0.409235462217131	0	0.594565316270102	0	0	0.608056135742452	4	1	1	0	1	0	0	1
+Zfp207	-1.55657840200265	0.426306293288299	1.70465117282454	0.191680826776083	0.281115454179319	0.845283159879346	19	0	0.6923364242693	0	0.818470924434263	3.72660993275705	0	6.30143987901235	0.694051630500793	0	2	0	2	5	0	9	1
+Mir93	-0.406176458566172	8.9593760222993	1.69126231592309	0.193434651718855	0.283323411567669	0.0922702577428073	7480	358.258410074647	196.433021864223	1041.21481521232	357.928320394601	1071.2447794321	651.714481040245	420.166789798034	413.324845288772	647	480	1397	602	1530	939	691	1194
+Rbbp8	-1.51446479630261	0.360593715203757	1.68787565904937	0.193881240925215	0.283613456276501	0.777058148209298	18	1.1891306325402	0	0	1.2161122714849	1.3846728485386	1.10744485339922	3.27388369773705	0	2	0	0	2	4	2	8	0
+Snora41	-0.597319765504387	4.6661668496757	1.68408887855683	0.194382021538733	0.28398192903418	0.180339426528952	394	19.0260901206433	14.0031997311386	58.9943885925674	11.5530665791066	31.1551390921185	21.0414522145852	10.2308865554283	63.3523688568699	32	20	85	19	90	38	25	85
+Nkx6-2	1.88711292294103	-1.50307213755367	1.67412618964738	0.195706775642296	0.285551702056087	0.533859964123136	5	0.594565316270102	1.40031997311386	0.694051630500793	0	0	0.553722426699609	0	0	1	2	1	0	0	1	0	0
+Mir1964	0.780714676510604	2.90937576010829	1.64474719943263	0.199675375850605	0.290970119853819	0.275123357764196	105	15.4035197042524	9.02267119651031	11.5530665791066	3.4616821213465	4.98350184029649	4.50159008438844	5.96257589241128	7.72934911151132	22	13	19	10	9	11	8	13
+Snord82	-0.681816102313425	3.71757880754491	1.64079639664976	0.200216234362799	0.291348032645206	0.224319430744214	191	5.88485960628905	7.75211397379453	7.77547378212549	12.670473771374	27.9445698646948	13.3030397445816	27.7620652200317	10.9450104433641	17	14	19	17	47	19	40	18
+Ufd1l	-2.22801722367461	-0.942704824977585	1.63853516677509	0.200526567598955	0.291348032645206	1.58331022317673	7	0	0.694051630500793	0	0	0	0	4.47193191930846	0	0	1	0	0	0	0	6	0
+Rian	0.865418531821443	2.50587516304445	1.63726780883086	0.200700748167513	0.291348032645206	0.339800978062583	88	7.29667362890942	1.73084106067325	16.0579503742887	4.09235462217131	12.670473771374	3.56739189762061	4.9011199058985	1.38810326100159	12	5	29	10	17	6	7	2
+Tubgcp4	-1.59475099795419	-0.142236454370768	1.62996478904989	0.201707918790169	0.292438037280283	0.811164920105338	13	1.2161122714849	0	0.553722426699609	0	1.49064397310282	0	4.9011199058985	0.694051630500793	2	0	1	0	2	0	7	1
+Mir26a-1	0.59214943411915	4.37344669204713	1.62692593509205	0.202128762676099	0.292676292149021	0.178386496560684	302	32.2073593816187	17.3512907625198	40.1317049590018	13.1543920611167	25.471231628182	14.3232411775996	9.68918582516833	19.6206554369133	46	25	66	38	46	35	13	33
+9330178D15Rik	2.0329814548524	-1.39059205654147	1.61539976689352	0.203734419337128	0.294627341525555	0.987814308607316	5	0.34616821213465	1.66116728009883	0	0	0	0	0.694051630500793	0	1	3	0	0	0	0	1	0
+B230217O12Rik	-1.65042180622934	-0.704007233773122	1.61318391186991	0.204044819141537	0.294702707139866	0.677876290664609	9	0	0	0.694051630500793	0.608056135742452	0.34616821213465	0	0.409235462217131	3.72660993275705	0	0	1	1	1	0	1	5
+Mir3087	1.62131215202352	-0.782895856667055	1.60693177911701	0.204923636242363	0.295597811570843	0.596173639942885	8	1.66116728009883	0.409235462217131	0.74532198655141	0.594565316270102	0	1.38810326100159	0	0	3	1	1	1	0	2	0	0
+A330023F24Rik	0.437796255498911	8.67175917511166	1.60201011445291	0.205618580693449	0.296225758297002	0.113148195101588	6103	228.124851796734	322.820174765872	606.486955005789	502.34701893565	645.69793346933	437.59999159808	176.983165777702	449.353484313672	659	583	1482	674	1086	625	255	739
+Mir29c	0.439813587022935	8.65700369906282	1.60008315656274	0.205891426634024	0.296244789141767	0.114326748769424	6038	268.049227752221	430.796108226715	869.849057703159	467.006711033471	744.717399527351	379.42702870329	84.8112119729892	405.878538770814	655	578	1463	667	1073	624	245	733
+Mir154	1.37960167534945	0.268938119088842	1.59784572324499	0.206208770512373	0.296327716819418	0.67170911506608	18	1.40031997311386	0	3.64833681445471	1.73084106067325	1.10744485339922	1.22770638665139	0	0	2	0	6	5	2	3	0	0
+Mir199a-1	-1.25392839099751	0.291496171629457	1.58983405656815	0.207349844106049	0.297592669339624	0.468211338277266	18	1.22770638665139	0	1.1891306325402	0	2.77620652200317	1.2161122714849	1.3846728485386	1.66116728009883	3	0	2	0	4	2	4	3
+Snora21	-1.17880510125088	0.448908358278964	1.58111566715797	0.20860006382576	0.299010895509035	0.417794509705249	20	1.2161122714849	0	1.66116728009883	0.409235462217131	2.23596595965423	2.37826126508041	2.80063994622771	2.08215489150238	2	0	3	1	3	4	4	3
+Abhd11	-1.60388335035277	-0.886424341832775	1.574095603599	0.209613228289782	0.30008619006103	0.565524102859339	8	0	0	0.818470924434263	0	0	1.40031997311386	1.38810326100159	1.2161122714849	0	0	2	0	0	2	2	2
+Airn	1.27888007861366	2.32523714626309	1.55337658209858	0.212637657382994	0.304034545205509	0.862049740104597	66	2.80063994622771	12.4929293490143	7.29667362890942	4.1540185456158	0	0	14.9064397310282	0	4	18	12	12	0	0	20	0
+Etohd2	-1.89099714221186	-1.26888157123423	1.54618221365326	0.213699935678948	0.30517099700836	0.807100498203147	6	0	0.409235462217131	0	0	1.40031997311386	0	1.82416840722736	0	0	1	0	0	2	0	3	0
+Mir410	0.666784938679241	3.81377700524501	1.54417074996869	0.213998063476999	0.305214738034069	0.23496414574264	208	8.30803709123159	18.2728400810871	19.2340667242052	12.670473771374	26.7554392321546	14.7033597176955	6.24646467450714	7.29667362890942	24	33	47	17	45	21	9	12
+Mir101c	-1.75549972402918	-1.57397914791002	1.50511614966304	0.219885833746325	0.313220644574978	0.411688585331216	5	0	0	0.608056135742452	0	0.553722426699609	0	1.49064397310282	0.594565316270102	0	0	1	0	1	0	2	1
+Pisd-ps3	-1.33389895984124	0.00672166916161362	1.50012941739273	0.220651450015256	0.313919332253624	0.563932680512065	15	0.34616821213465	0.553722426699609	0.818470924434263	0	2.37826126508041	0	3.47025815250396	1.2161122714849	1	1	2	0	4	0	5	2
+Spns1	-1.53226254772568	-0.777230696562665	1.471774189655	0.225065975054855	0.319801092823898	0.588376948844574	9	0	0	0.700159986556928	0.694051630500793	3.04028067871226	0.34616821213465	0.553722426699609	0	0	0	1	1	5	1	1	0
+Mir3068	0.531849077504373	4.76804304935561	1.46182454798486	0.226640039088934	0.321637169901086	0.165206189188114	431	27.9445698646948	22.4051195698217	104.80179620562	16.4175156650462	25.9626159100987	18.8265625077867	14.7324766398167	21.6143376099909	47	32	151	27	75	34	36	29
+Fbxo34	-1.26134769200218	0.0511572593766371	1.44298374739789	0.229657114922446	0.325513997672685	0.485854325295224	15	0.700159986556928	0.694051630500793	0.608056135742452	0.34616821213465	2.21488970679844	1.22770638665139	2.98128794620564	0	1	1	1	1	4	3	4	0
+Alg9	-1.67710411612717	-0.486610304387977	1.43852873805825	0.230377571035755	0.326130035424065	0.983998012965562	10	0.608056135742452	0.34616821213465	0	0	1.49064397310282	0	4.20095991934157	0	1	1	0	0	2	0	6	0
+Magix	-1.88370283372871	-1.54126907941154	1.43478739992785	0.230984718555754	0.326584341848966	0.843905991108154	5	0	0	0.74532198655141	0	0	0.694051630500793	1.82416840722736	0	0	0	1	0	0	1	3	0
+Cnot2	-1.38950438484497	0.419878833526545	1.41797410139312	0.233737144029816	0.330066932349035	0.854348862504364	21	0	1.40031997311386	1.38810326100159	0.608056135742452	3.80785033348115	0	2.04617731108566	0	0	2	2	1	11	0	5	0
+1700061I17Rik	1.75488222529044	-1.65609647528833	1.41137265247084	0.234828658741623	0.331198392613339	0.605410820788776	5	0	0	2.08215489150238	0.608056135742452	0.34616821213465	0	0	0	0	0	3	1	1	0	0	0
+Gm10865	-1.48057581752313	-0.841523480449415	1.40943286547085	0.235150563602662	0.331242954408194	0.492084716551793	8	0	0	0.594565316270102	0.700159986556928	0	1.2161122714849	0.6923364242693	1.10744485339922	0	0	1	1	0	2	2	2
+Snord83b	-0.576387059675669	3.89404617232097	1.39650694760333	0.237309298047112	0.333738123904012	0.188423727901865	221	15.4035197042524	8.32861956600951	21.2819647509858	5.5386913941544	26.5786764815813	9.00318016877689	25.3409475427479	19.0260901206433	22	12	35	16	48	22	34	32
+Orc6	-1.65891001544319	-1.53143456249569	1.39410757284254	0.237712651897134	0.333738123904012	0.346829941720672	5	0.553722426699609	0	0	0	0.700159986556928	0.694051630500793	0.608056135742452	0.34616821213465	1	0	0	0	1	1	1	1
+Nnt	-0.943384996373025	3.06429209846151	1.3928418650093	0.237925762385849	0.333738123904012	0.530661278894176	121	7.63456793550872	6.08056135742452	2.42317748494255	4.42977941359688	14.3232411775996	0	26.1608739158845	4.20095991934157	11	10	7	8	35	0	44	6
+1700113A16Rik	-1.25132935558282	-0.405410492935541	1.39185622273126	0.238091878052468	0.333738123904012	0.335679278399479	11	0.74532198655141	0	0.700159986556928	0.694051630500793	1.2161122714849	0.34616821213465	1.10744485339922	1.22770638665139	1	0	1	1	2	1	2	3
+Snord111	-0.768354560924835	2.44255708268487	1.37937795879974	0.240207131983939	0.336289984777514	0.302987417663513	82	4.20095991934157	2.77620652200317	7.90472976465187	2.0770092728079	12.735615814091	5.72929647103984	7.4532198655141	3.56739189762061	6	4	13	6	23	14	10	6
+Mir377	1.61685029109297	-0.764927019547182	1.3719133201312	0.241483420704625	0.337338320076739	0.871922904191011	8	0.34616821213465	0	0.409235462217131	2.98128794620564	0	1.40031997311386	0	0	1	0	1	4	0	2	0	0
+Gm6793	-1.78278223738427	-1.33945983784321	1.37154128636168	0.241547245839348	0.337338320076739	0.822180880884212	6	0	0.34616821213465	0	0	2.98128794620564	0	0.700159986556928	0	0	1	0	0	4	0	1	0
+H2-T10	-1.81297627715528	-1.58069385552309	1.36343872090317	0.242942409193657	0.338871991308023	0.783950373546019	5	0	0	0.74532198655141	0	0.700159986556928	0	1.82416840722736	0	0	0	1	0	1	0	3	0
+Ubl4	-1.27034177587966	0.0534863754405797	1.3565087782031	0.244143458366216	0.340131484732421	0.571194645489501	15	0.34616821213465	0	0.409235462217131	1.49064397310282	1.7836959488103	0	3.47025815250396	1.82416840722736	1	0	1	2	3	0	5	3
+Mirlet7a-1	-0.479655320722763	4.78553688143684	1.34788689468875	0.24564787267199	0.341810027705781	0.142907204927484	419	17.6336279365311	8.30803709123159	49.2812959762652	13.0955347909482	61.861724883767	34.4847883436659	25.2057595160494	47.1955108740539	29	24	89	32	83	58	36	68
+Gm2518	-1.39162129449246	-0.884936739010693	1.34396740253008	0.246335518812973	0.342349362930088	0.381243283650106	8	0	0.74532198655141	0.594565316270102	0	1.38810326100159	0	0.6923364242693	1.10744485339922	0	1	1	0	2	0	2	2
+Minos1	-1.18883665303021	0.474780827930178	1.32978558037784	0.248843366833975	0.345413967831588	0.613575613139105	22	0.594565316270102	1.40031997311386	2.08215489150238	0	3.80785033348115	0.553722426699609	0.409235462217131	2.23596595965423	1	2	3	0	11	1	1	3
+Mir26a-2	-0.715034883511368	3.11546420527345	1.32372336809166	0.249924914221204	0.346493714612873	0.304126393558787	131	4.09235462217131	2.23596595965423	18.4315248043731	5.60127989245543	11.7988777185135	17.6336279365311	3.80785033348115	12.1818933873914	10	3	31	8	17	29	11	22
+Gm13375	-1.6921982855423	-1.49322451341955	1.31837615791593	0.250883687602521	0.347400834410773	0.549500512407157	5	0	0	0	0.553722426699609	0	0.74532198655141	1.1891306325402	0.700159986556928	0	0	0	1	0	1	2	1
+Yaf2	-1.67782445744683	-0.487813039725939	1.31308001418568	0.251837758331466	0.347986900409276	1.17230049674363	10	0	0	0	1.10744485339922	0.818470924434263	0	3.56739189762061	0	0	0	0	2	2	0	6	0
+Rnf126	-1.6247427069646	-1.5483229499814	1.31264181313975	0.251916897228801	0.347986900409276	0.388474138185462	5	0.700159986556928	0	0	0	1.10744485339922	0.409235462217131	0.74532198655141	0	1	0	0	0	2	1	1	0
+Mir223	0.392453416059884	5.98833711727872	1.3035785418167	0.253560594977612	0.349555682071357	0.104178045605271	928	40.1050752972789	81.2400965341037	127.236977681802	65.1148787497943	82.5921440295944	62.6297819814725	18.3469152431364	76.9674173112457	98	109	214	93	119	103	53	139
+Snord8	-0.978027022403874	1.09887870775351	1.30298812584026	0.25366812862396	0.349555682071357	0.4314327128184	32	0.74532198655141	1.7836959488103	2.80063994622771	1.38810326100159	6.08056135742452	1.3846728485386	3.32233456019766	0.818470924434263	1	3	4	2	10	4	6	2
+F420014N23Rik	-1.372332867125	0.486804153233623	1.30132325747801	0.253971656824851	0.349555682071357	0.978195779320001	22	0	1.2161122714849	1.3846728485386	0	3.27388369773705	0	4.75652253016081	0	0	2	4	0	8	0	8	0
+F630028O10Rik	0.392450488800123	5.98834207543087	1.29739234247459	0.25469009215405	0.35012216282864	0.104716472119336	928	73.0415546820382	64.8076194734411	149.834237123183	64.5468016365737	72.3586801533518	35.6553258498689	29.3472886150793	56.8837292481813	98	109	214	93	119	103	53	139
+Mir1945	-1.60978084536385	-1.55009830160392	1.29570121271995	0.254999942083813	0.35012627426911	0.378858489230937	5	0	0.553722426699609	0	0	1.1891306325402	0	0.694051630500793	0.608056135742452	0	1	0	0	2	0	1	1
+Mir3082	0.661138784925018	2.97567078622387	1.29273748445739	0.255544079405897	0.350451676204481	0.24963376787416	112	9.12084203613678	4.1540185456158	13.2893382407906	6.5477673954741	7.4532198655141	7.72934911151132	7.70175985212621	7.63456793550872	15	12	24	16	10	13	11	11
+Klc2	-1.65680060376313	-1.51683877037243	1.27647893144847	0.258554746351741	0.354154820633057	0.529733958421577	5	0	0	0	0.594565316270102	0.700159986556928	1.38810326100159	0.608056135742452	0	0	0	0	1	1	2	1	0
+Rmi1	-1.45414479134642	-0.862825068790834	1.26709959878699	0.260311499173742	0.356039233357995	0.605978592018314	8	0.553722426699609	0	0.74532198655141	0	0.700159986556928	0	2.43222454296981	0.34616821213465	1	0	1	0	1	0	4	1
+Mir134	1.03495548835917	1.45319323033477	1.26580803072866	0.260554566042004	0.356039233357995	0.601898706633359	40	1.38810326100159	3.64833681445471	3.4616821213465	4.42977941359688	2.86464823551992	5.21725390585987	0	0	2	6	10	8	7	7	0	0
+C230037L18Rik	-1.62980533639894	-1.52772398832634	1.2624738205075	0.261183349066953	0.35647153263803	0.484879154690579	5	0	0.700159986556928	0	0	0.34616821213465	0	0.409235462217131	1.49064397310282	0	1	0	0	1	0	1	2
+Mir3060	1.08677713577326	0.277864369948646	1.25611314182789	0.262388104130247	0.357668836230783	0.473324331323197	19	0.34616821213465	0.553722426699609	3.27388369773705	2.23596595965423	1.7836959488103	0.700159986556928	0	1.2161122714849	1	1	8	3	3	1	0	2
+4930562F07Rik	-1.64522099748687	-0.476339007188187	1.25291626650739	0.262996216290631	0.357668836230783	1.1878443646274	10	0	0.818470924434263	0	0	1.40031997311386	0	3.64833681445471	0	0	2	0	0	2	0	6	0
+Mir299	0.843754595626436	1.52663929643581	1.25289109673179	0.263001011040865	0.357668836230783	0.353242653337154	43	4.85836141350555	3.04028067871226	4.1540185456158	1.66116728009883	2.86464823551992	2.98128794620564	1.1891306325402	2.10047995967078	7	5	12	3	7	4	2	3
+Myeov2	-1.69291253107605	-1.64496689941108	1.24473900338444	0.264559683155445	0.359360236286146	0.683475557730936	5	0	0	0.34616821213465	0	1.22770638665139	0	0.594565316270102	0	0	0	1	0	3	0	1	0
+Pvt1	-1.32096490868673	-0.847731465862789	1.23855062742672	0.265750566194178	0.360548627856786	0.35441856020169	8	0.553722426699609	0	0	0.594565316270102	1.40031997311386	0.694051630500793	1.2161122714849	0.34616821213465	1	0	0	1	2	1	2	1
+Snora44	-0.381633059781074	5.65314644811287	1.22201591534437	0.268965390360777	0.364170733203647	0.102330578596002	724	52.7479239180603	44.388097909199	28.0396251829066	32.1159007485773	65.0684384925239	61.1164028972156	63.6184888409009	61.6140788170097	76	73	81	58	159	82	107	88
+Mir16-1	-0.412537352408144	5.07566733928455	1.22153990110487	0.269058657397611	0.364170733203647	0.116318778939368	499	21.5951746412848	13.9140057153825	64.8430128299727	27.9445698646948	66.5151987229082	49.2776657655563	30.4028067871226	26.3087841222334	39	34	87	47	95	71	50	76
+Snord92	-0.710096609221731	2.83572908658428	1.2111718792087	0.271100158349136	0.36649914772081	0.316545752043228	106	6.30143987901235	3.47025815250396	10.3369543076217	2.7693456970772	12.735615814091	3.27388369773705	21.6143376099909	4.16195721389071	9	5	17	8	23	8	29	7
+Gm16973	-1.47669981296583	-1.00488414037259	1.16547208604198	0.280333561977	0.378533247592612	0.807783550728712	8	0	0	1.10744485339922	0	2.98128794620564	0	1.40031997311386	0	0	0	2	0	4	0	2	0
+Mir196b	1.25717008543347	-0.50306250554666	1.14571235013042	0.284448506905949	0.383635634018544	0.561933397726954	10	1.10744485339922	0	1.49064397310282	1.7836959488103	0	0.694051630500793	0	0.6923364242693	2	0	2	3	0	1	0	2
+2310040G24Rik	-1.45685241958596	-1.01497652446792	1.14394094950534	0.284821122578047	0.383684652729105	0.794086796420206	8	0	0	1.49064397310282	0	2.80063994622771	0	0	0.6923364242693	0	0	2	0	4	0	0	2
+Pafah1b1	-0.979759016418312	1.50245301128808	1.12270570223865	0.289336591381148	0.389307842884304	0.597146443197918	40	1.03850463640395	1.66116728009883	0.818470924434263	2.98128794620564	4.75652253016081	0	11.1048260880127	2.43222454296981	3	3	2	4	8	0	16	4
+E030003E18Rik	-1.37677029350632	-0.911606444076738	1.10868384048074	0.292368231420679	0.392923618434623	0.650179476705915	8	0	0	0.409235462217131	0.74532198655141	1.7836959488103	0	2.08215489150238	0	0	0	1	1	3	0	3	0
+Gm11696	-1.6474567394522	-1.48131673919125	1.08635659782644	0.297279881147042	0.399054522810324	0.900717839549015	5	0	0.700159986556928	0	0	0	0.553722426699609	0	2.23596595965423	0	1	0	0	0	1	0	3
+4930568G15Rik	-1.63434903676238	-1.50910322195022	1.07512093530211	0.299791605870636	0.401953257694942	0.88678752728023	5	0.34616821213465	0	0	0	0.594565316270102	0	2.08215489150238	0	1	0	0	0	1	0	3	0
+Snord35b	-1.11151028366679	0.0545541991626386	1.03680869845452	0.308564847475744	0.413230623204019	0.579271233846859	15	1.22770638665139	0.74532198655141	0	0	3.47025815250396	0.608056135742452	0.6923364242693	1.66116728009883	3	1	0	0	5	1	2	3
+Gt(ROSA)26Sor	1.01120227557646	0.983570556736739	1.03355528158596	0.309325094602678	0.413344830354892	0.651740514579554	26	1.22770638665139	6.70789787896269	0.594565316270102	2.10047995967078	2.08215489150238	0	1.3846728485386	1.66116728009883	3	9	1	3	3	0	4	3
+Wbscr25	1.57399341703069	-1.78130174790484	1.03334353864081	0.309374658302435	0.413344830354892	0.638146949527696	4	1.49064397310282	0.594565316270102	0	0	0	0	0.553722426699609	0	2	1	0	0	0	0	1	0
+Irf3	-1.5346761545771	-1.58329226164049	1.02731268498339	0.310790677441742	0.414751067790676	0.697639468549404	5	0.694051630500793	0	0	0	1.22770638665139	0	0.594565316270102	0	1	0	0	0	3	0	1	0
+Fam172a	-1.03402893186865	0.604002126955515	1.018576530994	0.312856898096335	0.417020701784951	0.636367573855024	23	0.594565316270102	0.700159986556928	2.08215489150238	1.2161122714849	2.7693456970772	0.553722426699609	2.86464823551992	0	1	1	3	2	8	1	7	0
+A630010A05Rik	0.949572488616649	0.718313836775746	1.00067217278155	0.317147916372748	0.421790112728613	0.536546495626548	24	1.49064397310282	3.56739189762061	3.50079993278464	1.38810326100159	3.04028067871226	0.34616821213465	0	1.22770638665139	2	6	5	2	5	1	0	3
+2610027K06Rik	-1.27624242575249	-0.359242963660928	0.999807031473748	0.31735720510257	0.421790112728613	0.831448038206786	11	0	1.1891306325402	0.700159986556928	0	0.608056135742452	0	3.32233456019766	0.409235462217131	0	2	1	0	1	0	6	1
+Mrpl48	-1.11768365627351	-0.384442829883447	0.999035494819305	0.317544002483679	0.421790112728613	0.464594138402513	11	1.40031997311386	0.694051630500793	0	0	1.66116728009883	0.409235462217131	0.74532198655141	1.7836959488103	2	1	0	0	3	1	1	3
+Chkb	-0.980518104316082	0.868956035555252	0.988376398728009	0.320139520836939	0.424490647681999	0.616914850952162	28	1.49064397310282	1.1891306325402	1.40031997311386	1.38810326100159	8.51278590039432	0.6923364242693	2.21488970679844	0	2	2	2	2	14	2	4	0
+B630019K06Rik	-1.29011544235618	-1.11663074558135	0.987634695173225	0.320321163588257	0.424490647681999	0.543899136641392	7	0	0	1.2161122714849	0	0.553722426699609	0	1.49064397310282	1.1891306325402	0	0	2	0	1	0	2	2
+Mir25	-0.307341631802256	10.3901562647106	0.978979592374074	0.322450858265771	0.426817203342511	0.0921044561482298	19593	629.333809660793	783.517233779947	1435.5980014577	1349.03279565805	1755.75137894561	1426.22589261646	2371.57442142121	1602.22791768136	1818	1415	3508	1810	2953	2037	3417	2635
+Snord98	-0.405906224465692	5.17577368514848	0.966419614738753	0.325574742787118	0.430452817520395	0.148055095733361	553	24.3637867747828	9.82165109321115	111.798297982712	19.0260901206433	51.8118390052127	53.4419755485611	58.3733890312754	19.3854198795404	44	24	150	32	74	77	96	56
+1600002D24Rik	1.27011387184163	-1.04585152517957	0.961158554000621	0.326895153468287	0.431587161501975	0.571178325056528	7	0	0.694051630500793	1.2161122714849	0.6923364242693	0	0	1.49064397310282	0	0	1	2	2	0	0	2	0
+Map1lc3a	-1.14709638433051	0.508393686785022	0.959990722198208	0.32718921533673	0.431587161501975	0.906355460018944	21	0.74532198655141	0	1.40031997311386	2.08215489150238	3.64833681445471	0	4.98350184029649	0	1	0	2	3	6	0	9	0
+8430429K09Rik	-1.3414156662313	-0.646531504052733	0.95101637800707	0.329460721920131	0.434081620913244	1.09628514397537	11	0	0	1.03850463640395	0	2.86464823551992	0	0.594565316270102	0	0	0	3	0	7	0	1	0
+Mir505	-0.943456398194506	0.15617379176166	0.947097472025823	0.330459212871538	0.434894996408795	0.393870389120889	16	1.38810326100159	0.608056135742452	0.34616821213465	0.553722426699609	1.22770638665139	1.49064397310282	1.1891306325402	2.80063994622771	2	1	1	1	3	2	2	4
+2210015D19Rik	-1.68603662544734	-1.44669874969517	0.944398994380489	0.331149094714323	0.435300826116408	1.44754483144648	5	0.74532198655141	0	0	0	0	0	2.21488970679844	0	1	0	0	0	0	0	4	0
+Gm9776	-1.40607274664126	-1.117570120137	0.909181557848226	0.340331668786721	0.446856656024912	1.04170396479238	7	0	0	1.2161122714849	0	0.553722426699609	1.63694184886853	0	0	0	0	2	0	1	4	0	0
+Gm10336	1.46642692596801	-1.85743790875601	0.903427148882018	0.341864425738265	0.447838472752423	0.638146949527696	4	0	0	0.700159986556928	1.38810326100159	0	0	0	0.409235462217131	0	0	1	2	0	0	0	1
+Gm16897	1.46642692596801	-1.85743790875601	0.903427148882018	0.341864425738265	0.447838472752423	0.638146949527696	4	0	0	0.608056135742452	0.6923364242693	0	0	0	0.594565316270102	0	0	1	2	0	0	0	1
+Mir32	-0.44118887598408	4.19350189789183	0.898649650574614	0.343144047653345	0.448620773316011	0.176547126031611	274	10.5207261072926	5.32006100882271	40.9927092603276	16.6478288555628	33.6076793547326	24.9858586980285	17.6336279365311	15.9237377581939	19	13	55	28	48	36	29	46
+4930474G06Rik	1.46102259696366	-1.84717448236549	0.896800174910108	0.343641153267479	0.448620773316011	0.638146949527696	4	0.409235462217131	0.74532198655141	0.594565316270102	0	0	0	0.34616821213465	0	1	1	1	0	0	0	1	0
+A430093F15Rik	1.46102259696366	-1.84717448236549	0.896800174910108	0.343641153267479	0.448620773316011	0.638146949527696	4	0.553722426699609	0.409235462217131	0.74532198655141	0	0	0	0.608056135742452	0	1	1	1	0	0	0	1	0
+Mir872	-0.31739399651627	5.84043746331986	0.886164346084638	0.346518854683679	0.451860586507517	0.0990643765497606	859	43.7800417734565	22.8471020008869	90.8104779787359	27.8280114307649	135.648601552357	73.7260992174926	45.5103991262003	81.8980923990936	72	66	164	68	182	124	65	118
+Fam19a2	1.4480882584731	-1.85004212492862	0.882418462846213	0.347540136529334	0.452674995182614	0.638146949527696	4	0.694051630500793	0	0.34616821213465	0.553722426699609	0	0.74532198655141	0	0	1	0	1	1	0	1	0	0
+Nol8	-1.14310540598069	-0.147512884347668	0.880430696423492	0.348083742288729	0.452866077481687	0.84067895002272	14	0	0	1.40031997311386	1.38810326100159	3.64833681445471	0	2.21488970679844	0	0	0	2	2	6	0	4	0
+Mir501	-0.507499478420336	4.85304180354494	0.872779448711603	0.350186987306599	0.455083545007779	0.260597386343111	395	37.699480416032	12.4620556368474	4.42977941359688	13.9140057153825	53.6631830317015	39.2413108738267	20.3046396101509	61.0765434840698	62	36	8	34	72	66	29	88
+Gm6225	-1.33737355871558	-0.76777742001415	0.847486445177161	0.357264384067252	0.463238955378804	1.06898496044319	8	0	0	0	1.38810326100159	0	1.03850463640395	0	1.22770638665139	0	0	0	2	0	3	0	3
+Srsf7	-1.31253914025462	-0.791928890076212	0.847450549508221	0.357274566812749	0.463238955378804	0.989656808613828	8	0.608056135742452	0	0	0.409235462217131	0.74532198655141	0	3.50079993278464	0	1	0	0	1	1	0	5	0
+Mir676	0.291337691824197	6.50357735691488	0.837065743660259	0.360237320273243	0.466550263827208	0.0910787939974285	1363	80.843474298143	40.9235462217131	271.297203104713	82.050013645274	131.630077472703	94.3910217481078	86.9520274111706	51.2328953959282	146	100	364	138	188	136	143	148
+Mir874	-0.386150307522115	4.9631232643235	0.831624548011229	0.361803194305119	0.468046989458209	0.152452898646276	439	26.7554392321546	32.2073593816187	27.0680135895309	26.1464138369254	26.654952334368	36.5456801621742	14.7324766398167	64.8430128299727	45	46	39	43	77	66	36	87
+A930016O22Rik	1.07570061925198	0.391593006351726	0.820471077529275	0.365042469843883	0.471702670545719	0.949523508015469	20	0	0	4.75652253016081	4.20095991934157	0	0	0.6923364242693	2.21488970679844	0	0	8	6	0	0	2	4
+Scarna10	-0.865381535729171	0.577010125134298	0.817565599060581	0.365892890193918	0.472266728180158	0.523746471452758	23	0	1.40031997311386	3.47025815250396	0.608056135742452	2.42317748494255	1.66116728009883	1.63694184886853	0.74532198655141	0	2	5	1	7	3	4	1
+Mir3058	1.11179527728488	-0.603337449604796	0.814544576184019	0.36678004734819	0.472876874603711	0.650796215220554	9	1.49064397310282	1.7836959488103	0.700159986556928	0	0	0	1.10744485339922	0.409235462217131	2	3	1	0	0	0	2	1
+Wiz	-0.857742297715704	0.701947808508795	0.810671238982327	0.367921873088047	0.473663971071304	0.553818080700373	26	0	0.74532198655141	3.56739189762061	1.40031997311386	6.94051630500793	0.608056135742452	1.03850463640395	1.66116728009883	0	1	6	2	10	1	3	3
+Mir879	0.812363402700543	0.334336689004371	0.809549677514561	0.368253422163819	0.473663971071304	0.37152081648582	19	2.23596595965423	0.594565316270102	4.20095991934157	1.38810326100159	1.82416840722736	0.34616821213465	1.10744485339922	0.409235462217131	3	1	6	2	3	1	2	1
+4930523C07Rik	-1.09211471521139	-1.02690937822298	0.808257447298417	0.368635938923153	0.473663971071304	0.348360020054753	7	0.608056135742452	0	0	0.409235462217131	0.74532198655141	0.594565316270102	1.40031997311386	0.694051630500793	1	0	0	1	1	1	2	1
+4921511C10Rik	-1.2256092071291	-1.03320326700344	0.805325970904239	0.369505747077211	0.473839841020977	0.735931643655989	7	0	0.694051630500793	0.608056135742452	0	0	0	2.23596595965423	1.1891306325402	0	1	1	0	0	0	3	2
+Oaz1-ps	-0.737820867576816	1.58263227399166	0.804997517356526	0.369603381690333	0.473839841020977	0.4438156606492	41	1.2161122714849	2.0770092728079	1.10744485339922	1.63694184886853	3.72660993275705	6.54021847897112	4.9011199058985	2.77620652200317	2	6	2	4	5	11	7	4
+1700012D01Rik	-1.0859821547572	-1.024039731605	0.798006856830892	0.371689955439951	0.475456289922543	0.351068946209794	7	0.409235462217131	0.74532198655141	0	0	0.694051630500793	0.608056135742452	0.6923364242693	0.553722426699609	1	1	0	0	1	1	2	1
+4933400L20Rik	-1.39384902482183	-1.91033091593125	0.79798120266498	0.371697642954346	0.475456289922543	0.638146949527696	4	0	0	0.700159986556928	0	0.608056135742452	0.34616821213465	0.553722426699609	0	0	0	1	0	1	1	1	0
+5430417L22Rik	-1.39057474572072	-1.91218771891614	0.794543710086224	0.372729733882185	0.476242582709489	0.638146949527696	4	0	0	0.694051630500793	0	0.34616821213465	0	0.818470924434263	0	0	0	1	0	1	0	2	0
+Rit1	-1.18066685446434	-0.884962013744858	0.791583104599352	0.373621858343823	0.476818313576534	0.720336278635795	8	0.594565316270102	0.700159986556928	0	0	1.3846728485386	0	0.818470924434263	0	1	1	0	0	4	0	2	0
+Mipep	-1.08044068436668	-0.0515533594384622	0.787886801050346	0.374739876264079	0.476818313576534	0.841794812461123	14	0.553722426699609	0.818470924434263	0.74532198655141	0	2.80063994622771	0	3.64833681445471	0	1	2	1	0	4	0	6	0
+4933433G15Rik	1.36260750472985	-1.9178801928314	0.787517262160391	0.374851908219239	0.476818313576534	0.638146949527696	4	0	0.608056135742452	0.6923364242693	0	0	0	0	0.700159986556928	0	1	2	0	0	0	0	1
+Mir487b	1.36260750472985	-1.9178801928314	0.787517262160391	0.374851908219239	0.476818313576534	0.638146949527696	4	0	0.74532198655141	1.1891306325402	0	0	0	0	0.553722426699609	0	1	2	0	0	0	0	1
+Mir434	0.398704294242934	5.32809134795326	0.783610869712371	0.376039077482178	0.477795754350964	0.18096155087466	623	49.1912511123931	33.2956577111257	112.725757835665	38.8668913080444	98.5050939902772	22.5009337887522	7.19839154709492	18.0063603375538	66	56	161	56	162	65	13	44
+Sh2d3c	0.900515173139309	-0.101480748012929	0.763563114755328	0.38221575013348	0.485103638378532	0.444798572471769	13	1.38810326100159	1.82416840722736	0.34616821213465	1.10744485339922	0.818470924434263	0	1.1891306325402	0.700159986556928	2	3	1	2	2	0	2	1
+Ppargc1a	-0.952606212022499	0.293782672785089	0.75838732080199	0.383833678116596	0.486615807478929	0.702746747997422	18	0.553722426699609	0.818470924434263	2.23596595965423	0	2.10047995967078	0	4.86444908593961	0.34616821213465	1	2	3	0	3	0	8	1
+4930426L09Rik	-1.33608764035918	-1.94442030790985	0.737239117955896	0.390546724942404	0.494576929144598	0.638146949527696	4	0	0	0.594565316270102	0	1.38810326100159	0.608056135742452	0	0	0	0	1	0	2	1	0	0
+Mir130a	-0.261350701998935	9.55082938449014	0.734046919676931	0.391574561217655	0.495328796396169	0.0885182047386422	11048	739.368945804116	579.533111468162	1201.51892422708	340.97568895263	1090.27945817153	599.12071668588	822.835473152757	986.383859692098	1056	835	1976	985	1969	1464	1104	1659
+Vaultrc5	0.282392631962779	7.14209168134461	0.729952648369178	0.392898537427318	0.496274575782948	0.10070095996879	2022	156.878483021553	55.7330821536786	212.07568942595	110.493574798625	181.113242731993	94.5358852869461	183.441916477915	198.498766323227	258	161	383	270	243	159	262	286
+5031425E22Rik	-0.655319614563334	1.53769192518981	0.729047433685358	0.393192126650118	0.496274575782948	0.363571080538495	41	2.98128794620564	1.7836959488103	2.80063994622771	2.77620652200317	3.04028067871226	1.73084106067325	4.98350184029649	2.86464823551992	4	3	4	4	5	5	9	7
+Scarna9	-0.599527727601071	2.21560927778464	0.724004344056638	0.394833544677201	0.497420367765052	0.348222237256779	67	5.94565316270102	3.50079993278464	2.08215489150238	3.04028067871226	7.26953245482764	3.87605698689727	3.27388369773705	5.96257589241128	10	5	3	5	21	7	8	8
+BB123696	-1.32246101499089	-1.95221127258358	0.723580867527716	0.394971825762609	0.497420367765052	0.638146949527696	4	0	0	0.553722426699609	0	1.49064397310282	0	0	0.694051630500793	0	0	1	0	2	0	0	1
+Prmt1	-1.06380483859566	-0.662947500131192	0.721243512173664	0.395736317328835	0.497833669318854	0.738498350667854	10	0.700159986556928	0	1.2161122714849	0	2.76861213349805	0	1.49064397310282	0	1	0	2	0	5	0	2	0
+Gm10649	1.12566344203322	-1.18821756557948	0.712277825904559	0.398688664467222	0.500995337177424	0.562352672840447	6	1.1891306325402	0.700159986556928	0	0.608056135742452	0	0	0.409235462217131	0.74532198655141	2	1	0	1	0	0	1	1
+Neat1	-0.639359274050819	2.1571676262454	0.709321034654789	0.399669304108483	0.501675111097667	0.419913557357179	65	2.04617731108566	5.21725390585987	2.37826126508041	4.20095991934157	14.5750842405167	0.608056135742452	4.8463549698851	3.87605698689727	5	7	4	6	21	1	14	7
+9530082P21Rik	-1.29928622234974	-1.81190568253906	0.70061364459267	0.402577577574511	0.504216263460502	0.638146949527696	4	0	0	0	0.700159986556928	0	0	1.03850463640395	0	0	0	0	1	0	0	3	0
+Mir1196	-1.29928622234974	-1.81190568253906	0.70061364459267	0.402577577574511	0.504216263460502	0.638146949527696	4	0	0	0	0.700159986556928	0	0	1.03850463640395	0	0	0	0	1	0	0	3	0
+Fendrr	-1.29192105353688	-1.81623114353469	0.693296919413	0.405045235000079	0.506665978812924	0.638146949527696	4	0	0	0	0.700159986556928	0	0.608056135742452	0.34616821213465	0.553722426699609	0	0	0	1	0	1	1	1
+Scarna8	-0.999506227456247	-0.699029941590388	0.690854219790067	0.405873980809458	0.506665978812924	0.557509606131874	9	0	0.34616821213465	1.10744485339922	0	0	1.1891306325402	0.700159986556928	2.08215489150238	0	1	2	0	0	2	1	3
+Mir466d	-1.28861313716212	-1.81815026371424	0.690049238262354	0.40614763346158	0.506665978812924	0.638146949527696	4	0	0	0	0.694051630500793	0	0	1.10744485339922	0.409235462217131	0	0	0	1	0	0	2	1
+Mir4660	-0.865223107806529	0.870609125534787	0.689572866769698	0.406309702553747	0.506665978812924	0.719121791949277	26	0.694051630500793	1.82416840722736	0.34616821213465	1.66116728009883	2.86464823551992	0	5.94565316270102	0.700159986556928	1	3	1	3	7	0	10	1
+Nup88	-0.994879007728008	-2.30163521641929e-05	0.686180066902962	0.407466728609021	0.50755408006866	0.863762527575565	15	0.409235462217131	0.74532198655141	1.7836959488103	0	2.08215489150238	0	2.42317748494255	0	1	1	3	0	3	0	7	0
+E530011L22Rik	-1.27580227426471	-1.97993258785952	0.676913088521708	0.410651721914084	0.510963592915997	0.638146949527696	4	0	0	0.409235462217131	0	1.7836959488103	0	0	0	0	0	1	0	3	0	0	0
+Mir5100	-0.788526318434271	0.26769200133922	0.673888040189019	0.411699334582027	0.511709085793129	0.439360569117057	18	0.74532198655141	0.594565316270102	1.40031997311386	1.38810326100159	3.64833681445471	0.34616821213465	0.553722426699609	1.63694184886853	1	1	2	2	6	1	1	4
+Rmrp	-0.270601531427536	7.71631176697529	0.665425199542606	0.414651152181091	0.514817154122551	0.102898722153222	3178	192.94635327922	116.746778062551	235.048216039427	150.612500062294	245.950512792496	336.885537921237	130.804369579422	338.877433493553	278	192	679	272	601	452	220	484
+Rprl3	-1.10737514257782	-0.9227689236246	0.663773467279277	0.415230919844423	0.514976608198355	0.819188029544533	8	0.34616821213465	0.553722426699609	0	0	2.97282658135051	0	0	0.608056135742452	1	1	0	0	5	0	0	1
+Mir425	-0.277277075283714	6.71769389412303	0.662052099799532	0.415836408382323	0.5151675808515	0.106025700821499	1583	84.5198028682008	38.4246715469461	178.852343823974	51.9729037015757	229.559171857834	139.128284007204	66.5151987229082	170.736701103195	139	111	323	127	308	234	95	246
+Mir30c-2	-0.270730891354565	6.46238538348622	0.658397300723195	0.417126327191569	0.516205140266356	0.100489664927346	1345	64.2318014971547	36.0127206751076	248.19222152162	48.1597906178782	156.835836988752	96.4731766396102	119.179002605521	58.1562596386212	116	88	333	81	224	139	196	168
+Mir296	0.918650575247036	-0.460583863860555	0.646016707018832	0.421540421088128	0.521102514042853	0.586540297557589	11	0.700159986556928	0	1.82416840722736	1.03850463640395	1.66116728009883	0	0.74532198655141	0	1	0	3	3	3	0	1	0
+3110056K07Rik	-0.989603596520668	-0.711642114345864	0.64170435401604	0.423094298970678	0.522457354031973	0.638378811182629	9	0	0.34616821213465	1.10744485339922	0	0.74532198655141	0.594565316270102	2.80063994622771	0	0	1	2	0	1	1	4	0
+Scarna2	-0.755500412836096	1.01246755651737	0.637707615191119	0.424542123954873	0.523678446954065	0.605284868865558	32	1.49064397310282	0	5.60127989245543	1.38810326100159	5.47250522168207	0	3.32233456019766	2.04617731108566	2	0	8	2	9	0	6	5
+2610307P16Rik	1.19203527185237	-1.14177901756194	0.633147249903327	0.426203226686721	0.524736006102895	1.06155235506615	6	0	0.6923364242693	0	0.818470924434263	0	0	0	1.38810326100159	0	2	0	2	0	0	0	2
+Rtel1	-1.23039465340402	-1.84226267531762	0.632829687724376	0.426319261750555	0.524736006102895	0.638146949527696	4	0	0.74532198655141	0	0	0.694051630500793	0	0.6923364242693	0	0	1	0	0	1	0	2	0
+Ngrn	-1.22311681059493	-1.84654729525618	0.626012370899972	0.428821786317683	0.527230931392738	0.638146949527696	4	0	0.34616821213465	0	0	0.74532198655141	0.594565316270102	0	0.694051630500793	0	1	0	0	1	1	0	1
+Ccdc11	-1.22145084475076	-1.86003780490525	0.624796590208214	0.429270407768496	0.527230931392738	0.638146949527696	4	0.74532198655141	0	0	0	0.608056135742452	0	0	0.818470924434263	1	0	0	0	1	0	0	2
+Gm12216	-0.918093834439149	-0.0491479794613772	0.610640381738943	0.434546796950864	0.532414737396833	0.753343264977246	14	0.6923364242693	1.10744485339922	0	0	2.97282658135051	0.700159986556928	0	2.43222454296981	2	2	0	0	5	1	0	4
+Snhg5	0.792370976491521	-0.126353809581079	0.609912825073741	0.434820634928121	0.532414737396833	0.414768649448908	13	1.82416840722736	0.34616821213465	1.10744485339922	0.818470924434263	0.74532198655141	1.1891306325402	0	1.38810326100159	3	1	2	2	1	2	0	2
+Ankzf1	-0.958262350393529	0.302026411391468	0.609726208537669	0.434890916085757	0.532414737396833	0.988738176073226	18	1.73084106067325	0	0	0	4.16195721389071	0	2.77620652200317	1.2161122714849	5	0	0	0	7	0	4	2
+Gm3086	-1.18327186593906	-1.88179103879875	0.58895609237948	0.442823075448616	0.540914268480127	0.638146949527696	4	0	0	0	0.409235462217131	1.49064397310282	0	0.700159986556928	0	0	0	0	1	2	0	1	0
+Ube2w	-0.802279929921059	-0.272312900376418	0.587283890198468	0.443471347669765	0.540914268480127	0.410066216185432	12	0.74532198655141	1.1891306325402	0.700159986556928	0	1.82416840722736	0.34616821213465	1.66116728009883	0.409235462217131	1	2	1	0	3	1	3	1
+1700034H15Rik	-1.04674949572586	-0.982650907487663	0.586722593488428	0.443689277257317	0.540914268480127	0.758623085525841	7	0	1.1891306325402	0	0	0.608056135742452	1.03850463640395	0.553722426699609	0	0	2	0	0	1	3	1	0
+Mir15b	0.24656896070166	6.17618442670063	0.586618149871978	0.443729846886414	0.540914268480127	0.0916084466421848	1064	71.9424032686823	67.915518696022	160.325926645683	67.4942310674121	56.4254185779479	55.9259650966606	35.6034852128904	114.034263942366	121	97	231	111	163	101	87	153
+4921513I03Rik	1.14837184321152	-1.11988704450467	0.583826690283896	0.444816277422034	0.541659949347428	1.08155044855555	6	0	1.49064397310282	0	1.40031997311386	0	1.2161122714849	0	0	0	2	0	2	0	2	0	0
+Dos	-1.17287286700938	-1.8878887802778	0.579649937847938	0.446449566832951	0.542714835821209	0.638146949527696	4	0	0	0	0.553722426699609	0.818470924434263	0	0	0.700159986556928	0	0	0	1	2	0	0	1
+4930467D21Rik	-1.17267992160388	-1.87708901455605	0.579180146144083	0.446633856999225	0.542714835821209	0.638146949527696	4	0	0.594565316270102	0	0	1.2161122714849	0	0.553722426699609	0	0	1	0	0	2	0	1	0
+Rbm7	-0.853542513878674	-0.0951110902489407	0.573725644670689	0.448782230949068	0.544745239907326	0.671938751806785	14	1.38810326100159	0	1.03850463640395	0	0.818470924434263	0	2.97282658135051	1.40031997311386	2	0	3	0	2	0	5	2
+Ccdc77	-1.0232112784976	-1.02595188621268	0.572008178023575	0.449462021652889	0.54499061286498	0.723536484205456	7	0.34616821213465	0	0	0.74532198655141	1.1891306325402	2.10047995967078	0	0	1	0	0	1	2	3	0	0
+6720483E21Rik	-0.825665353842278	-0.259023801546772	0.567288130543039	0.451338557855409	0.546685026022316	0.515159283405282	12	1.10744485339922	0.409235462217131	0.74532198655141	0	1.40031997311386	2.08215489150238	0	1.03850463640395	2	1	1	0	2	3	0	3
+Snord1b	-0.621761342358914	1.29867852621228	0.563020527811128	0.453045779725115	0.548170980558172	0.434159021715519	37	1.22770638665139	2.98128794620564	2.37826126508041	1.40031997311386	9.7167228270111	1.2161122714849	1.73084106067325	1.66116728009883	3	4	4	2	14	2	5	3
+Mir381	0.368492171592626	4.09543871906321	0.558832253931007	0.454731128164601	0.549627348766748	0.201394355653873	263	16.6478288555628	18.9043196370371	49.2776657655563	10.9450104433641	20.770092728079	11.0744485339922	9.82165109321115	11.1798297982712	28	27	71	18	60	20	24	15
+Mir374c	-0.335266662745085	4.48758171891385	0.547759351656518	0.459234669812613	0.554483342070044	0.170551770373454	323	16.6478288555628	18.9043196370371	22.2096521760254	25.538357701183	26.3087841222334	17.7191176543875	15.1417121020339	36.5207773410191	28	27	32	42	76	32	37	49
+Mir374	-0.335211309931185	4.48758817669401	0.546047559260372	0.459937171615764	0.554744516716265	0.171104819176038	323	17.0255718007886	9.34654172763554	17.7191176543875	17.1878894131195	56.6444709779072	19.0260901206433	25.9059195026063	34.0085298945389	28	27	32	42	76	32	37	49
+Snord110	-0.236098840513442	7.44069978615917	0.543138898139393	0.461134768678221	0.555601658988226	0.0950757338497175	2471	92.0807444278168	125.141268434112	121.542932278488	195.274360476469	263.392435107655	236.654075456242	184.617733713211	226.804938631935	266	226	297	262	443	338	266	373
+1110002L01Rik	-1.12773231903873	-1.9168419916144	0.539480899124843	0.462647938316189	0.556836811834147	0.638146949527696	4	0.74532198655141	0	0	0	1.82416840722736	0	0	0	1	0	0	0	3	0	0	0
+1700020I14Rik	-0.723461738500092	1.097311170671	0.526151070078519	0.468229539703269	0.562960911276533	0.703643329801019	32	2.21488970679844	0	4.47193191930846	1.1891306325402	4.20095991934157	0	7.29667362890942	0.6923364242693	4	0	6	2	6	0	12	2
+2810055G20Rik	0.660800065850144	0.393363476222798	0.513826135479116	0.473487225658162	0.568683078395751	0.415552579260601	19	1.22770638665139	2.23596595965423	1.7836959488103	1.40031997311386	2.77620652200317	0	0.6923364242693	1.10744485339922	3	3	3	2	4	0	2	2
+Orc4	-0.889232103497828	-0.667483328457936	0.507621915776015	0.476170126587911	0.571301675492363	0.680577549026061	9	1.1891306325402	0	0.694051630500793	0	0.34616821213465	0.553722426699609	1.63694184886853	0	2	0	1	0	1	1	4	0
+9430060I03Rik	-0.867194840602286	-0.543113814572424	0.506474801093563	0.476668882619395	0.571301675492363	0.672286615832741	10	1.82416840722736	0	0	0	2.98128794620564	0.594565316270102	0.700159986556928	0.694051630500793	3	0	0	0	4	1	1	1
+Mir3066	0.895932163192571	-0.734373809540091	0.500696283814971	0.47919434080503	0.573725858193641	0.674041652567878	8	1.2161122714849	0.34616821213465	0	0.818470924434263	0	1.1891306325402	0.700159986556928	0	2	1	0	2	0	2	1	0
+Ippk	-0.729780537783999	0.0377961024366007	0.476866721268046	0.489845001440862	0.585862837153064	0.553213236671085	15	0.553722426699609	0.818470924434263	0.74532198655141	0.594565316270102	3.50079993278464	0	2.43222454296981	0.34616821213465	1	2	1	1	5	0	4	1
+Adck5	-0.873923299404248	-1.28719304432644	0.456862327193267	0.499094031161067	0.596299779638511	0.436032966255926	6	0	0	0.694051630500793	0.608056135742452	0.34616821213465	1.10744485339922	0.409235462217131	0	0	0	1	1	1	2	1	0
+Mir500	0.514812662928076	1.62952105886076	0.451946124136276	0.501412217023574	0.59844282387437	0.39320640905673	47	2.04617731108566	2.98128794620564	7.72934911151132	3.50079993278464	6.94051630500793	4.25639295019716	0.34616821213465	1.10744485339922	5	4	13	5	10	7	1	2
+Khdrbs1	-0.861112793543412	-1.29379166967719	0.447835472031222	0.503364650463376	0.600145314711298	0.422080690199697	6	0	0	0.694051630500793	0.608056135742452	0.34616821213465	0	0.818470924434263	0.74532198655141	0	0	1	1	1	0	2	1
+Kcnk2	-0.897608749425824	-1.09973796154569	0.436925152795608	0.508610299045992	0.605766546149767	0.761046602197662	7	0.409235462217131	0	0	0.700159986556928	2.77620652200317	0	0	0.553722426699609	1	0	0	1	4	0	0	1
+Fam214b	-0.772753453334359	-0.164460281021816	0.433573733244178	0.510240561873216	0.607074537119228	0.699558211103527	12	0.74532198655141	1.1891306325402	0	0.694051630500793	0	0.34616821213465	2.21488970679844	1.22770638665139	1	2	0	1	0	1	4	3
+Mtf2	-0.786117710604442	-0.14040450688807	0.423175721804066	0.515356659408835	0.612522862901543	0.893833352186016	15	0.409235462217131	0	1.7836959488103	0.700159986556928	6.24646467450714	0	0.34616821213465	0	1	0	3	1	9	0	1	0
+Mir341	0.702831273971528	-0.545954714895442	0.41836163736832	0.517755689461387	0.614733862305351	0.409689207268588	10	0.594565316270102	1.40031997311386	1.38810326100159	0.608056135742452	0.6923364242693	0	0.818470924434263	0	1	2	2	1	2	0	2	0
+9530052E02Rik	-0.646232903260623	-0.395737821516695	0.414375872786814	0.519756799533095	0.616363273439468	0.285370943840746	11	0.34616821213465	0.553722426699609	0.409235462217131	0.74532198655141	1.1891306325402	0.700159986556928	1.38810326100159	1.2161122714849	1	1	1	1	2	1	2	2
+Mir1982	-0.650672133732135	0.276467251205392	0.413480033073277	0.520208442000182	0.616363273439468	0.526701685427433	17	0	2.21488970679844	0.409235462217131	0.74532198655141	1.7836959488103	2.80063994622771	1.38810326100159	1.2161122714849	0	4	1	1	3	4	2	2
+4931431C16Rik	0.718654273559686	-0.910415680966269	0.412023774044983	0.52094410081342	0.616594625547834	0.321159713025774	8	0.409235462217131	0	1.7836959488103	0.700159986556928	0.694051630500793	0.608056135742452	0	0.553722426699609	1	0	3	1	1	1	0	1
+Mir677	0.401672631842521	2.71045279613918	0.408490305674572	0.522736762791025	0.618075281186072	0.293416972887136	94	11.1048260880127	7.29667362890942	5.88485960628905	3.32233456019766	5.72929647103984	4.47193191930846	6.54021847897112	8.40191983868314	16	12	17	6	14	6	11	12
+Mir301b	0.668244968006141	-0.000152212209311249	0.401116060218906	0.526513439125207	0.621896308531947	0.544470317462255	14	2.21488970679844	0.818470924434263	0.74532198655141	0.594565316270102	2.10047995967078	1.38810326100159	0.608056135742452	0	4	2	1	1	3	2	1	0
+BB283400	-0.954993112827596	-1.24182909239782	0.385103185675343	0.534884672392335	0.630985193820152	1.17063085477946	6	0	0.700159986556928	0.694051630500793	0	0	0	1.63694184886853	0	0	1	1	0	0	0	4	0
+Trappc13	-0.852286154023106	-1.30735042313393	0.384293486241944	0.535314344976255	0.630985193820152	0.674847709419674	6	0	0	0.34616821213465	0.553722426699609	0.409235462217131	0	0	2.10047995967078	0	0	1	1	1	0	0	3
+2900008C10Rik	0.73926991904996	-0.84577424045081	0.378233776668636	0.538550008150305	0.634144024044889	0.517093681585524	8	0.594565316270102	1.40031997311386	1.38810326100159	0	0	1.10744485339922	0	0.74532198655141	1	2	2	0	0	2	0	1
+Mir362	-0.351210418992178	3.47283028728908	0.36593155271559	0.545230315668078	0.641348237296162	0.27389925589474	169	11.1798297982712	5.35108784643091	23.8054395429356	9.7167228270111	24.3222454296981	9.00037351550089	2.76861213349805	10.6401220176454	15	9	34	14	40	26	5	26
+Ftx	-0.193865219520525	6.89404813020278	0.354863929570154	0.551372607590776	0.647905401916659	0.0968254934711499	1746	87.4881434185383	53.2006100882271	195.274360476469	124.858716416721	267.461114864747	120.764983707138	100.937318533247	91.3884080035475	158	130	262	210	382	174	166	264
+Wls	0.693876303749493	-0.914003373420603	0.350683566732869	0.553726434380313	0.65000191525508	0.448880485696691	8	0.608056135742452	0	1.66116728009883	0.409235462217131	0.74532198655141	1.1891306325402	0	0	1	0	3	1	1	2	0	0
+Gm19782	0.892972743898911	-1.5107435275881	0.348961696491681	0.554701477752234	0.650260983446261	0.913993274250312	5	1.1891306325402	0.700159986556928	0	0	0.6923364242693	0	0	0	2	1	0	0	2	0	0	0
+Snora81	-0.664942330922502	0.418741654472385	0.34828256968178	0.555086939418631	0.650260983446261	0.867097618747706	22	0	0.700159986556928	3.47025815250396	1.2161122714849	3.80785033348115	0	1.22770638665139	0	0	1	5	2	11	0	3	0
+Gm12191	-0.779641424812407	-1.34653785107471	0.340842146315986	0.559343522022678	0.654575342182437	0.57516499475425	6	0	0	0.700159986556928	0.694051630500793	1.82416840722736	0	0.553722426699609	0	0	0	1	1	3	0	1	0
+5930430L01Rik	-0.730088886708952	0.446296889470283	0.334333961479016	0.563118170090904	0.658317450895207	1.11562132780517	18	0	1.38810326100159	0	1.3846728485386	0	0	4.47193191930846	3.56739189762061	0	2	0	4	0	0	6	6
+1700012D14Rik	-0.642764433929117	-0.105757332812396	0.332943645810879	0.56393088224827	0.65859277036364	0.690060012834436	15	0	0	2.76861213349805	0.409235462217131	3.72660993275705	1.1891306325402	1.40031997311386	0	0	0	5	1	5	2	2	0
+E130102H24Rik	-0.181549438835569	10.3401804295945	0.326501797576952	0.56772625333123	0.662347295553101	0.0965067785199278	19702	1024.33406033279	958.485301721595	3025.0792753187	539.330074505784	1691.62201356731	844.661994016159	2249.38175541216	1300.90891199898	1463	1381	4975	1558	3055	2064	3018	2188
+E130307A14Rik	0.672561998437389	-0.899707549812139	0.324527272235918	0.568899538624949	0.663038175251345	0.474102791309215	8	0	0.74532198655141	1.7836959488103	0.700159986556928	0	0	0.34616821213465	1.10744485339922	0	1	3	1	0	0	1	2
+Mir101a	-0.181804203945389	10.3393802641415	0.322678297680454	0.570002514408693	0.663645784632978	0.0979305840479287	19692	1088.17010036506	821.09470176901	3482.59577313416	1080.63838868973	1856.39538242171	714.491189845917	1669.47311649932	895.407191331083	1460	1381	4974	1557	3053	2064	3015	2188
+Mir219-1	-0.361737007917808	2.54971603536105	0.31804655678911	0.572783964405732	0.666204386734904	0.303377381844108	90	4.16430978300476	2.43222454296981	7.26953245482764	4.42977941359688	8.18470924434263	7.4532198655141	4.16195721389071	9.802239811797	6	4	21	8	20	10	7	14
+Snora34	-0.514459997484016	0.908821128555567	0.316521651859038	0.573705541558411	0.666596764682431	0.501853146401357	26	0.818470924434263	2.23596595965423	1.1891306325402	2.10047995967078	2.08215489150238	3.04028067871226	2.42317748494255	0.553722426699609	2	3	2	3	3	5	7	1
+Mirlet7g	-0.190117170453271	11.2463170342993	0.308903572919803	0.578353777357827	0.671313997930093	0.112129757403857	38152	1641.00027290548	1640.47484850288	7279.21350069232	1548.71897773602	2617.37785195009	2622.42941284935	1092.65868411974	3761.64006612497	2760	2343	10488	2547	7561	4736	2670	5047
+A330093E20Rik	-0.675263869419669	-0.668838437168626	0.306147904235998	0.580053661464462	0.672602873710316	0.636159736493662	9	0.608056135742452	0.34616821213465	0	0.409235462217131	2.23596595965423	0	2.10047995967078	0	1	1	0	1	3	0	3	0
+Gm14005	0.551706913406605	0.870438438938928	0.285764730765445	0.592947462091344	0.686350936905082	0.734749060352456	26	4.20095991934157	2.08215489150238	3.04028067871226	0.34616821213465	1.66116728009883	0	5.96257589241128	0	6	3	5	1	3	0	8	0
+Snora47	-0.523932521969782	-0.194199796226255	0.285508796535561	0.593113079569159	0.686350936905082	0.344949318553019	13	0.74532198655141	0.594565316270102	1.40031997311386	0.694051630500793	2.43222454296981	0.34616821213465	1.10744485339922	0.409235462217131	1	1	2	1	4	1	2	1
+H19	-0.753721349308933	-1.20100205797944	0.282884520666251	0.594816802451883	0.687625097869908	0.827979840883944	6	0.608056135742452	0.34616821213465	0	0	0	0.594565316270102	0	2.08215489150238	1	1	0	0	0	1	0	3
+Mir130b	0.304176281778253	3.21896644383937	0.2809986483258	0.59604741315754	0.6883503020372	0.256017543974603	135	7.36623831990836	9.68918582516833	16.0532635392927	9.802239811797	12.4929293490143	8.51278590039432	2.7693456970772	12.735615814091	18	13	27	14	18	14	8	23
+4930414L22Rik	-0.61099183328437	-0.855374181667034	0.267524208976438	0.604997409713699	0.697367667408675	0.451827273797297	8	0.74532198655141	0	0.700159986556928	0.694051630500793	0.608056135742452	0	1.66116728009883	0.409235462217131	1	0	1	1	1	0	3	1
+Mir382	0.504741462105297	-0.328083312181909	0.267404796262636	0.605077993632417	0.697367667408675	0.306350590322673	12	0.553722426699609	0.409235462217131	2.98128794620564	0.594565316270102	1.40031997311386	0.694051630500793	0.608056135742452	0.34616821213465	1	1	4	1	2	1	1	1
+Snord64	0.265277191367319	3.7341280013487	0.265939246283576	0.606068860648518	0.697804813319837	0.212354540322462	197	13.0804369579422	13.3030397445816	33.3144782640381	10.3369543076217	8.30803709123159	7.19839154709492	7.77547378212549	26.0862695292994	22	19	48	17	24	13	19	35
+Mir5113	-0.577134361008808	-0.876744391070353	0.258750062173541	0.610980182020199	0.70275039081154	0.345492016177573	8	0.409235462217131	0	0.594565316270102	0.700159986556928	1.38810326100159	0	0.6923364242693	0.553722426699609	1	0	1	1	2	0	2	1
+Mrpl15	-0.498946713905488	0.160406486700474	0.254926388520599	0.613627419673212	0.705084477187447	0.464611117175896	16	0.34616821213465	1.10744485339922	0.409235462217131	1.49064397310282	2.37826126508041	0.700159986556928	2.77620652200317	0.608056135742452	1	2	1	2	4	1	4	1
+Mir672	0.732247193601247	-1.58750764889498	0.253128179624214	0.614880992331871	0.705814096831655	0.75646210439575	5	0	0	0.594565316270102	1.40031997311386	1.38810326100159	0	0	0	0	0	1	2	2	0	0	0
+Mir20a	0.192640028083502	5.37436649559888	0.251385959345503	0.616100867246206	0.706503607565749	0.128674525181351	643	27.3500045484247	30.8070394085048	133.951964686653	38.3075365517745	34.616821213465	30.4547334684785	16.7786539509024	75.2775206416924	46	44	193	63	100	55	41	101
+Mir496	-0.520288086364048	-0.203860250830963	0.249557297741909	0.617386970326597	0.707267603556875	0.468914227333965	13	1.49064397310282	0	1.40031997311386	0.694051630500793	2.43222454296981	0.6923364242693	0	0.818470924434263	2	0	2	1	4	2	0	2
+Peg13	-0.590397750614677	-0.400146846601117	0.246338851081817	0.619664885162189	0.708782568701613	0.702486417906377	11	0	0.74532198655141	0.594565316270102	1.40031997311386	2.08215489150238	0	1.3846728485386	0	0	1	1	2	3	0	4	0
+4931440J10Rik	-0.481631563216177	0.0633720554304471	0.245041840594655	0.6205881131776	0.708782568701613	0.405479833057664	15	0.608056135742452	0.34616821213465	1.10744485339922	0.818470924434263	1.49064397310282	2.37826126508041	1.40031997311386	0.694051630500793	1	1	2	2	2	4	2	1
+9930014A18Rik	-0.610655870104371	-0.851883878821248	0.244851668780081	0.620723735403846	0.708782568701613	0.584708929928422	8	0	0	0.553722426699609	0.818470924434263	0.74532198655141	0	2.10047995967078	0.694051630500793	0	0	1	2	1	0	3	1
+Krit1	0.644436588714708	-1.5504651099801	0.244192703857936	0.621194188169688	0.708782568701613	0.320732506844945	5	0.694051630500793	0.608056135742452	0.34616821213465	0	0.409235462217131	0	0.594565316270102	0	1	1	1	0	1	0	1	0
+Rbmx	-0.268116177100184	3.91644643078337	0.241556327073183	0.623084306219788	0.710228964432346	0.250970254291636	240	12.670473771374	5.35108784643091	52.5119989917696	9.02267119651031	29.1866945156377	11.4235510004434	18.2728400810871	4.91082554660558	17	9	75	13	48	33	33	12
+4930526I15Rik	0.610963539584442	-0.987224885219765	0.240448654231832	0.623882260705245	0.710428801860963	0.654922178563561	8	0	0	2.77620652200317	0.608056135742452	0.34616821213465	0	0	1.49064397310282	0	0	4	1	1	0	0	2
+A930006I01Rik	0.543396949240023	0.0174515912945599	0.234373574731095	0.628299681795506	0.714745699829185	0.696483934608856	14	1.49064397310282	2.37826126508041	1.40031997311386	0	0.608056135742452	0.34616821213465	2.21488970679844	0	2	4	2	0	1	1	4	0
+Dnajc24	-0.570407135137464	-0.877043607793173	0.231988421676062	0.630053347449295	0.716026762390085	0.465962587985503	8	0	0	0.594565316270102	1.40031997311386	1.38810326100159	0	0.6923364242693	0.553722426699609	0	0	1	2	2	0	2	1
+Gm19466	0.73118855934275	-1.4218373347037	0.230171335898203	0.631396814608967	0.716839567630677	0.99971245016648	5	1.49064397310282	0.594565316270102	0	0	0	0	1.10744485339922	0	2	1	0	0	0	0	2	0
+Mir7-1	0.290440785396972	2.75787554356562	0.227866365686427	0.633110418992986	0.71775805276525	0.271865157269323	96	4.50018675775045	5.53722426699609	6.95700285769123	8.19854185206551	5.94565316270102	8.40191983868314	6.94051630500793	7.90472976465187	13	10	17	11	10	12	10	13
+Mir17	-0.179174260543732	5.14340962406586	0.227392612287832	0.6334639431504	0.71775805276525	0.119791680241239	534	40.9927092603276	21.4043513857237	85.4195183599452	24.2918070675278	58.3733890312754	21.8085973644829	28.2398437616801	31.101895128502	55	36	122	35	96	63	51	76
+Tk2	-0.52635150459133	-0.557893486747629	0.225752575910145	0.634691272374922	0.717949696870797	0.450272215766286	10	0.6923364242693	0	0.818470924434263	0	0.594565316270102	0.700159986556928	0.694051630500793	1.82416840722736	2	0	2	0	1	1	1	3
+Mir702	0.524053809454984	-0.362274302356528	0.225485659374154	0.634891537373036	0.717949696870797	0.572874451829861	12	1.2161122714849	0.34616821213465	2.21488970679844	0	2.23596595965423	0	1.40031997311386	0	2	1	4	0	3	0	2	0
+Gm20757	0.721265742466435	-1.41634118211573	0.22370760499588	0.636229315029398	0.718366585108774	1.00572482366432	5	0.6923364242693	0.553722426699609	0	0	0	1.40031997311386	0	0	2	1	0	0	0	2	0	0
+Mirlet7c-2	0.154946376245715	5.82839649316933	0.223323206949074	0.636519384351421	0.718366585108774	0.0934803049520687	861	55.8991489913558	42.8087027714473	152.63487706941	56.912233701065	93.6406449043376	30.4628026678492	41.5291820024707	39.6958398350617	75	72	218	82	154	88	75	97
+Mir451	-0.156682328592748	10.6380401633232	0.220442913286954	0.638702647727878	0.719363988392913	0.106602213176026	23834	940.832327637185	1102.33121810954	3138.1157392736	1502.54333115117	2322.29675565565	1272.66149210895	806.571934273734	2692.7521610402	2299	1479	5278	2146	3346	2093	2330	4863
+9330020H09Rik	-0.637644233323968	-1.2948908997764	0.219196758007953	0.639652631144922	0.719363988392913	0.696962843736185	6	0.608056135742452	0	0	0.409235462217131	2.23596595965423	0	0.700159986556928	0	1	0	0	1	3	0	1	0
+Arhgap1	-0.575355107235296	0.352663424761477	0.219188668339582	0.639658808899272	0.719363988392913	1.0380768282555	18	1.66116728009883	1.22770638665139	0	0	4.20095991934157	0	3.64833681445471	0	3	3	0	0	6	0	6	0
+Cyp4f41-ps	-0.692755863172609	-1.59588111942642	0.218840241661855	0.639925020349524	0.719363988392913	0.772298552691205	5	0	0	1.38810326100159	0	0	0.553722426699609	0.818470924434263	0	0	0	2	0	0	1	2	0
+Gm10033	-0.62501288129082	-0.783613695123238	0.21663388842083	0.641616783431397	0.719988789842337	1.03598349010569	10	0	0	2.21488970679844	0	3.72660993275705	0	0.700159986556928	0	0	0	4	0	5	0	1	0
+Fance	-0.775732397726876	-1.15359273579821	0.216470011812751	0.641742856502767	0.719988789842337	1.66311158177282	6	0.6923364242693	0	0	0	0	0	2.77620652200317	0	2	0	0	0	0	0	4	0
+Mir491	0.611721821404006	-1.53108675865266	0.213870205378786	0.643750741391326	0.72153201957515	0.388548504437689	5	0.553722426699609	0.409235462217131	0.74532198655141	0	0	0	0.608056135742452	0.34616821213465	1	1	1	0	0	0	1	1
+Snord70	-0.292013936779217	2.6199986784332	0.209263208644491	0.647345507344316	0.724849091148052	0.301843922499671	92	3.64833681445471	3.80785033348115	8.85955882719375	2.45541277330279	17.1424056906824	5.94565316270102	4.20095991934157	9.7167228270111	6	11	16	6	23	10	6	14
+Snord61	-0.246992602718163	3.86740657871826	0.199505255480424	0.655120486221492	0.732835759586982	0.257897355516367	233	9.72889817187923	2.7693456970772	41.5291820024707	5.32006100882271	34.2848113813649	18.4315248043731	22.4051195698217	8.32861956600951	16	8	75	13	46	31	32	12
+Gm11747	-0.441154583804285	-0.316218521703034	0.195167907284729	0.658649773120057	0.736062087296753	0.336170657987361	12	0.553722426699609	0.409235462217131	2.23596595965423	0	1.40031997311386	0.694051630500793	1.2161122714849	0.6923364242693	1	1	3	0	2	1	2	2
+Cdh23	-0.452270902928101	-0.109703011953558	0.193990040275081	0.659616283784396	0.73642091956751	0.475027167675216	14	0	0	2.77620652200317	1.2161122714849	0.6923364242693	1.10744485339922	1.22770638665139	0.74532198655141	0	0	4	2	2	2	3	1
+Snora75	-0.533969605582423	-0.672133323861964	0.191570786586492	0.66161246850798	0.737927494200982	0.715643886480692	10	0	0	1.82416840722736	0.34616821213465	2.21488970679844	0	1.49064397310282	0	0	0	3	1	4	0	2	0
+C330013E15Rik	-0.580324856918295	-0.865466328789877	0.190648926508246	0.662377069597176	0.73805882461951	0.84754638959377	8	0	0	0.34616821213465	1.10744485339922	0.409235462217131	0	0	2.80063994622771	0	0	1	2	1	0	0	4
+Slc12a4	-0.52191018858007	-0.888449045894402	0.189636527897473	0.663219304464418	0.738276318433074	0.510520628870933	8	0	1.10744485339922	0.409235462217131	0	1.7836959488103	0.700159986556928	0.694051630500793	0	0	2	1	0	3	1	1	0
+AI450353	-0.562247742052618	-0.408921727251062	0.182944108013094	0.668855234223221	0.743824388156623	1.08041596215702	12	0.34616821213465	0	0.409235462217131	1.49064397310282	4.75652253016081	0	0	0	1	0	1	2	8	0	0	0
+4930429F24Rik	-0.545725085709139	-0.75288176755771	0.181324600655332	0.670237362329587	0.743975060369752	0.724784055615251	8	0.608056135742452	0.34616821213465	0	0.409235462217131	0	1.1891306325402	2.10047995967078	0	1	1	0	1	0	2	3	0
+1700086O06Rik	-0.401204040500749	0.718840653666633	0.181257487081969	0.670294795845841	0.743975060369752	0.55468761814944	26	0.553722426699609	1.22770638665139	5.21725390585987	0	5.60127989245543	1.38810326100159	0.608056135742452	1.3846728485386	1	3	7	0	8	2	1	4
+Mir106b	0.137982603388277	6.33067283008471	0.173948962376477	0.676625824227272	0.75021164027653	0.0982671438917464	1230	60.0510969432802	58.813438870782	241.529967414276	71.7506240176093	62.6564463963716	62.5706342170559	60.5668484081354	102.109112157543	101	84	348	118	181	113	148	137
+Mir1965	0.581495671930901	-1.51649753472438	0.173262171793193	0.677228737497656	0.75021164027653	0.628403716610136	5	0.409235462217131	0	0.594565316270102	0.700159986556928	0	1.2161122714849	0	0	1	0	1	1	0	2	0	0
+2410137F16Rik	-0.558290825820109	-1.61278221150748	0.167413517532669	0.682420801314187	0.755230004170211	0.446011805101023	5	0	0	1.1891306325402	0	0.694051630500793	0	0.34616821213465	0.553722426699609	0	0	2	0	1	0	1	1
+4930555B11Rik	-0.297505827685918	2.08600233022277	0.166258414498128	0.683458708956337	0.755417283026573	0.378982892274394	61	2.43222454296981	2.42317748494255	2.21488970679844	3.68311915995418	13.4157957579254	1.7836959488103	7.00159986556928	4.16430978300476	4	7	4	9	18	3	10	6
+Gm16039	-0.34946575786732	0.855407510215622	0.165753011253709	0.683914157201096	0.755417283026573	0.419419464580293	27	1.1891306325402	2.10047995967078	2.77620652200317	1.2161122714849	2.7693456970772	1.10744485339922	0.818470924434263	2.98128794620564	2	3	4	2	8	2	2	4
+Mir369	0.382965818608952	0.709866378715587	0.163984166702263	0.685514569065643	0.756452730467987	0.569499049333281	26	0.409235462217131	0.74532198655141	5.94565316270102	2.10047995967078	3.47025815250396	2.43222454296981	0	1.10744485339922	1	1	10	3	5	4	0	2
+AF357425	0.411806611776017	-0.363857499646688	0.16205905413197	0.687267827869158	0.75765467787315	0.344438245437559	11	1.38810326100159	0.608056135742452	0.34616821213465	1.10744485339922	0.409235462217131	0.74532198655141	0.594565316270102	1.40031997311386	2	1	1	2	1	1	1	2
+2610001J05Rik	0.476523635050594	-1.01841357431411	0.159093149638259	0.689992807627462	0.759924511103218	0.400911256718804	7	0.608056135742452	0.34616821213465	0.553722426699609	0.409235462217131	0	0.594565316270102	1.40031997311386	0	1	1	1	1	0	1	2	0
+Mir5122	-0.345877878954722	0.799769307303281	0.152123273251672	0.696514484399201	0.76636743172564	0.447813841546254	25	2.08215489150238	1.2161122714849	0.6923364242693	1.66116728009883	2.45541277330279	2.98128794620564	0.594565316270102	2.80063994622771	3	2	2	3	6	4	1	4
+Snord22	0.261837738774441	2.16458063264597	0.149988707233025	0.698546150307822	0.767862386802722	0.323157423959453	69	5.35108784643091	1.40031997311386	13.1869809795151	4.25639295019716	5.19252318201975	3.32233456019766	2.45541277330279	3.72660993275705	9	2	19	7	15	6	6	5
+4930473A02Rik	-0.547720564932348	-1.65949804624553	0.145723428880507	0.702656169229664	0.771636851868187	0.667424742756427	5	0	0	1.2161122714849	0	1.10744485339922	0	0.74532198655141	0	0	0	2	0	2	0	1	0
+E230016M11Rik	-0.53066233560518	-1.5326943610107	0.144608413807096	0.703741937063397	0.772086105951284	0.553791596372762	5	0.553722426699609	0	0.74532198655141	0	0	0.694051630500793	1.2161122714849	0	1	0	1	0	0	1	2	0
+Mir1946b	-0.385000712148967	0.0908224149000392	0.137047991064641	0.711233525827874	0.779442208704265	0.549988849270407	15	0.700159986556928	0.694051630500793	0.608056135742452	1.03850463640395	1.10744485339922	0	2.98128794620564	1.7836959488103	1	1	1	3	2	0	4	3
+4921531C22Rik	-0.513950370484877	-1.53182257509833	0.136472685627052	0.711813130122563	0.779442208704265	0.548403272578476	5	0	0.34616821213465	0.553722426699609	0	0	1.1891306325402	0	0.694051630500793	0	1	1	0	0	2	0	1
+Mir326	0.203784968340561	3.26273554328578	0.132412771005941	0.715943395925992	0.783213245207629	0.244549937205787	144	8.40191983868314	8.32861956600951	20.6739086152434	5.88485960628905	15.5042279475891	5.32006100882271	12.670473771374	6.54021847897112	12	12	34	17	28	13	17	11
+Ppifos	-0.449362690133264	0.0484490385114891	0.130056128336616	0.718373850236868	0.784837121849018	1.01814777676858	15	0	0	0.6923364242693	2.21488970679844	1.22770638665139	0	3.56739189762061	0	0	0	2	4	3	0	6	0
+1700007J10Rik	-0.482644252710265	-1.07016110121392	0.129642015094801	0.718803498976533	0.784837121849018	0.735193697587756	7	0	0	0.6923364242693	0.553722426699609	0	0.74532198655141	1.7836959488103	0	0	0	2	1	0	1	3	0
+Mir206	0.490668746962998	-1.59523001485478	0.120407928857549	0.728592478302504	0.794764835318506	0.731941805738735	5	0	0	1.2161122714849	0.34616821213465	0	0	0	1.1891306325402	0	0	2	1	0	0	0	2
+1700052K11Rik	0.38091908751861	-0.70255086265812	0.118696919434568	0.730452105158539	0.795427134901628	0.398614497076317	9	1.2161122714849	0	1.10744485339922	0.409235462217131	0.74532198655141	0	1.40031997311386	0.694051630500793	2	0	2	1	1	0	2	1
+C730002L08Rik	-0.471097207296405	-1.56239397443191	0.118567020660842	0.730593897788699	0.795427134901628	0.497560769036965	5	0	0	0.594565316270102	0.700159986556928	0.694051630500793	0	0.6923364242693	0	0	0	1	1	1	0	2	0
+Mir598	-0.26423789377591	1.53546343280286	0.117266649721219	0.732018146668333	0.796218022257929	0.390897665547807	44	1.40031997311386	1.38810326100159	6.68861749316697	1.73084106067325	4.42977941359688	3.27388369773705	1.49064397310282	3.56739189762061	2	2	11	5	8	8	2	6
+AF357426	-0.449934077935746	-1.23683510715162	0.105035261478419	0.745868807380144	0.810510770686424	0.877683234324014	7	0	0	2.10047995967078	0	1.82416840722736	0.34616821213465	0	0	0	0	3	0	3	1	0	0
+2810454H06Rik	0.325734704876347	0.278344172425409	0.102954712454459	0.748312268432218	0.812392291418801	0.585708157723353	18	1.2161122714849	0.6923364242693	2.76861213349805	0.409235462217131	0.74532198655141	0	0.700159986556928	4.16430978300476	2	2	5	1	1	0	1	6
+Gm7367	-0.423626008504948	-1.58910271085081	0.0979330906748608	0.754324247744367	0.818140652734147	0.482271133012876	5	0.553722426699609	0	0.74532198655141	0	1.40031997311386	0	0.608056135742452	0	1	0	1	0	2	0	1	0
+Mirlet7a-2	-0.168550424004797	3.36993279006924	0.0958875988828889	0.756821632059225	0.820069783646321	0.232211713502848	158	7.13478379524122	8.40191983868314	25.6799103285293	7.29667362890942	12.1158874247127	9.41328125389336	6.13853193325697	13.4157957579254	12	12	37	12	35	17	15	18
+Gm15441	-0.248761338781107	1.62942186023414	0.0932727098429504	0.760057095981266	0.822794256655241	0.456540055777075	43	4.16430978300476	1.82416840722736	1.03850463640395	3.32233456019766	2.45541277330279	0.74532198655141	6.54021847897112	4.9011199058985	6	3	3	6	6	1	11	7
+Pfkfb2	-0.292872360723421	0.55612184844401	0.0821551674530578	0.774397764375532	0.837524027632684	0.648233482454159	21	0.553722426699609	1.22770638665139	2.23596595965423	1.1891306325402	2.10047995967078	0	4.86444908593961	0.34616821213465	1	3	3	2	3	0	8	1
+Gm10785	-0.408395809246849	-1.31841831337468	0.0723319440223387	0.78797124759578	0.851396963548092	1.30517117271517	7	0	0	2.10047995967078	0	2.43222454296981	0	0	0	0	0	3	0	4	0	0	0
+4732416N19Rik	0.286038532422829	-0.417299079205344	0.0691386535407617	0.79259505180734	0.855582738043685	0.500580553601939	11	0	2.10047995967078	2.08215489150238	0	0.34616821213465	0.553722426699609	0.818470924434263	0.74532198655141	0	3	3	0	1	1	2	1
+A930015D03Rik	-0.252790827032863	0.587690869747108	0.0667642149481544	0.796107691280747	0.858562264415248	0.583591550067276	22	3.50079993278464	1.38810326100159	1.2161122714849	0	3.87605698689727	0.409235462217131	2.23596595965423	1.1891306325402	5	2	2	0	7	1	3	2
+A930011G23Rik	0.276310976367096	-0.203499995189893	0.0651238063630455	0.798573524170378	0.860310934966532	0.509669253124821	12	0.6923364242693	0.553722426699609	0	2.23596595965423	1.1891306325402	0.700159986556928	0.694051630500793	1.2161122714849	2	1	0	3	2	1	1	2
+Snora43	0.32046173775837	-1.13954937634056	0.0646860353726364	0.799237152554359	0.860310934966532	0.638435319799351	7	0.553722426699609	0	2.23596595965423	0	0.700159986556928	1.38810326100159	0	0	1	0	3	0	1	2	0	0
+Mir10a	-0.0853499650951455	14.9465381785142	0.0595079983440883	0.807275265642808	0.868144277189862	0.117592103847736	435679	24411.8779996044	41909.053043777	14000.4271715738	25930.8212423427	28987.3754952261	44386.9055870827	25593.0640388465	49625.2393671954	35173	68923	40444	46830	70833	59554	43045	70877
+Rbm18	0.298860484136803	-0.144451328445813	0.0586808150465377	0.808593246837729	0.868742838645809	0.872197693646273	12	1.10744485339922	1.63694184886853	0	0	0.700159986556928	0	1.82416840722736	0.6923364242693	2	4	0	0	1	0	3	2
+B230208H11Rik	0.115343675977133	4.11180140499343	0.0559511181171248	0.81301375994238	0.872670461048217	0.195705835627275	250	12.161122714849	6.2310278184237	28.7935661883797	15.550947564251	17.8877276772338	16.6478288555628	18.2041596504801	30.5382717420349	20	18	52	38	24	28	26	44
+D330022K07Rik	-0.195449232113834	2.01032351872886	0.0547468042916197	0.815000233533397	0.873980513591735	0.531825484123014	56	2.0770092728079	5.53722426699609	1.22770638665139	2.98128794620564	7.72934911151132	0.700159986556928	11.7988777185135	1.2161122714849	6	10	3	4	13	1	17	2
+1110019D14Rik	-0.316039245426039	-1.51077745322648	0.0528297502439719	0.818210480956651	0.876599210114121	0.64002034381954	5	0.34616821213465	0.553722426699609	0	0	0.594565316270102	0	0	1.2161122714849	1	1	0	0	1	0	0	2
+Mir409	0.130460161871155	2.90235326215672	0.0480077654817364	0.82656689707623	0.884721228484032	0.269412719869454	114	9.68918582516833	4.75652253016081	19.604479623594	6.24646467450714	15.8094595293037	4.8463549698851	4.42977941359688	3.27388369773705	13	8	28	9	26	14	8	8
+Mir148b	-0.0653446546108986	9.51383931708675	0.0468930706548072	0.828560552209098	0.88547233109648	0.0866992305626381	10703	636.184888409009	679.15518696022	1386.71515774058	608.664191878194	624.833622903043	731.467325670184	432.152648101291	1104.56718406919	1070	970	1998	1001	1805	1321	1056	1482
+Zc3h7a	-0.137251051456923	5.68248935953774	0.0467486125902639	0.828820727091184	0.88547233109648	0.376114856793985	754	60.5668484081354	44.7193191930846	11.891306325402	42.0095991934157	233.201347848266	10.3369543076217	34.2706530013303	7.75211397379453	148	60	20	60	336	17	99	14
+Mir667	0.299285421310217	-1.24043412735497	0.0449981668558257	0.832007399376074	0.888045315891581	0.743871126834998	6	0	0.409235462217131	0	1.1891306325402	1.40031997311386	0.694051630500793	0	0	0	1	0	2	2	1	0	0
+1500017E21Rik	-0.232092999434353	0.55621257019433	0.0443459027002877	0.833211376635026	0.888499234336976	0.815576705987226	20	0.34616821213465	1.66116728009883	0	2.98128794620564	2.37826126508041	0	4.85836141350555	0.608056135742452	1	3	0	4	4	0	7	1
+Gm15713	-0.279781773417698	-1.03364465070292	0.0436175965537835	0.834566694327075	0.889056197034999	0.797119858270265	7	0	1.10744485339922	0.409235462217131	0	0.594565316270102	0	2.08215489150238	0	0	2	1	0	1	0	3	0
+Srsf9	-0.261659102204276	0.0340565335000185	0.0432303910214138	0.835292062420262	0.889056197034999	1.03382815192186	14	1.1891306325402	0	0.694051630500793	1.82416840722736	0.34616821213465	0	2.86464823551992	0	2	0	1	3	1	0	7	0
+4930526L06Rik	0.280204035446929	-1.86388344167609	0.0318376440180606	0.858384456463271	0.912240705845356	0.638146949527696	4	0	0.409235462217131	0	0.594565316270102	1.40031997311386	0	0	0	0	1	0	1	2	0	0	0
+Gm13483	0.278788232764047	-1.86456181343462	0.0315293960831298	0.859064465762629	0.912240705845356	0.638146949527696	4	0.74532198655141	0.594565316270102	0	0	1.2161122714849	0	0	0	1	1	0	0	2	0	0	0
+Mir423	-0.0636309571735842	8.83211358393659	0.0313449254018572	0.859473057654477	0.912240705845356	0.122901596979785	6997	272.141582374392	316.761844284349	1083.29800624412	372.485112848286	834.944111492454	617.785033914331	121.505042459262	544.309145445716	665	425	1822	532	1203	1016	351	983
+Mir877	-0.138999852661977	1.67286751209858	0.0305888216742369	0.861160879698072	0.913092574691109	0.435295050579298	45	1.66116728009883	1.63694184886853	3.72660993275705	4.75652253016081	4.20095991934157	4.85836141350555	0.608056135742452	3.80785033348115	3	4	5	8	6	7	1	11
+Mir541	-0.0717781240473383	6.64270705214695	0.0302712614534482	0.861876163840776	0.913092574691109	0.158072494279886	1553	73.5747924248367	42.9248583046966	177.191176543875	59.7483774837012	359.990519504331	111.778279458779	33.6076793547326	85.3683505515975	121	124	320	146	483	188	48	123
+1600020E01Rik	0.270311520268543	-1.86861486581339	0.029719429591454	0.863128385421279	0.913570953400444	0.638146949527696	4	0	0	0	1.40031997311386	1.38810326100159	0	0	0	0	0	0	2	2	0	0	0
+Mir1940	-0.169751026695067	-0.692977711261543	0.0269021123064727	0.869716474638627	0.919690915257343	0.259709898809195	9	0.694051630500793	0.608056135742452	0.34616821213465	0.553722426699609	0.818470924434263	0.74532198655141	0.594565316270102	0.700159986556928	1	1	1	1	2	1	1	1
+4930583K01Rik	0.213163600958837	-1.23029077744691	0.0252524535260692	0.873739619761782	0.923089727914994	0.557037632619438	6	0.594565316270102	0	0	1.2161122714849	0.34616821213465	0.553722426699609	0	0.74532198655141	1	0	0	2	1	1	0	1
+Mir669a-1	0.156801357377268	-0.05443364141249	0.0242705732754276	0.876198428816843	0.923563103838017	0.441346339842388	14	1.49064397310282	0	1.40031997311386	2.08215489150238	1.82416840722736	0.6923364242693	0.553722426699609	0.409235462217131	2	0	2	3	3	2	1	1
+AA465934	-0.195968497271681	-0.0963017433158353	0.0241121145044687	0.876599982727317	0.923563103838017	1.11283572179254	15	0.608056135742452	0	1.10744485339922	1.22770638665139	6.70789787896269	0	0	0	1	0	2	3	9	0	0	0
+Snord7	-0.197744508631868	-0.639035159991515	0.0241058099091518	0.876615987253788	0.923563103838017	0.967351112788188	10	0.409235462217131	0	0.594565316270102	1.40031997311386	4.16430978300476	0	0	0	1	0	1	2	6	0	0	0
+Abhd10	0.198072683422052	-1.24024741782945	0.0236281257641893	0.877834907095501	0.923994122690007	0.404633715340202	6	0.74532198655141	0.594565316270102	0	0.694051630500793	0.608056135742452	0	0.553722426699609	0.409235462217131	1	1	0	1	1	0	1	1
+Mir3473	0.196161852261303	-1.23882474353175	0.0231628143337455	0.879034442556119	0.924010611020748	0.406741736841495	6	0.700159986556928	0.694051630500793	0	0.34616821213465	0.553722426699609	0.409235462217131	0	0.594565316270102	1	1	0	1	1	1	0	1
+6330549D23Rik	-0.162094669655219	-0.68954702630399	0.0229949435772117	0.879470222233596	0.924010611020748	0.337791910405273	9	0.409235462217131	0.74532198655141	0.594565316270102	0.700159986556928	1.38810326100159	1.2161122714849	0	0.553722426699609	1	1	1	1	2	2	0	1
+Adarb1	-0.160961548326802	-0.123013714846092	0.0211799322182982	0.884289850944861	0.927264157820721	0.692544806766039	14	1.2161122714849	0	1.10744485339922	0.818470924434263	4.47193191930846	0	1.40031997311386	0	2	0	2	2	6	0	2	0
+Gm10433	0.225832212990213	-1.83578916176503	0.0209644531097322	0.884875835328919	0.927264157820721	0.638146949527696	4	0.34616821213465	0.553722426699609	0	0	0.594565316270102	0	0	0.608056135742452	1	1	0	0	1	0	0	1
+Svip	0.225653243267786	-1.82407656689306	0.0209171196886713	0.885004967455535	0.927264157820721	0.638146949527696	4	0	1.38810326100159	0	0	0.553722426699609	0	0.74532198655141	0	0	2	0	0	1	0	1	0
+Mir187	0.0942769746488839	2.5273253807264	0.0197476055386647	0.888244273923545	0.929187947651877	0.335631890605114	82	2.7693456970772	3.32233456019766	5.72929647103984	9.68918582516833	5.94565316270102	13.3030397445816	3.47025815250396	4.25639295019716	8	6	14	13	10	19	5	7
+2610035D17Rik	0.215718872176664	-1.82888503952518	0.0191974462919147	0.889801924027029	0.929187947651877	0.638146949527696	4	0	0.553722426699609	0	0.74532198655141	0.594565316270102	0	0.694051630500793	0	0	1	0	1	1	0	1	0
+B230319C09Rik	0.214303069493782	-1.82957266025757	0.0189579419944019	0.89048712809598	0.929187947651877	0.638146949527696	4	0.553722426699609	0.409235462217131	0	0	0.700159986556928	0	0.608056135742452	0	1	1	0	0	1	0	1	0
+4930565N06Rik	0.159509655511957	-0.862850882597741	0.0188629036487473	0.890760247348387	0.929187947651877	0.391590681076766	8	0.74532198655141	0.594565316270102	0.700159986556928	0.694051630500793	1.2161122714849	0	1.10744485339922	0	1	1	1	1	2	0	2	0
+Mir5114	0.186397613455716	-1.3047501273248	0.0187757104468318	0.891011438659261	0.929187947651877	0.606970175156446	6	0	0.6923364242693	0.553722426699609	0	1.49064397310282	0	0	0.694051630500793	0	2	1	0	2	0	0	1
+A230020J21Rik	0.157586258788334	-0.868234001557016	0.0185283643764711	0.891727259140057	0.929187947651877	0.384151248976418	8	0.553722426699609	0	0.74532198655141	1.1891306325402	1.40031997311386	0.694051630500793	0	0.34616821213465	1	0	1	2	2	1	0	1
+Fut8	-0.14159898095711	-0.124343230051396	0.0171304848860476	0.895867484667575	0.932181208568498	0.568440841559561	13	0.694051630500793	1.2161122714849	0.6923364242693	0.553722426699609	0.409235462217131	0.74532198655141	2.97282658135051	0	1	2	2	1	1	1	5	0
+G730013B05Rik	-0.1444644504645	-0.11612786759881	0.0170094840462109	0.89623381752817	0.932181208568498	0.704600874847864	14	0.6923364242693	1.10744485339922	0.818470924434263	0	3.56739189762061	0	1.38810326100159	0	2	2	2	0	6	0	2	0
+Snord88a	-0.045356821387815	5.38319253786929	0.0148091922381681	0.903142137735534	0.938511092127727	0.119396323989129	589	41.025006822637	51.1116790186558	53.4419755485611	31.6189190586075	33.2321483649264	34.3307904553758	41.3327816839303	43.9739972065332	69	73	77	52	96	62	101	59
+2310010J17Rik	0.160593166241322	-0.712339318033024	0.0144685482300719	0.904257165472018	0.938814764152477	1.02238827412666	10	1.2161122714849	0	1.66116728009883	0	3.72660993275705	0	0	0	2	0	3	0	5	0	0	0
+Mirg	0.046466455780014	6.97315439829676	0.0133211776496633	0.908114283021421	0.941962179024946	0.151390994081439	1940	67.1146158036095	123.723449767534	246.150040935822	129.529597513032	392.139171232948	142.285135763734	22.5009337887522	81.3971967248426	164	166	414	185	565	234	65	147
+Gm16291	-0.128584309543259	0.0521366329795151	0.0129026047756327	0.909563105648682	0.942608086780333	0.76402219191087	14	2.23596595965423	1.1891306325402	0	0.694051630500793	1.2161122714849	0.34616821213465	2.76861213349805	0	3	2	0	1	2	1	5	0
+Gm19522	0.133128085740831	-0.829962591291576	0.0112267403629041	0.915617013803418	0.948020882712976	0.649769689162674	8	0	0.553722426699609	0.409235462217131	1.49064397310282	0.594565316270102	0	2.08215489150238	0	0	1	1	2	1	0	3	0
+Rhno1	0.159916601574934	-1.78865128034686	0.0107877052439775	0.917277372855387	0.948878950524022	0.638146949527696	4	0	1.49064397310282	0	0	0	0	0.6923364242693	0	0	2	0	0	0	0	2	0
+Mir16-2	0.0578872268985141	3.19480487022685	0.00999483968919579	0.920364812100843	0.949540533089302	0.261387449317382	133	12.4929293490143	6.68861749316697	9.00037351550089	6.0909466936957	6.95700285769123	13.4157957579254	5.35108784643091	16.1036796908094	18	11	26	11	17	18	9	23
+4930452A19Rik	0.149444137245449	-1.92879183038896	0.00940265408085583	0.922752375917069	0.949540533089302	0.638146949527696	4	0	0.409235462217131	0.74532198655141	0	1.40031997311386	0	0	0	0	1	1	0	2	0	0	0
+Mir20b	0.149444137245449	-1.92879183038896	0.00940265408085583	0.922752375917069	0.949540533089302	0.638146949527696	4	0	0.409235462217131	0.74532198655141	0	1.40031997311386	0	0	0	0	1	1	0	2	0	0	0
+Snora78	0.0952564242056809	0.541952701642771	0.00939621357845333	0.922778753676933	0.949540533089302	0.591155323319973	22	0.818470924434263	0	2.97282658135051	2.80063994622771	3.47025815250396	0	1.3846728485386	1.10744485339922	2	0	5	4	5	0	4	2
+Snhg9	0.0952572647592143	0.541935691926325	0.00938990918195604	0.922804582839966	0.949540533089302	0.591819195993488	22	1.49064397310282	0	3.50079993278464	2.77620652200317	3.04028067871226	0	2.21488970679844	0.818470924434263	2	0	5	4	5	0	4	2
+4930527F14Rik	0.148246679588332	-1.80273590622697	0.0093641708890102	0.922910123747621	0.949540533089302	0.638146949527696	4	0	0	0	1.10744485339922	0	0.74532198655141	0	0.700159986556928	0	0	0	2	0	1	0	1
+A430071A18Rik	0.140089715305426	-1.79838759526887	0.00841358745094212	0.926916049667801	0.951945285932458	0.638146949527696	4	0	0	0	1.2161122714849	0	0	0.818470924434263	0	0	0	0	2	0	0	2	0
+Cd22	0.140089715305426	-1.79838759526887	0.00841358745094212	0.926916049667801	0.951945285932458	0.638146949527696	4	0	0	0	1.40031997311386	0	0	0.6923364242693	0	0	0	0	2	0	0	2	0
+Btbd19	0.13139826781368	-1.7952139152904	0.00745956192008634	0.931173283624132	0.955457478970444	0.638146949527696	4	0.74532198655141	0	0	0.694051630500793	0	0.6923364242693	0	0	1	0	0	1	0	2	0	0
+1810034E14Rik	-0.0582784540366963	2.09200681386011	0.00716964611245841	0.932520755264328	0.955980396906198	0.32866487607919	64	6.24646467450714	1.2161122714849	5.19252318201975	2.76861213349805	4.50159008438844	7.4532198655141	2.37826126508041	5.60127989245543	9	2	15	5	11	10	4	8
+Mir29b-1	0.105421115756166	-0.43157442729593	0.00687050063077876	0.933940211681206	0.956095747461183	0.877489638142529	10	0.34616821213465	1.66116728009883	0.409235462217131	0	0	2.80063994622771	0.694051630500793	0	1	3	1	0	0	4	1	0
+Zmynd8	-0.0719353339983849	1.09734258429151	0.00673343019890815	0.934601004243129	0.956095747461183	0.486960647190855	30	2.04617731108566	2.98128794620564	2.37826126508041	0.700159986556928	2.08215489150238	1.82416840722736	2.7693456970772	1.10744485339922	5	4	4	1	3	3	8	2
+Mir5129	0.0957314088382215	-0.822204343190538	0.00662119867327871	0.935147111451955	0.956095747461183	0.470649185108855	8	0	0.553722426699609	0.409235462217131	1.49064397310282	0	0.700159986556928	0.694051630500793	1.2161122714849	0	1	1	2	0	1	1	2
+Mdp1	0.103941610776393	-1.27776731451046	0.00594341709128976	0.938549115625586	0.958714897877165	0.655887599518928	6	0	0	0.608056135742452	0.6923364242693	0.553722426699609	0	1.49064397310282	0	0	0	1	2	1	0	2	0
+Thap6	0.0884668393261384	-0.897821946953951	0.00577369764406122	0.939431150174737	0.9587575512964	0.443269548229457	8	0	1.1891306325402	1.40031997311386	0	1.2161122714849	0.34616821213465	0.553722426699609	0	0	2	2	0	2	1	1	0
+Zfp821	-0.123537350109892	-1.92573779586961	0.00515432888996514	0.942766122414118	0.960815718152111	0.638146949527696	4	0	0	0.818470924434263	0	0	1.40031997311386	0	0	0	0	2	0	0	2	0	0
+Dio3os	-0.0783724880504645	-0.622642427168383	0.0050885292982894	0.943131993278145	0.960815718152111	0.510910213341106	9	0.694051630500793	1.2161122714849	0	0.553722426699609	0.409235462217131	0	1.1891306325402	1.40031997311386	1	2	0	1	1	0	2	2
+Gm4890	-0.116255852427914	-1.92943339707875	0.00453141926387435	0.946330285035873	0.963213965411179	0.638146949527696	4	0	0	1.40031997311386	0	0	0	1.10744485339922	0	0	0	2	0	0	0	2	0
+Mir147	0.096488117471615	-1.90056566943248	0.00412143444010482	0.94881225214317	0.964879482794436	0.638146949527696	4	0	0.74532198655141	0.594565316270102	0	0.694051630500793	0	0	0.553722426699609	0	1	1	0	1	0	0	1
+Mir3103	-0.108098888145008	-1.93359432954311	0.00387924299399423	0.950337012939027	0.965569485096554	0.638146949527696	4	0	0	1.10744485339922	0	0	0.594565316270102	0	0.694051630500793	0	0	2	0	0	1	0	1
+Lmf1	0.0679307624649559	-0.14337492663708	0.0034194404663257	0.953369493368774	0.967174636846159	0.635546740621643	13	0.700159986556928	2.08215489150238	0.608056135742452	0.34616821213465	2.21488970679844	0	2.23596595965423	0	1	3	1	1	4	0	3	0
+Gm10548	0.0609027211306225	-0.880709174563083	0.00330101054142751	0.954183212529461	0.967174636846159	0.252311230579068	8	0	0.34616821213465	1.10744485339922	0.409235462217131	0.74532198655141	0.594565316270102	0.700159986556928	0.694051630500793	0	1	2	1	1	1	1	1
+Gm15545	0.0849589739751836	-1.89448493270386	0.0032612312701028	0.954459808140908	0.967174636846159	0.638146949527696	4	0	0.594565316270102	0.700159986556928	0	0.608056135742452	0	0.553722426699609	0	0	1	1	0	1	0	1	0
+Plscr3	0.0814004336200907	-1.89261335490638	0.00301642056831319	0.956200644868514	0.968047332759487	0.638146949527696	4	0	0.74532198655141	0.594565316270102	0	0.694051630500793	0.608056135742452	0	0	0	1	1	0	1	1	0	0
+5430402O13Rik	-0.0927467442781055	-1.94142512096775	0.00279115036404498	0.957866291573585	0.968047332759487	0.638146949527696	4	0	0	1.2161122714849	0	0	0	0	1.1891306325402	0	0	2	0	0	0	0	2
+Gm6297	-0.0927467442781055	-1.94142512096775	0.00279115036404498	0.957866291573585	0.968047332759487	0.638146949527696	4	0	0	0.818470924434263	0	0	0	0	1.2161122714849	0	0	2	0	0	0	0	2
+Gm5095	0.0741497349563809	-1.89982855309554	0.00255353302993466	0.959698055373646	0.969040248833035	0.638146949527696	4	0.409235462217131	0	0.594565316270102	0	0.694051630500793	0	0.34616821213465	0	1	0	1	0	1	0	1	0
+Mir18	-0.0321144919271105	2.13829995459641	0.00222894649578897	0.96234448681064	0.970853279797471	0.319997109480565	62	4.9011199058985	4.85836141350555	4.86444908593961	2.42317748494255	3.87605698689727	3.68311915995418	2.98128794620564	7.72934911151132	7	7	8	7	7	9	4	13
+4930547E14Rik	0.0332717629837295	-1.87681159162927	0.000628960971966741	0.979991875252521	0.987622213297045	0.638146949527696	4	0	0	0.608056135742452	0.34616821213465	0	0	0	1.1891306325402	0	0	1	1	0	0	0	2
+Mir30a	-0.00674515544774862	15.2305157438047	0.000585365330948662	0.980697605315997	0.987622213297045	0.0746707420324099	565907	22165.4203400665	38322.2205825139	68810.8277478877	37443.855921078	63416.8855821185	38709.4616575002	22770.252657793	38928.9014866893	54163	51417	115733	53479	91372	63661	65778	70304
+2610002J02Rik	0.018998702253143	-1.31967503888113	0.000345631121349221	0.985167257251054	0.991248536616801	0.365725430522663	6	0	0	1.38810326100159	0.608056135742452	0.34616821213465	0.553722426699609	0.409235462217131	0	0	0	2	1	1	1	1	0
+Mir1306	0.010990964703492	0.387899924622603	0.000182949792714382	0.989208227531673	0.993710996805651	0.374307689020903	20	0.34616821213465	0.553722426699609	2.45541277330279	1.49064397310282	2.37826126508041	1.40031997311386	1.38810326100159	1.2161122714849	1	1	6	2	4	2	2	2
+2810001G20Rik	0.0139659525352028	-1.99687003375001	0.000177958964401981	0.989356435031744	0.993710996805651	0.638146949527696	4	0	0	1.40031997311386	0	1.2161122714849	0	0	0	0	0	2	0	2	0	0	0
+Snora31	-0.00608992937342303	4.51111691273084	0.000131880843156296	0.990837344181505	0.994323139587597	0.245986767999803	320	26.6060794891633	26.3739619590301	21.8900208867283	12.1158874247127	31.5621783218777	4.09235462217131	60.3710809106642	14.8641329067525	38	38	36	35	57	10	81	25
+2010320M18Rik	-0.0135816064033237	-0.577688977281378	9.37664770823687e-05	0.992273957831848	0.994889794276045	0.436705588816395	10	0	0	1.03850463640395	1.10744485339922	0.409235462217131	1.49064397310282	0.594565316270102	0.700159986556928	0	0	3	2	1	2	1	1
+2310001K24Rik	0.00612441798475525	-1.86264950933858	6.95515125732626e-05	0.993345915420738	0.995090157590046	0.638146949527696	4	0	0	0.594565316270102	0.700159986556928	0	0.608056135742452	0.34616821213465	0	0	0	1	1	0	1	1	0
+Mir1966	0.000918355090882732	-0.94191710317151	1.38947096530728e-05	0.997025843661245	0.997900427734632	0.449008936327196	8	0	0.34616821213465	1.66116728009883	0	1.49064397310282	0.594565316270102	0.700159986556928	0	0	1	3	0	2	1	1	0
+Mir376b	-0.00136357255892604	1.39148339025352	2.78221370209053e-06	0.998669131632702	0.998669131632702	0.592374698826143	42	1.49064397310282	2.37826126508041	7.70175985212621	2.08215489150238	9.72889817187923	1.73084106067325	0.553722426699609	0	2	4	11	3	16	5	1	0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/test-data/gentestdata.sh	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,9 @@
+#!/bin/bash
+# generate test data for rgGSEA
+# ross lazarus June 2013 
+# adjust gseajar_path !
+GSEAJAR_PATH=/home/rlazarus/galaxy-central/tool_dependency_dir/gsea_jar/2.0.12/fubar/rg_gsea_test/8e291f464aa0/jars/gsea2-2.0.12.jar
+python ../rgGSEA.py --input_tab "gsea_test_DGE.xls"  --adjpvalcol "5" --signcol "2" --idcol "1" --outhtml "gseatestout.html" --input_name "gsea_test" --setMax "500" --setMin "15" --nPerm "10" --plotTop "20" --gsea_jar "$GSEAJAR_PATH" --output_dir "gseatestout" --mode "Max_probe" 
+--title "GSEA test" --builtin_gmt "gseatestdata.gmt"
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/test-data/gentestdata.sh~	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,8 @@
+#!/bin/bash
+# generate test data for rgGSEA
+# ross lazarus June 2013 
+# adjust gseajar_path !
+GSEAJAR_PATH=/home/rlazarus/galaxy-central/tool_dependency_dir/gsea_jar/2.0.12/fubar/rg_gsea_test/8e291f464aa0/jars/gsea2-2.0.12.jar
+python ../rgGSEA.py --input_tab "gsea_test_DGE.xls"  --adjpvalcol "5" --signcol "2" --idcol "1" --outhtml "gseatestout.html" --input_name "gsea_test" --setMax "500" --setMin "15" --nPerm "10" --plotTop "20" --gsea_jar "$GSEAJAR_PATH" --output_dir "gseatestout" --mode "Max_probe" --title "GSEA test" --builtin_gmt "gseatestdata.gmt"
+
+
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/test-data/test_bams2mx.xls	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,3243 @@
+Contigname	11706Liv_CAAAAG_L003_R1_001_trimmed.fastq_bwa.sam.bam	11706He_AGTTCC_L001_R1_001_trimmed.fastq_bwa.sam.bam	11699He_GGCTAC_L001_R1_001_trimmed.fastq_bwa.sam.bam	11698He_TAGCTT_L001_R1_001_trimmed.fastq_bwa.sam.bam	11700Liv_ATTCCT_L003_R1_001_trimmed.fastq_bwa.sam.bam	11698Liv_ACTGAT_L003_R1_001_trimmed.fastq_bwa.sam.bam	11699Liv_ATGAGC_L003_R1_001_trimmed.fastq_bwa.sam.bam	11700He_CTTGTA_L001_R1_001_trimmed.fastq_bwa.sam.bam
+0610005C13Rik	40	0	2	0	6	70	6	2
+0610007N19Rik	10	17	11	42	2	6	6	10
+0610008F07Rik	16	0	0	0	8	5	4	1
+0610009B14Rik	0	0	0	1	0	0	0	0
+0610009L18Rik	3	2	2	11	0	1	1	1
+0610012G03Rik	6	0	0	0	4	5	2	0
+0610031O16Rik	33	0	0	0	10	25	10	0
+0610038B21Rik	0	0	0	2	0	0	0	0
+0610038L08Rik	0	0	0	0	0	3	0	0
+0610039K10Rik	9	0	0	1	3	1	4	3
+0610040B10Rik	0	0	0	0	0	0	2	0
+0610040F04Rik	2	1	0	1	2	5	2	0
+0610043K17Rik	9	2	0	4	4	12	0	1
+1110002L01Rik	3	1	0	0	0	0	0	0
+1110006O24Rik	0	0	0	1	0	0	0	0
+1110015O18Rik	0	0	0	0	0	0	0	0
+1110017D15Rik	0	0	0	0	0	2	0	0
+1110019D14Rik	1	1	1	0	0	0	2	0
+1110020A21Rik	2	0	0	2	0	2	6	0
+1110028F11Rik	0	0	0	0	0	0	0	0
+1110028F18Rik	0	0	0	0	0	0	0	0
+1110035M17Rik	0	0	0	0	0	0	0	1
+1110036E04Rik	0	0	0	0	0	0	0	0
+1110038B12Rik	9406	1346	1212	1600	7604	6486	8084	1328
+1110046J04Rik	0	0	0	0	0	0	0	1
+1110054M08Rik	6	1	0	1	0	6	1	1
+1190002F15Rik	0	0	0	0	0	4	0	0
+1300002E11Rik	10	1	0	0	0	17	0	0
+1300015D01Rik	0	0	0	0	1	2	0	0
+1500002O10Rik	0	0	0	0	0	0	0	0
+1500004A13Rik	0	0	0	0	0	0	0	0
+1500009C09Rik	0	0	0	0	0	0	0	0
+1500011B03Rik	0	0	0	0	1	0	0	0
+1500011K16Rik	0	0	0	1	0	4	2	0
+1500012K07Rik	0	0	0	0	0	0	0	0
+1500015A07Rik	0	0	0	0	0	0	0	0
+1500015L24Rik	2	0	0	0	0	2	0	0
+1500016L03Rik	0	0	0	0	0	0	0	0
+1500017E21Rik	4	1	3	0	0	7	1	4
+1600002D24Rik	0	0	1	2	0	2	0	2
+1600010M07Rik	0	0	0	0	0	0	0	0
+1600019K03Rik	0	0	0	0	0	0	0	0
+1600020E01Rik	2	0	0	0	0	0	0	2
+1600023N17Rik	0	0	0	0	0	0	1	0
+1600025M17Rik	0	0	0	0	0	0	0	0
+1600029I14Rik	1	0	0	0	0	0	0	0
+1600029O15Rik	0	0	0	0	0	0	0	0
+1700001D01Rik	0	0	0	0	0	0	0	1
+1700001G11Rik	0	0	0	0	0	0	0	0
+1700001G17Rik	1	0	0	0	0	0	0	1
+1700001J11Rik	0	0	0	0	0	0	0	0
+1700001K23Rik	0	0	0	0	0	0	0	0
+1700001L05Rik	6	0	0	0	0	6	4	0
+1700001O22Rik	0	0	0	0	0	0	0	0
+1700003C15Rik	0	0	0	0	0	0	0	0
+1700003D09Rik	1	0	0	0	0	1	0	0
+1700003F17Rik	1	2	1	4	0	2	0	6
+1700003G13Rik	0	0	0	0	0	0	0	0
+1700003G18Rik	2	0	0	1	0	0	0	0
+1700003H04Rik	0	0	0	0	0	0	0	0
+1700003L19Rik	0	5	4	12	0	0	0	2
+1700003M07Rik	0	0	0	0	0	0	0	0
+1700003P14Rik	0	0	0	0	0	0	0	0
+1700006F04Rik	0	0	0	0	0	0	0	0
+1700006H21Rik	0	0	0	0	0	0	0	0
+1700007F19Rik	0	0	0	0	0	0	0	0
+1700007J10Rik	0	0	0	2	1	3	0	1
+1700007L15Rik	0	0	0	0	0	0	1	0
+1700007P06Rik	0	0	0	0	0	0	0	0
+1700008J07Rik	4	0	0	0	1	0	3	1
+1700008K24Rik	0	0	0	0	0	0	0	0
+1700009C05Rik	0	0	0	1	0	0	0	0
+1700009J07Rik	0	0	0	0	0	0	0	0
+1700010I02Rik	0	0	0	0	0	0	0	0
+1700010J16Rik	0	0	0	0	0	0	0	0
+1700010K23Rik	0	0	0	0	0	0	0	0
+1700011B04Rik	0	0	0	0	0	0	0	0
+1700011J10Rik	1	2	0	2	9	0	7	1
+1700011M02Rik	0	0	0	0	0	0	0	0
+1700012B15Rik	7	0	0	0	2	8	1	1
+1700012D01Rik	1	1	1	0	1	2	1	0
+1700012D14Rik	5	0	0	5	2	2	0	1
+1700012I11Rik	0	2	0	0	0	0	0	0
+1700013G23Rik	0	0	0	0	0	0	0	0
+1700016G22Rik	0	0	0	0	0	0	0	0
+1700016L04Rik	0	0	0	0	0	0	0	0
+1700016L21Rik	0	0	0	0	0	0	0	0
+1700016P04Rik	0	0	0	0	0	0	0	0
+1700017G19Rik	0	0	0	0	0	0	0	0
+1700017J07Rik	0	0	0	0	0	0	0	0
+1700018A04Rik	0	0	0	0	2	1	0	0
+1700018B24Rik	0	0	0	0	0	0	0	0
+1700018G05Rik	0	0	0	0	0	0	0	0
+1700018L02Rik	8	1	0	0	4	6	0	1
+1700019B21Rik	0	0	0	0	0	0	0	0
+1700019E08Rik	0	0	0	0	0	0	0	0
+1700019G24Rik	0	0	0	0	0	0	0	0
+1700020G17Rik	0	1	1	1	0	0	0	0
+1700020I14Rik	6	4	0	6	0	12	2	2
+1700020M21Rik	0	0	0	0	0	0	0	0
+1700020N01Rik	0	0	0	0	0	0	0	0
+1700020N18Rik	0	0	0	0	0	0	0	0
+1700021N21Rik	0	0	0	0	0	0	0	0
+1700022A21Rik	0	0	0	0	0	0	0	0
+1700022A22Rik	0	0	0	0	0	0	0	0
+1700022E09Rik	0	0	0	0	0	0	0	0
+1700022H16Rik	0	0	0	0	0	0	0	0
+1700023C21Rik	0	0	0	0	0	0	0	0
+1700023F02Rik	0	0	0	0	0	0	0	0
+1700023L04Rik	0	0	0	0	0	0	0	0
+1700024B18Rik	0	0	0	0	0	0	0	0
+1700024F13Rik	0	0	0	0	0	0	0	0
+1700024P03Rik	0	0	0	0	0	0	1	0
+1700025B11Rik	0	0	0	0	0	0	0	0
+1700025C18Rik	0	0	0	0	0	0	0	0
+1700025F24Rik	0	0	0	0	0	0	0	0
+1700025K24Rik	0	0	0	0	0	0	0	0
+1700025M24Rik	0	0	0	0	0	0	0	0
+1700025N23Rik	0	0	0	0	0	0	0	0
+1700026D11Rik	0	0	0	0	0	0	0	1
+1700026F02Rik	0	0	0	0	0	0	0	0
+1700027A15Rik	0	0	0	0	0	0	0	0
+1700027F09Rik	0	0	0	0	0	0	0	0
+1700027H10Rik	0	0	0	0	0	0	0	0
+1700027I24Rik	0	0	0	0	0	0	0	0
+1700027J07Rik	1	0	1	0	0	0	0	0
+1700028B04Rik	0	0	0	0	0	0	0	0
+1700028D13Rik	0	0	0	0	0	0	0	0
+1700028E10Rik	3	0	0	2	3	1	2	0
+1700028I16Rik	0	0	0	0	0	0	0	0
+1700028J19Rik	0	0	0	0	0	0	0	0
+1700028M03Rik	0	0	0	0	0	0	0	0
+1700028P15Rik	0	0	0	0	0	0	0	0
+1700029B22Rik	0	0	0	0	0	0	0	0
+1700029J03Rik	0	0	0	0	0	0	0	0
+1700029M20Rik	0	0	0	0	0	0	0	0
+1700029N11Rik	0	0	0	0	0	0	0	0
+1700030A11Rik	0	0	0	0	0	0	0	0
+1700030C10Rik	0	0	0	0	0	0	0	0
+1700030F04Rik	0	0	0	0	0	0	0	0
+1700030L20Rik	0	0	0	0	0	0	0	0
+1700030M09Rik	0	0	0	0	0	0	0	0
+1700030N03Rik	0	0	0	0	0	0	0	0
+1700030O20Rik	0	0	0	0	0	0	0	0
+1700031A10Rik	0	0	0	0	0	0	0	0
+1700031M16Rik	0	0	0	0	0	0	0	0
+1700031P21Rik	0	0	0	0	0	0	0	0
+1700034G24Rik	0	0	0	0	0	0	0	0
+1700034H15Rik	1	0	2	0	3	1	0	0
+1700034I23Rik	0	0	0	0	0	0	0	0
+1700034K08Rik	0	0	0	0	0	0	0	0
+1700034P13Rik	1	0	0	0	0	2	1	0
+1700036G14Rik	0	0	0	0	0	0	0	0
+1700039E22Rik	0	0	0	0	0	0	0	0
+1700040N02Rik	0	0	0	0	0	0	0	1
+1700041C23Rik	0	0	0	0	0	0	0	0
+1700041M19Rik	0	0	0	0	0	0	0	0
+1700042G15Rik	0	0	0	0	0	0	0	0
+1700042O10Rik	4	0	0	0	1	1	0	0
+1700044C05Rik	0	0	0	0	0	0	0	0
+1700044K03Rik	0	0	0	0	0	0	0	0
+1700045H11Rik	4	0	1	0	2	3	5	0
+1700046C09Rik	0	0	0	0	0	0	0	0
+1700047E10Rik	0	0	0	0	0	0	0	0
+1700047G03Rik	0	0	0	0	0	0	0	0
+1700047L14Rik	0	0	0	0	0	0	0	0
+1700047M11Rik	0	0	0	0	0	0	0	0
+1700048M11Rik	0	1	0	0	0	0	0	0
+1700048O20Rik	0	0	0	0	0	0	0	0
+1700049E15Rik	0	0	0	0	0	0	0	0
+1700049E22Rik	0	0	0	0	0	0	0	0
+1700049L16Rik	0	0	0	0	0	0	0	0
+1700051A21Rik	0	0	0	0	0	0	0	0
+1700052I22Rik	0	0	0	0	0	0	0	0
+1700052K11Rik	1	2	0	2	0	2	1	1
+1700054A03Rik	0	0	0	1	0	0	0	1
+1700054K19Rik	0	0	0	0	0	0	0	0
+1700054M17Rik	0	0	0	0	0	0	0	0
+1700055C04Rik	0	0	0	0	0	0	0	0
+1700057H15Rik	0	0	0	0	0	0	0	0
+1700058G18Rik	0	0	0	0	0	0	0	0
+1700060C16Rik	0	0	1	0	0	2	0	0
+1700060C20Rik	0	0	0	0	0	0	0	0
+1700061F12Rik	0	0	0	0	0	0	0	0
+1700061I17Rik	1	0	0	3	0	0	0	1
+1700063A18Rik	0	0	0	0	0	0	0	0
+1700063D05Rik	0	0	0	0	0	0	0	0
+1700063O14Rik	0	0	0	0	0	0	0	0
+1700064J06Rik	0	0	0	0	0	0	0	0
+1700064M15Rik	0	0	0	0	0	0	0	0
+1700065D16Rik	0	0	0	0	0	0	0	0
+1700065I16Rik	0	0	0	0	0	0	0	0
+1700065J11Rik	0	0	0	0	0	0	0	0
+1700065J18Rik	0	0	0	0	0	0	0	0
+1700065O20Rik	0	0	1	0	0	0	0	0
+1700066B17Rik	0	0	0	0	0	0	0	0
+1700066J24Rik	0	0	0	0	0	0	0	0
+1700066N21Rik	0	0	1	0	0	0	0	0
+1700066O22Rik	0	0	0	0	0	0	0	0
+1700067G17Rik	1	0	0	0	0	0	0	0
+1700069L16Rik	0	0	1	0	0	0	0	0
+1700069P05Rik	0	0	0	0	0	0	0	0
+1700071M16Rik	0	0	0	0	0	0	0	0
+1700072B07Rik	0	0	0	0	0	0	0	0
+1700072O05Rik	0	0	0	0	0	0	0	0
+1700073E17Rik	0	0	0	0	0	0	0	0
+1700074H08Rik	0	0	0	0	0	0	0	0
+1700080N15Rik	0	0	0	0	0	0	0	0
+1700081H04Rik	0	0	0	0	0	0	0	0
+1700081H22Rik	0	0	0	0	0	0	0	0
+1700084E18Rik	0	1	0	0	0	0	0	0
+1700084F23Rik	0	0	0	0	0	0	0	0
+1700084J12Rik	0	0	0	0	0	0	0	0
+1700085B03Rik	0	0	0	0	0	0	0	0
+1700085C21Rik	0	0	0	0	0	0	0	0
+1700086L19Rik	0	0	0	0	0	0	0	0
+1700086O06Rik	8	1	3	7	2	1	4	0
+1700091E21Rik	0	0	0	0	0	0	1	2
+1700091H14Rik	0	0	0	0	0	0	0	0
+1700092C02Rik	0	0	0	0	0	0	0	0
+1700092C10Rik	1	0	0	0	0	0	0	0
+1700092E19Rik	0	0	0	0	0	0	0	0
+1700092K14Rik	0	0	0	0	0	0	0	0
+1700094J05Rik	0	0	0	0	0	1	0	0
+1700094M24Rik	0	0	0	0	0	0	0	0
+1700095A21Rik	0	0	0	0	0	0	0	0
+1700095B10Rik	0	0	0	0	0	0	2	0
+1700095B22Rik	0	1	0	0	0	0	0	0
+1700096J18Rik	0	0	0	0	0	0	0	0
+1700096K18Rik	2	0	0	0	0	0	0	0
+1700097N02Rik	0	0	0	0	0	0	0	0
+1700100L14Rik	0	0	0	0	0	0	0	0
+1700101I11Rik	0	0	0	0	1	2	0	0
+1700101O22Rik	0	0	0	0	0	0	0	0
+1700102H20Rik	0	0	0	4	0	0	0	0
+1700104A03Rik	0	0	0	0	0	0	0	0
+1700105P06Rik	0	1	0	0	0	0	0	0
+1700108F19Rik	0	0	0	0	0	0	0	0
+1700108J01Rik	0	0	0	0	0	0	0	0
+1700109F18Rik	0	0	0	0	0	0	0	0
+1700109G14Rik	0	0	0	0	0	0	0	0
+1700109G15Rik	0	0	0	0	0	0	0	0
+1700109I08Rik	0	0	0	0	0	0	0	0
+1700110C19Rik	0	0	0	0	0	0	0	0
+1700110I01Rik	0	0	0	0	0	0	0	0
+1700110K17Rik	0	0	0	0	0	0	0	0
+1700111N16Rik	0	0	0	0	0	0	0	0
+1700112H15Rik	0	0	0	0	0	0	0	0
+1700112J05Rik	0	0	0	0	0	0	0	0
+1700113A16Rik	2	1	0	1	1	2	3	1
+1700119H24Rik	0	0	0	0	0	2	0	0
+1700120C14Rik	2	0	0	0	0	0	0	0
+1700120E14Rik	2	1	0	0	0	0	0	0
+1700120G07Rik	0	0	0	0	0	0	0	0
+1700120K04Rik	0	1	0	0	0	0	0	0
+1700121L16Rik	0	0	0	0	0	0	0	0
+1700121N20Rik	0	0	0	0	0	0	0	0
+1700123L14Rik	0	0	0	0	0	0	0	0
+1700123M08Rik	0	6	3	3	0	1	0	1
+1700123O12Rik	0	0	0	1	0	0	0	0
+1700123O21Rik	0	0	0	0	0	0	0	0
+1700125G02Rik	0	0	0	0	0	0	0	0
+1700125G22Rik	0	0	0	0	1	0	0	0
+1700125H03Rik	0	0	0	1	0	0	2	0
+1700126H18Rik	0	0	0	0	1	0	0	2
+1700128A07Rik	0	0	0	0	0	0	0	0
+1700128F08Rik	0	0	0	0	0	0	0	0
+1810006J02Rik	0	0	0	0	0	0	0	0
+1810007C17Rik	0	0	0	0	0	0	0	0
+1810007D17Rik	0	0	1	0	0	0	0	0
+1810007I06Rik	0	0	0	0	0	0	0	0
+1810008I18Rik	8	0	0	0	0	16	1	0
+1810010D01Rik	0	1	0	0	0	0	0	0
+1810012K16Rik	0	0	1	1	0	0	1	0
+1810013A23Rik	0	0	0	0	0	0	0	0
+1810014B01Rik	1	0	0	0	1	4	0	0
+1810018F18Rik	0	0	0	0	0	0	0	0
+1810019D21Rik	42	0	0	0	36	30	9	0
+1810020O05Rik	0	0	0	0	0	0	0	0
+1810021B22Rik	0	0	0	0	0	2	0	0
+1810026B05Rik	8	0	0	0	1	5	1	0
+1810032O08Rik	228	30	39	93	168	111	102	30
+1810034E14Rik	11	9	2	15	10	4	8	5
+1810035I16Rik	0	0	0	0	0	0	0	0
+1810044D09Rik	1	0	0	0	0	1	0	0
+1810053B23Rik	0	0	0	0	0	0	0	0
+1810058I24Rik	10	0	2	2	2	28	6	0
+1810062O18Rik	1	1	0	0	2	3	0	0
+1810064F22Rik	8	0	0	0	2	4	0	0
+2010001M06Rik	0	0	0	0	0	0	0	0
+2010003O02Rik	3	0	0	3	2	6	3	0
+2010009K17Rik	7	2	1	0	0	8	3	0
+2010010A06Rik	0	0	0	0	0	0	0	0
+2010016I18Rik	0	0	0	0	0	0	0	0
+2010106C02Rik	0	0	0	0	0	0	0	0
+2010204K13Rik	0	0	0	0	0	0	0	0
+2010308F09Rik	0	1	2	2	0	0	1	1
+2010310C07Rik	5	1	0	0	1	1	1	0
+2010320M18Rik	1	0	0	3	2	1	1	2
+2210015D19Rik	0	1	0	0	0	4	0	0
+2210019I11Rik	0	0	0	0	0	0	0	0
+2210039B01Rik	0	0	0	0	0	0	0	0
+2210408F21Rik	6	6	18	18	42	66	54	24
+2210409D07Rik	0	0	1	0	0	0	0	0
+2210409E12Rik	0	0	0	0	0	0	0	0
+2210414B05Rik	0	0	0	0	0	0	0	0
+2210416O15Rik	0	0	0	1	1	0	0	0
+2210417A02Rik	0	0	0	0	0	2	0	0
+2210417K05Rik	0	0	0	0	0	0	0	0
+2210420H20Rik	0	0	0	0	0	0	0	0
+2310001H17Rik	13	0	0	0	9	14	15	3
+2310001K24Rik	0	0	0	1	1	1	0	1
+2310002D06Rik	0	0	0	0	0	0	0	0
+2310002F09Rik	0	0	0	0	0	0	0	0
+2310005A03Rik	0	0	0	0	0	0	0	0
+2310005E17Rik	0	0	0	0	0	0	0	0
+2310008N11Rik	0	0	0	0	0	0	0	0
+2310009A05Rik	1	0	0	0	0	0	0	0
+2310010J17Rik	5	2	0	3	0	0	0	0
+2310014F07Rik	0	0	2	1	0	0	0	0
+2310015A10Rik	5	0	0	0	0	2	1	0
+2310015B20Rik	0	0	0	0	0	0	0	0
+2310015D24Rik	0	0	0	0	0	1	0	0
+2310016D03Rik	0	0	1	1	0	0	0	0
+2310020H05Rik	0	0	0	0	0	0	0	0
+2310030A07Rik	0	0	0	0	0	0	0	0
+2310034G01Rik	0	0	0	0	0	0	0	0
+2310034O05Rik	0	0	0	0	0	0	0	0
+2310039L15Rik	1	0	0	0	0	0	0	0
+2310040G24Rik	4	0	0	2	0	0	2	0
+2310043L19Rik	0	0	0	0	0	0	0	0
+2310043O21Rik	2	0	1	0	0	0	0	0
+2310044G17Rik	6	0	2	0	3	7	2	1
+2310050B05Rik	0	1	0	4	0	0	2	3
+2310061J03Rik	2	0	0	0	1	0	0	0
+2310065F04Rik	0	0	0	0	0	0	0	0
+2310068J16Rik	0	0	0	0	0	0	0	0
+2310069B03Rik	0	0	0	0	0	0	0	0
+2310069G16Rik	0	0	0	0	0	0	0	0
+2310081J21Rik	0	0	0	0	0	0	0	0
+2410003L11Rik	0	0	0	0	0	0	0	0
+2410004I01Rik	0	0	0	0	0	0	0	0
+2410004N09Rik	22	0	0	2	0	26	0	0
+2410006H16Rik	656	221	199	482	413	264	454	238
+2410007B07Rik	0	0	0	0	0	0	0	0
+2410012E07Rik	0	0	0	0	0	0	0	0
+2410017I17Rik	1	0	0	0	0	0	0	0
+2410018L13Rik	0	0	0	0	0	0	0	0
+2410021H03Rik	0	0	0	0	0	0	0	0
+2410057H14Rik	0	0	0	0	0	0	0	0
+2410088K16Rik	0	0	0	0	0	0	0	0
+2410114N07Rik	0	0	0	0	0	0	0	0
+2410133F24Rik	1	0	1	0	0	0	0	0
+2410137F16Rik	1	0	0	2	0	1	1	0
+2500004C02Rik	0	0	0	0	0	0	0	0
+2510003D18Rik	0	0	0	0	0	0	0	0
+2600006L11Rik	0	0	0	0	0	0	2	0
+2610001J05Rik	0	1	1	1	1	2	0	1
+2610002J02Rik	1	0	0	2	1	1	0	1
+2610005L07Rik	0	0	0	0	0	0	0	0
+2610016A17Rik	0	0	0	0	0	0	0	0
+2610017I09Rik	0	0	0	0	0	0	0	0
+2610019E17Rik	248	45	22	86	196	98	155	42
+2610020C07Rik	7	2	0	0	0	9	1	0
+2610027K06Rik	1	0	2	1	0	6	1	0
+2610028E06Rik	0	0	0	0	0	0	0	0
+2610035D17Rik	1	0	1	0	0	1	0	1
+2610035F20Rik	1	0	0	0	0	2	0	0
+2610037D02Rik	0	1	0	0	0	0	0	1
+2610100L16Rik	0	0	0	0	0	0	0	0
+2610203C20Rik	30	132	92	190	18	6	23	119
+2610203C22Rik	6	1	1	0	0	7	0	0
+2610204G22Rik	2	0	0	0	0	0	0	0
+2610206C17Rik	1	0	0	0	0	1	1	0
+2610306M01Rik	2	0	0	0	0	0	0	0
+2610307P16Rik	0	0	2	0	0	0	2	2
+2610316D01Rik	0	0	0	0	0	0	0	0
+2610507I01Rik	0	0	0	0	0	0	0	0
+2700038G22Rik	90	108	100	322	58	68	58	68
+2700046A07Rik	0	0	0	0	0	0	0	0
+2700046G09Rik	0	0	1	0	0	0	0	0
+2700054A10Rik	0	0	0	0	0	0	0	0
+2700069I18Rik	1	0	0	0	0	2	2	0
+2700070H01Rik	0	0	0	0	0	0	0	0
+2700081L22Rik	0	0	0	0	0	0	0	0
+2700086A05Rik	0	0	0	0	0	0	0	0
+2700089E24Rik	27	1	1	0	0	36	2	3
+2700089I24Rik	0	0	1	0	0	0	0	0
+2700097O09Rik	0	0	0	0	0	2	0	0
+2700099C18Rik	0	0	0	0	0	0	0	0
+2810001G20Rik	2	0	0	2	0	0	0	0
+2810002D19Rik	0	0	0	0	0	0	0	0
+2810008D09Rik	58	9	4	13	4	31	7	11
+2810011L19Rik	0	0	0	0	0	0	0	0
+2810013P06Rik	4	0	0	2	4	2	1	0
+2810025M15Rik	0	1	0	0	0	0	0	0
+2810029C07Rik	0	1	0	0	0	0	0	0
+2810032G03Rik	0	0	0	0	0	0	0	0
+2810047C21Rik1	0	0	0	0	0	0	0	0
+2810049E08Rik	0	0	0	0	0	0	0	0
+2810055G20Rik	4	3	3	3	0	2	2	2
+2810403D21Rik	0	0	0	0	0	0	0	0
+2810404M03Rik	0	0	0	0	0	0	0	0
+2810405F15Rik	0	0	0	0	0	0	0	0
+2810408I11Rik	0	0	0	0	0	1	1	0
+2810410L24Rik	0	2	0	0	0	0	1	0
+2810429I04Rik	0	0	0	0	0	0	0	0
+2810433D01Rik	0	0	0	0	0	0	0	0
+2810442I21Rik	0	0	0	0	0	1	0	0
+2810442N19Rik	0	1	0	0	0	0	0	0
+2810454H06Rik	1	2	2	5	0	1	6	1
+2810468N07Rik	0	0	0	0	0	0	0	0
+2810471M01Rik	0	0	0	0	0	0	0	0
+2900002K06Rik	1	0	0	0	0	1	0	0
+2900005J15Rik	1	0	1	0	0	0	0	0
+2900008C10Rik	0	1	2	2	2	0	1	0
+2900009J06Rik	7	0	0	0	0	3	0	0
+2900041M22Rik	0	0	0	0	0	0	0	0
+2900052N01Rik	0	0	0	0	0	0	0	0
+2900055J20Rik	0	0	0	1	0	0	0	0
+2900056M20Rik	0	2	2	4	0	0	2	0
+2900057B20Rik	0	0	0	0	0	1	0	0
+2900060B14Rik	27	18	14	57	21	6	11	31
+2900076A07Rik	301	116	77	417	183	246	226	97
+2900079G21Rik	0	0	0	0	0	0	0	0
+2900092D14Rik	0	0	0	0	0	0	0	0
+2900093L17Rik	0	0	0	0	0	0	0	0
+2900097C17Rik	0	0	0	0	0	0	0	0
+3000002C10Rik	0	0	0	0	0	0	0	0
+3010001F23Rik	0	0	0	2	0	0	0	0
+3010033K07Rik	0	0	0	0	0	0	0	0
+3100003L05Rik	0	0	0	0	0	0	0	0
+3110009F21Rik	0	0	0	0	0	0	0	0
+3110015C05Rik	0	0	0	0	0	0	0	0
+3110021A11Rik	0	0	0	1	0	0	1	0
+3110039I08Rik	0	0	2	0	0	0	0	3
+3110039M20Rik	0	0	0	0	0	0	0	0
+3110045C21Rik	10	0	0	3	3	2	2	1
+3110056K07Rik	1	0	1	2	1	4	0	0
+3110070M22Rik	0	0	0	0	1	0	0	0
+3110099E03Rik	0	0	0	0	0	0	0	0
+3200001D21Rik	0	0	0	0	0	0	0	0
+3300005D01Rik	0	0	0	0	0	0	0	0
+3632454L22Rik	0	0	0	0	0	0	0	0
+3830408C21Rik	0	0	0	1	0	0	0	0
+3930402G23Rik	0	0	0	0	0	0	0	0
+4632415L05Rik	0	0	0	0	0	0	0	0
+4632427E13Rik	2	0	0	0	0	1	0	0
+4632428C04Rik	0	0	0	1	0	0	0	0
+4732416N19Rik	1	0	3	3	1	2	1	0
+4732471J01Rik	25	4	0	3	10	14	18	4
+4732490B19Rik	0	0	0	0	0	0	0	0
+4732491K20Rik	0	0	0	0	0	0	0	0
+4831440E17Rik	0	0	0	0	0	3	0	0
+4833411C07Rik	2	0	0	0	0	1	0	0
+4833412C05Rik	0	0	0	0	0	0	0	0
+4833417C18Rik	2	0	0	1	1	1	4	0
+4833418N02Rik	34	9	3	14	28	51	25	6
+4833419F23Rik	0	2	0	1	0	0	0	0
+4833422C13Rik	9	2	1	1	6	15	0	0
+4833427F10Rik	0	0	0	0	0	0	0	0
+4833428L15Rik	0	0	0	0	0	0	1	0
+4921504A21Rik	0	0	0	0	0	0	0	0
+4921507L20Rik	1	0	0	0	0	0	0	0
+4921508A21Rik	0	0	0	0	0	0	0	0
+4921508D12Rik	0	0	0	0	0	0	0	0
+4921509O07Rik	0	0	1	0	0	0	0	0
+4921511C10Rik	0	0	1	1	0	3	2	0
+4921511C20Rik	0	0	0	0	0	0	0	0
+4921511I17Rik	0	0	1	0	0	0	0	0
+4921513I03Rik	0	0	2	0	2	0	0	2
+4921515E04Rik	1	0	1	0	0	0	0	0
+4921524J17Rik	0	0	0	0	0	2	0	0
+4921525B02Rik	0	0	0	0	0	0	0	0
+4921525O09Rik	0	0	0	0	0	0	0	0
+4921530L18Rik	0	1	1	1	0	0	0	0
+4921531C22Rik	0	0	1	1	2	0	1	0
+4921531P14Rik	0	0	0	0	0	0	0	0
+4921533I20Rik	0	0	0	0	0	0	0	0
+4922502H24Rik	0	0	0	0	0	0	0	0
+4922502N22Rik	0	0	0	0	0	0	0	0
+4930401C15Rik	0	0	0	0	0	0	0	0
+4930401O10Rik	0	0	0	0	0	0	0	0
+4930401O12Rik	0	0	0	0	0	0	0	0
+4930402F11Rik	0	0	0	0	0	0	0	0
+4930404A05Rik	0	0	0	0	0	0	0	0
+4930404H11Rik	0	0	0	0	0	0	0	0
+4930404I05Rik	0	0	0	0	0	2	0	0
+4930405A10Rik	0	0	0	0	0	0	0	0
+4930405A21Rik	0	0	0	0	0	0	0	0
+4930405D11Rik	0	0	0	0	0	0	0	0
+4930405J17Rik	0	0	0	0	0	0	0	0
+4930405P13Rik	3	0	0	0	0	7	0	0
+4930406D18Rik	0	0	0	0	0	0	0	0
+4930412B13Rik	0	1	0	0	0	0	0	0
+4930412C18Rik	0	1	1	0	0	0	0	2
+4930412O13Rik	0	0	0	0	0	0	0	0
+4930413E15Rik	0	0	0	0	0	0	0	0
+4930413F20Rik	0	0	0	0	0	0	0	0
+4930413G21Rik	2	1	0	1	6	2	0	0
+4930413M19Rik	0	0	0	0	0	0	0	0
+4930414L22Rik	1	1	0	1	0	3	1	1
+4930414N06Rik	3	0	0	0	0	1	0	0
+4930417O13Rik	3	2	0	0	0	5	2	0
+4930417O22Rik	0	0	0	0	0	0	0	0
+4930419G24Rik	0	1	0	0	0	0	0	0
+4930423M02Rik	0	0	0	0	0	0	0	0
+4930425K10Rik	0	0	0	0	0	0	0	0
+4930425O10Rik	0	0	0	0	0	0	0	0
+4930426L09Rik	2	0	0	1	1	0	0	0
+4930428E07Rik	0	0	0	0	0	0	0	0
+4930428G15Rik	0	0	0	0	0	0	0	0
+4930428O21Rik	0	0	0	0	0	0	0	0
+4930429B21Rik	0	0	0	0	0	0	0	1
+4930429D17Rik	0	0	0	0	0	0	0	0
+4930429F11Rik	0	0	0	0	0	0	0	0
+4930429F24Rik	0	1	1	0	2	3	0	1
+4930430F21Rik	0	0	0	0	0	0	0	0
+4930430J02Rik	0	0	0	0	0	0	0	0
+4930431F12Rik	0	0	0	0	0	0	0	0
+4930431P03Rik	0	0	0	0	0	0	0	0
+4930432J09Rik	0	0	0	0	0	0	0	0
+4930433B08Rik	0	1	0	0	0	0	0	0
+4930433N12Rik	0	0	0	0	0	0	0	0
+4930434J06Rik	0	0	0	0	0	0	0	0
+4930438E09Rik	0	0	0	0	0	0	0	1
+4930440C22Rik	0	0	0	0	0	0	0	0
+4930441J16Rik	0	0	0	0	0	0	0	0
+4930441O14Rik	0	0	0	0	0	0	1	0
+4930442J19Rik	0	0	0	0	0	0	0	0
+4930442L01Rik	0	0	0	0	0	1	1	0
+4930443O20Rik	0	0	0	0	0	0	0	0
+4930444F02Rik	0	0	0	0	0	0	0	0
+4930444M15Rik	0	0	0	0	0	0	0	0
+4930447J18Rik	0	0	0	0	0	0	0	0
+4930447K03Rik	0	0	0	0	0	0	0	0
+4930447N08Rik	0	0	0	0	0	0	0	0
+4930448C13Rik	0	0	0	0	0	0	0	0
+4930448F12Rik	0	0	0	0	0	0	0	0
+4930448H16Rik	0	0	0	0	0	0	0	0
+4930448I06Rik	0	0	0	0	0	0	0	0
+4930448I18Rik	0	0	0	0	0	0	0	0
+4930448K20Rik	0	0	0	0	0	0	0	0
+4930449E01Rik	0	0	0	0	0	0	0	0
+4930449E18Rik	0	1	0	0	0	0	0	0
+4930451G09Rik	1	0	0	0	2	0	1	0
+4930452A19Rik	2	0	1	1	0	0	0	0
+4930452G13Rik	0	0	0	0	0	0	0	0
+4930452N14Rik	0	0	0	0	0	0	0	0
+4930453L07Rik	0	0	0	0	0	0	0	0
+4930455B14Rik	0	0	0	0	0	0	0	0
+4930455C13Rik	1	0	0	0	0	0	0	0
+4930455D15Rik	0	1	0	1	0	0	0	0
+4930455F16Rik	0	0	0	0	0	0	0	0
+4930455H04Rik	3	0	1	0	1	4	0	0
+4930455J16Rik	0	0	0	0	0	0	0	0
+4930456L15Rik	0	0	0	0	0	0	0	0
+4930459L07Rik	0	0	0	0	0	0	0	0
+4930461G14Rik	0	0	0	0	0	0	0	0
+4930465K10Rik	0	0	0	0	0	0	0	0
+4930465M20Rik	0	0	0	0	0	0	0	0
+4930467D21Rik	2	0	1	0	0	1	0	0
+4930467K11Rik	0	0	0	0	0	0	0	0
+4930470H14Rik	0	0	0	0	0	0	0	0
+4930470P17Rik	0	0	0	0	0	0	0	0
+4930471C04Rik	0	0	0	0	0	0	0	0
+4930471G03Rik	0	0	0	0	0	0	0	0
+4930471I20Rik	3	0	0	1	0	8	0	1
+4930471M09Rik	2	0	0	0	0	0	0	0
+4930473A02Rik	2	0	0	2	0	1	0	0
+4930473O22Rik	0	0	0	0	0	0	0	0
+4930474G06Rik	0	1	1	1	0	1	0	0
+4930474H20Rik	0	0	0	0	0	0	0	0
+4930474M22Rik	0	0	0	0	0	0	0	0
+4930474N09Rik	0	0	0	0	0	0	0	0
+4930478L05Rik	0	0	0	0	0	0	0	0
+4930478P22Rik	0	0	0	0	0	0	0	0
+4930479D17Rik	0	0	0	0	0	0	0	0
+4930479M11Rik	0	0	0	0	0	0	0	0
+4930480G23Rik	0	0	0	0	0	0	0	0
+4930480K15Rik	0	0	0	0	0	0	0	0
+4930480M12Rik	0	1	0	0	0	0	0	0
+4930481A15Rik	6	2	0	0	0	4	0	0
+4930483J18Rik	0	0	0	0	0	0	0	0
+4930483K19Rik	8	0	0	0	3	11	1	1
+4930483O08Rik	0	0	0	0	0	0	0	0
+4930486F22Rik	0	0	0	0	0	0	0	0
+4930486I03Rik	1	0	0	0	0	0	0	0
+4930487D11Rik	0	0	0	0	0	0	0	0
+4930487H11Rik	0	0	0	0	0	0	0	0
+4930488B22Rik	0	0	0	0	0	0	0	0
+4930488L21Rik	0	0	0	0	0	0	0	0
+4930500F04Rik	0	0	0	0	0	0	0	0
+4930500J02Rik	0	0	0	0	0	0	0	0
+4930500L23Rik	0	0	0	0	0	0	0	0
+4930502A04Rik	0	0	0	0	0	0	0	0
+4930502E09Rik	0	0	0	0	1	0	3	0
+4930503E24Rik	0	0	0	0	0	0	0	0
+4930503H13Rik	0	0	0	0	0	0	0	0
+4930503O07Rik	0	0	0	0	0	0	0	0
+4930505G20Rik	0	0	0	0	0	0	0	0
+4930506C21Rik	1	1	0	1	1	2	3	0
+4930507D05Rik	0	0	0	0	0	0	0	1
+4930509E16Rik	4	0	0	1	5	0	0	1
+4930509J09Rik	0	0	0	1	0	0	0	0
+4930509K18Rik	0	0	0	0	0	0	0	0
+4930511A02Rik	0	0	0	0	0	0	0	0
+4930511E03Rik	0	0	0	0	0	0	0	0
+4930511M06Rik	0	0	0	0	0	0	0	0
+4930512B01Rik	4	0	0	1	1	3	0	0
+4930513D17Rik	0	0	0	0	0	0	0	0
+4930513N10Rik	0	0	0	1	0	1	0	1
+4930515B02Rik	0	0	0	0	0	0	0	0
+4930515G01Rik	3	0	0	1	0	2	1	0
+4930515G16Rik	0	0	0	0	0	0	0	0
+4930515L03Rik	0	1	0	0	0	0	0	0
+4930515L19Rik	0	0	0	0	0	0	0	0
+4930517E11Rik	0	0	0	0	0	0	0	0
+4930518P08Rik	0	0	0	0	0	0	0	0
+4930519D14Rik	0	0	0	0	0	0	0	0
+4930519F09Rik	0	0	4	0	0	0	0	1
+4930519F24Rik	0	0	0	0	0	0	0	0
+4930519H02Rik	0	0	0	0	0	0	0	0
+4930520O04Rik	0	0	0	2	0	0	0	0
+4930520P13Rik	0	0	0	0	0	0	0	0
+4930521E06Rik	0	0	0	0	0	0	0	0
+4930522O17Rik	0	0	0	0	0	0	0	0
+4930523C07Rik	1	1	0	0	1	2	1	1
+4930523O13Rik	0	0	0	0	0	0	0	0
+4930524C18Rik	0	0	0	0	0	0	0	0
+4930524L23Rik	0	0	0	0	0	0	0	1
+4930524O05Rik	0	0	0	0	0	0	0	0
+4930524O08Rik	0	0	0	0	0	0	0	0
+4930525D18Rik	0	0	0	0	0	0	0	0
+4930525G20Rik	0	0	0	0	0	0	0	0
+4930526I15Rik	1	0	0	4	0	0	2	1
+4930526L06Rik	2	0	1	0	0	0	0	1
+4930527F14Rik	0	0	0	0	1	0	1	2
+4930527G23Rik	0	0	0	0	0	0	0	0
+4930528A17Rik	0	2	0	0	0	0	0	0
+4930528D03Rik	0	0	0	0	0	0	0	0
+4930528P14Rik	0	0	0	0	0	0	0	0
+4930529C04Rik	0	0	0	0	0	0	0	0
+4930529F24Rik	0	0	0	0	0	0	0	0
+4930529K09Rik	0	0	0	0	0	1	0	0
+4930529L06Rik	0	0	0	0	0	0	0	0
+4930533B01Rik	1	0	0	0	0	0	0	0
+4930533P14Rik	0	0	0	0	0	0	0	0
+4930539C22Rik	0	0	0	0	0	0	0	0
+4930539J05Rik	2	1	0	0	0	0	0	0
+4930539M17Rik	0	0	0	0	0	0	0	0
+4930539N22Rik	0	0	0	0	0	0	0	0
+4930540M03Rik	0	0	0	0	0	0	0	0
+4930542C21Rik	0	0	0	0	0	0	0	0
+4930542D17Rik	0	0	0	0	0	0	0	0
+4930542H20Rik	0	0	0	0	0	0	0	0
+4930543E12Rik	0	0	0	0	0	0	0	0
+4930544M13Rik	0	0	1	0	1	0	0	0
+4930545E07Rik	0	0	0	0	0	0	0	0
+4930545H06Rik	0	0	0	0	0	0	0	0
+4930545L23Rik	1	0	0	0	2	3	0	0
+4930546C10Rik	0	0	0	1	0	0	1	0
+4930546K05Rik	1	0	0	0	2	2	0	0
+4930547E08Rik	0	0	0	0	1	0	0	0
+4930547E14Rik	0	0	0	1	0	0	2	1
+4930548G14Rik	0	0	0	0	0	0	0	0
+4930548J01Rik	0	0	0	0	0	0	0	0
+4930548K13Rik	0	0	0	0	0	0	0	0
+4930549G23Rik	3	0	0	0	0	4	0	0
+4930552N02Rik	0	0	1	0	0	0	0	0
+4930552P12Rik	1	0	0	0	0	0	2	0
+4930553E22Rik	0	0	0	0	0	0	0	0
+4930554C24Rik	0	0	0	0	0	0	0	0
+4930555B11Rik	18	4	7	4	3	10	6	9
+4930556C24Rik	0	0	0	0	0	0	0	0
+4930556G01Rik	0	0	0	0	0	0	0	0
+4930556J02Rik	0	0	0	0	0	0	0	0
+4930556M19Rik	11	2	0	0	3	7	0	0
+4930556N09Rik	0	0	0	0	0	0	0	1
+4930557J02Rik	0	0	1	0	0	0	0	0
+4930558C23Rik	0	0	0	0	0	0	0	0
+4930558G05Rik	0	0	0	0	0	0	0	0
+4930558J18Rik	0	0	0	0	0	0	0	0
+4930562F07Rik	2	0	2	0	0	6	0	0
+4930563E18Rik	0	0	0	0	0	0	0	0
+4930563F08Rik	0	0	0	0	0	0	0	0
+4930563M20Rik	0	1	0	0	0	0	0	0
+4930564G21Rik	0	0	0	0	0	0	0	0
+4930564K09Rik	4	0	0	0	0	3	0	0
+4930565D16Rik	0	0	0	0	0	0	0	0
+4930565N06Rik	2	1	1	1	0	2	0	1
+4930567H12Rik	0	0	0	0	0	0	0	0
+4930567J20Rik	0	0	0	0	0	0	0	0
+4930567K20Rik	0	0	0	0	0	0	0	0
+4930568E12Rik	0	0	0	0	0	0	0	0
+4930568G15Rik	1	1	0	0	0	3	0	0
+4930568K20Rik	0	0	0	0	0	0	0	0
+4930570G19Rik	0	0	0	3	0	0	0	0
+4930572K03Rik	0	0	0	0	0	0	0	0
+4930572O03Rik	0	0	0	0	0	0	0	0
+4930572O13Rik	0	0	0	0	0	0	0	0
+4930573O16Rik	3	0	0	0	0	1	1	1
+4930577N17Rik	3	0	0	1	1	0	2	0
+4930578E11Rik	0	0	0	0	0	0	0	0
+4930578M01Rik	0	1	1	0	0	0	0	1
+4930578N18Rik	0	0	0	0	0	0	0	0
+4930579G18Rik	0	0	0	1	0	0	0	0
+4930579K19Rik	0	0	0	0	0	0	0	0
+4930581F22Rik	10	0	0	1	3	13	6	0
+4930583K01Rik	1	1	0	0	1	0	1	2
+4930583P06Rik	0	0	0	0	0	0	0	0
+4930584F24Rik	0	0	0	0	0	0	0	0
+4930590L20Rik	0	0	0	2	0	0	0	0
+4930592A05Rik	2	0	0	0	0	4	0	0
+4930592I03Rik	0	0	0	1	0	0	0	0
+4930593A02Rik	1	0	0	0	0	1	0	0
+4930593C16Rik	0	0	0	0	0	0	0	0
+4930594C11Rik	1	0	0	1	0	0	0	0
+4930596M17Rik	0	0	0	0	0	0	0	0
+4930597G03Rik	0	0	0	0	0	0	0	0
+4930598F16Rik	0	0	0	0	0	0	0	0
+4930599N23Rik	5	0	1	0	0	14	0	2
+4931402G19Rik	0	1	0	0	0	1	0	0
+4931403E22Rik	6	0	0	0	0	10	0	0
+4931403G20Rik	4	0	0	0	0	0	0	0
+4931406H21Rik	0	0	0	0	0	1	0	0
+4931408D14Rik	10	0	0	0	0	12	0	0
+4931409K22Rik	0	0	0	0	0	0	0	0
+4931419H13Rik	0	0	0	0	0	0	0	0
+4931420L22Rik	0	0	0	0	0	0	0	0
+4931428L18Rik	0	0	0	0	0	0	0	0
+4931429P17Rik	0	1	0	0	0	0	0	0
+4931430N09Rik	0	0	0	1	0	0	0	0
+4931431B13Rik	0	0	0	0	0	0	0	0
+4931431C16Rik	1	1	0	3	1	0	1	1
+4931440J10Rik	2	1	1	2	4	2	1	2
+4931440L10Rik	0	0	0	0	0	0	0	0
+4931440P22Rik	4	1	0	0	1	2	4	0
+4932412D23Rik	0	0	0	2	0	0	0	2
+4932413F04Rik	0	0	0	0	0	0	0	0
+4932414J04Rik	0	0	0	0	0	0	0	0
+4932415G12Rik	0	0	0	1	0	2	0	0
+4932415M13Rik	0	0	0	0	0	0	0	0
+4932416H05Rik	0	1	0	0	0	0	0	0
+4932435O22Rik	0	1	0	0	0	0	0	1
+4932441J04Rik	0	0	1	0	0	2	0	0
+4932702P03Rik	6	3	0	0	2	9	0	0
+4933400A11Rik	0	0	1	0	0	0	0	0
+4933400B14Rik	0	0	0	0	0	0	0	0
+4933400C23Rik	0	0	0	0	0	0	0	0
+4933400F21Rik	1	0	0	0	0	1	0	0
+4933400L20Rik	1	0	0	1	1	1	0	0
+4933401B06Rik	0	0	0	0	0	0	0	0
+4933401D09Rik	0	0	0	0	0	0	0	0
+4933401H06Rik	0	0	0	0	0	0	0	0
+4933401P06Rik	0	0	0	0	0	0	0	0
+4933402C06Rik	0	0	0	0	0	0	0	0
+4933402J10Rik	0	0	2	0	0	0	0	0
+4933402J15Rik	0	0	0	0	0	0	0	0
+4933404G15Rik	0	0	0	0	0	0	0	0
+4933404K08Rik	0	0	0	0	0	0	0	0
+4933404O12Rik	0	0	0	0	0	3	2	0
+4933405D12Rik	8	0	0	0	4	13	0	1
+4933405E24Rik	1	0	0	0	0	1	0	0
+4933406C10Rik	0	0	0	0	0	1	0	0
+4933406D12Rik	0	0	0	0	0	0	0	0
+4933406F09Rik	0	0	0	0	0	0	0	0
+4933406G16Rik	0	0	0	0	0	0	0	0
+4933406I18Rik	1	0	0	0	0	6	4	0
+4933406J10Rik	2	0	0	0	0	0	0	0
+4933406K04Rik	0	0	0	0	0	0	0	0
+4933407E24Rik	0	0	0	0	0	0	0	0
+4933407G14Rik	0	0	1	0	0	0	0	0
+4933407I05Rik	0	0	0	0	0	0	0	0
+4933407K13Rik	1	0	0	0	0	0	0	0
+4933407L21Rik	0	0	0	0	0	0	0	0
+4933408J17Rik	0	0	0	0	0	0	0	0
+4933408N05Rik	0	0	0	0	0	0	0	0
+4933409K07Rik	0	0	0	0	0	0	0	0
+4933411E08Rik	0	0	0	0	0	0	0	0
+4933411G06Rik	0	0	0	0	0	0	0	0
+4933412E12Rik	0	0	0	0	0	0	0	0
+4933412O06Rik	0	0	0	0	0	0	0	0
+4933413J09Rik	0	1	0	0	0	0	0	1
+4933413L06Rik	0	0	0	0	0	0	0	0
+4933416E03Rik	0	0	0	0	0	0	0	0
+4933416M06Rik	0	0	1	0	0	0	0	0
+4933416M07Rik	0	0	0	0	0	0	0	0
+4933417D19Rik	1	0	0	0	3	0	1	0
+4933417E11Rik	0	1	0	0	0	0	0	0
+4933417G07Rik	0	0	0	0	0	0	0	0
+4933417O13Rik	0	0	0	0	0	0	0	0
+4933421O10Rik	1	0	0	0	2	0	1	0
+4933422A05Rik	0	0	0	0	0	0	0	0
+4933424G05Rik	1	0	0	0	0	1	0	0
+4933424G06Rik	0	0	1	0	0	0	0	0
+4933425B07Rik	4	0	0	0	1	3	0	0
+4933425H06Rik	0	0	1	0	0	0	0	0
+4933426D04Rik	0	0	0	0	0	0	0	0
+4933427E11Rik	0	0	0	0	0	0	0	0
+4933427E13Rik	0	0	0	0	0	0	0	0
+4933427I22Rik	0	0	1	0	0	0	0	0
+4933428C19Rik	0	0	0	0	0	0	0	0
+4933429K18Rik	0	0	0	0	0	0	0	0
+4933429O19Rik	0	0	0	0	0	0	0	0
+4933430H16Rik	0	0	0	0	0	0	0	0
+4933430M04Rik	0	0	0	0	0	0	0	0
+4933430N04Rik	0	0	0	0	0	0	0	0
+4933431E20Rik	0	1	0	0	0	0	0	0
+4933431G14Rik	0	0	0	0	0	0	0	0
+4933432G23Rik	0	0	0	0	0	0	0	0
+4933432I03Rik	0	0	0	0	0	0	0	0
+4933432I09Rik	0	0	0	0	0	0	0	0
+4933432K03Rik	0	0	0	0	0	0	0	0
+4933433F19Rik	0	0	0	0	0	0	0	0
+4933433G15Rik	0	0	1	2	0	0	1	0
+4933433G19Rik	0	0	0	0	0	3	0	0
+4933433H22Rik	0	0	0	0	0	0	0	0
+4933436C20Rik	0	0	0	1	0	0	0	0
+4933436E23Rik	0	0	0	0	0	0	0	0
+4933436H12Rik	0	0	1	0	0	0	0	0
+4933438B17Rik	0	0	0	0	0	0	0	0
+4933438K21Rik	0	0	0	0	0	0	0	0
+4933439C10Rik	0	0	0	1	0	0	0	1
+4933439K11Rik	0	0	0	0	0	0	0	0
+4933440J02Rik	3	0	0	0	0	0	0	0
+4933440M02Rik	0	0	0	0	0	0	0	0
+5031425E22Rik	5	4	3	4	5	9	7	4
+5031425F14Rik	0	0	0	0	0	0	0	1
+5031426D15Rik	0	0	0	0	0	0	0	0
+5031434C07Rik	0	0	0	0	0	0	0	0
+5031434O11Rik	0	1	0	1	0	0	0	0
+5033403H07Rik	11	0	0	0	6	5	1	0
+5033404E19Rik	0	0	0	0	0	0	0	0
+5033406O09Rik	0	0	0	0	0	0	1	0
+5330411J11Rik	0	0	0	0	0	0	0	1
+5330413P13Rik	0	0	0	0	0	0	0	0
+5330426P16Rik	0	0	1	0	0	0	0	1
+5330434G04Rik	0	0	0	1	0	0	0	0
+5330439B14Rik	0	0	0	0	0	1	0	2
+5430402O13Rik	0	0	0	2	0	0	2	0
+5430403N17Rik	0	0	0	0	0	0	0	0
+5430405H02Rik	6	0	0	0	8	0	4	2
+5430416N02Rik	195	10	5	23	99	79	141	12
+5430416O09Rik	0	0	0	1	0	0	0	0
+5430417L22Rik	1	0	0	1	0	2	0	0
+5430421F17Rik	0	0	0	0	0	0	0	0
+5430427M07Rik	0	0	0	0	1	0	0	0
+5430428K19Rik	0	0	0	1	0	0	0	0
+5430434I15Rik	0	0	0	0	0	0	0	0
+5430437J10Rik	0	0	0	1	0	0	0	0
+5430440P10Rik	0	0	0	0	0	0	0	0
+5530401A14Rik	0	0	0	0	1	0	0	0
+5530601H04Rik	1	0	0	0	0	1	0	0
+5730403I07Rik	0	0	0	0	0	0	0	0
+5730405O15Rik	0	0	0	0	0	0	0	1
+5730408K05Rik	2	0	0	0	1	0	1	0
+5730412P04Rik	0	0	0	0	0	0	0	0
+5730416F02Rik	0	0	0	0	0	0	0	0
+5730420D15Rik	2	0	0	0	0	4	2	0
+5730422E09Rik	2	0	0	1	2	3	0	0
+5730435O14Rik	0	0	0	0	0	0	0	0
+5730457N03Rik	0	0	0	0	0	0	0	0
+5730460C07Rik	0	0	0	0	0	0	0	0
+5730480H06Rik	1	0	0	0	0	0	0	0
+5730488B01Rik	0	0	0	0	0	0	0	0
+5730522E02Rik	4	0	0	1	1	5	1	0
+5730577I03Rik	0	0	0	0	0	2	0	0
+5830403M04Rik	0	0	0	0	0	0	0	0
+5830416I19Rik	0	0	0	0	0	0	0	0
+5830416P10Rik	0	1	0	0	0	1	0	0
+5830417I10Rik	0	1	0	0	0	1	0	1
+5830418P13Rik	0	0	0	1	0	0	0	0
+5830428M24Rik	0	0	0	0	0	0	0	0
+5830432E09Rik	0	0	0	0	0	0	0	0
+5830444B04Rik	0	0	0	0	0	0	0	0
+5830454E08Rik	1	0	0	0	0	0	0	0
+5930403L14Rik	0	0	0	0	0	0	0	1
+5930412G12Rik	0	0	0	0	0	0	0	0
+5930430L01Rik	0	0	2	0	0	6	6	4
+5930438M14Rik	0	0	0	0	0	0	0	0
+6030407O03Rik	0	0	0	2	0	0	0	1
+6030408B16Rik	0	0	0	0	0	0	0	0
+6030440G07Rik	0	0	0	0	0	1	0	0
+6030443J06Rik	0	0	0	0	0	0	0	0
+6030466F02Rik	0	0	0	0	0	0	0	0
+6030469F06Rik	0	0	0	0	0	0	0	0
+6230400D17Rik	0	0	0	0	0	0	0	0
+6330407A03Rik	0	0	0	0	0	0	0	0
+6330410L21Rik	0	0	0	0	0	0	0	0
+6330415B21Rik	0	0	0	0	0	0	0	0
+6330418K02Rik	0	0	0	1	0	0	0	0
+6330549D23Rik	2	1	1	1	2	0	1	1
+6430411K18Rik	0	1	2	5	0	0	0	9
+6430562O15Rik	0	0	0	0	0	2	0	0
+6430584L05Rik	0	0	0	0	0	0	0	0
+6430706D22Rik	0	0	0	0	0	0	0	0
+6430710C18Rik	0	0	0	0	0	1	0	0
+6530402F18Rik	1	0	0	0	1	0	0	0
+6530411M01Rik	0	0	0	0	0	0	0	0
+6720401G13Rik	0	0	0	0	0	8	0	1
+6720468P15Rik	0	0	0	0	0	0	0	0
+6720483E21Rik	2	2	1	1	3	0	3	0
+6820431F20Rik	0	0	0	0	0	0	0	0
+7420700N18Rik	0	0	0	0	0	0	0	0
+7420701I03Rik	0	0	0	0	0	0	0	0
+7530420F21Rik	0	0	0	0	0	0	0	0
+7630403G23Rik	0	0	0	0	0	0	0	0
+8030423F21Rik	0	0	0	0	0	0	0	0
+8030442B05Rik	0	0	0	0	0	0	1	0
+8030443G20Rik	0	0	0	0	0	0	0	0
+8430403D17Rik	1	1	0	0	0	0	0	0
+8430422H06Rik	0	0	0	0	0	0	0	0
+8430423G03Rik	0	0	0	0	0	0	0	0
+8430426J06Rik	0	0	0	1	0	0	0	0
+8430429K09Rik	7	0	0	3	0	1	0	0
+8430431K14Rik	0	0	0	0	0	0	0	0
+8430436N08Rik	0	0	0	0	0	0	0	0
+8430437L04Rik	0	0	0	0	0	0	0	0
+9030204H09Rik	0	0	0	0	0	0	0	0
+9030404E10Rik	0	1	0	0	1	0	1	0
+9030612E09Rik	0	0	1	0	0	0	0	0
+9130015A21Rik	0	0	0	0	0	0	0	0
+9130015L21Rik	0	0	0	0	0	0	0	0
+9130019P16Rik	5	0	2	0	3	8	2	0
+9130024F11Rik	2	0	0	0	0	0	0	0
+9130206I24Rik	0	0	0	0	0	0	0	0
+9130209A04Rik	0	1	0	0	0	0	0	0
+9130221F21Rik	0	0	0	0	0	0	0	0
+9130221H12Rik	1	0	0	1	0	4	0	0
+9130227L01Rik	0	0	0	0	0	0	0	0
+9130230L23Rik	0	0	0	0	0	0	0	0
+9230009I02Rik	0	0	0	0	0	0	0	0
+9230102K24Rik	0	0	0	0	0	0	0	0
+9230102O04Rik	0	0	0	0	0	0	0	0
+9230105E05Rik	0	0	0	0	0	0	0	0
+9230112J17Rik	0	0	0	4	0	0	0	0
+9230114K14Rik	0	0	2	0	1	0	0	0
+9230115E21Rik	0	1	0	1	0	0	0	0
+9230116N13Rik	0	0	0	0	1	2	1	0
+9330020H09Rik	3	1	0	0	0	1	0	1
+9330102E08Rik	0	0	0	0	0	0	0	0
+9330111N05Rik	0	0	0	0	0	0	0	0
+9330117O12Rik	0	0	0	0	0	0	0	0
+9330133O14Rik	5	0	0	0	0	0	1	0
+9330151L19Rik	0	0	0	0	0	3	1	0
+9330158H04Rik	0	0	0	0	0	0	1	0
+9330159M07Rik	0	0	0	0	0	0	0	0
+9330162012Rik	6	0	0	0	1	2	0	1
+9330162B11Rik	0	0	0	0	0	0	0	0
+9330175E14Rik	0	1	0	0	1	0	0	0
+9330175M20Rik	1	2	2	2	0	0	1	1
+9330178D15Rik	0	1	3	0	0	1	0	0
+9330179D12Rik	0	6	6	7	3	3	6	9
+9330188P03Rik	0	0	0	0	0	0	0	0
+9430008C03Rik	8	2	0	0	1	10	3	2
+9430014N10Rik	0	0	0	0	0	0	0	0
+9430018G01Rik	2	0	0	0	0	0	0	0
+9430019J16Rik	0	0	0	0	0	0	0	0
+9430021M05Rik	0	0	0	0	0	0	0	0
+9430037G07Rik	0	0	0	0	0	0	0	0
+9430041J12Rik	0	0	0	0	0	0	0	0
+9430060I03Rik	4	3	0	0	1	1	1	0
+9430076C15Rik	0	0	1	1	0	0	0	0
+9430076G02Rik	0	0	0	0	0	0	0	0
+9430083A17Rik	3	0	0	0	0	3	1	0
+9430091E24Rik	10	2	2	2	0	16	6	4
+9530026F06Rik	0	1	0	0	0	0	0	0
+9530026P05Rik	0	3	4	4	1	4	0	4
+9530027J09Rik	0	0	0	1	0	1	0	0
+9530036O11Rik	0	3	1	1	0	0	0	1
+9530048J24Rik	0	0	0	0	0	0	0	0
+9530051G07Rik	0	0	0	0	0	0	0	0
+9530052E02Rik	2	1	1	1	1	2	2	1
+9530059O14Rik	0	0	0	0	0	0	0	0
+9530080O11Rik	2	0	0	0	1	2	0	0
+9530082P21Rik	0	0	0	0	0	3	0	1
+9530091C08Rik	1	1	0	1	0	0	0	0
+9630001P10Rik	0	0	0	0	0	0	0	0
+9630013A20Rik	0	0	0	0	0	0	0	0
+9630028B13Rik	0	0	0	0	0	2	1	0
+9630028H03Rik	0	0	0	0	0	0	0	0
+9830132P13Rik	0	0	0	0	0	0	1	0
+9830166K06Rik	0	0	0	0	0	0	0	0
+9930014A18Rik	1	0	0	1	0	3	1	2
+A030009H04Rik	0	0	0	0	0	0	0	0
+A130049A11Rik	2	0	0	1	0	5	0	0
+A130077B15Rik	0	0	0	0	0	0	0	0
+A230001M10Rik	0	0	0	0	0	0	0	0
+A230009B12Rik	0	0	1	0	0	0	0	0
+A230020J21Rik	2	1	0	1	1	0	1	2
+A230028O05Rik	0	0	0	1	0	0	0	0
+A230056J06Rik	0	0	0	0	0	0	0	0
+A230056P14Rik	0	0	0	1	0	0	0	0
+A230057D06Rik	0	0	0	2	0	0	0	1
+A230070E04Rik	0	0	0	0	0	0	0	0
+A230072C01Rik	0	0	0	0	0	2	0	0
+A230072E10Rik	0	0	0	0	0	0	1	0
+A230073K19Rik	0	1	1	0	0	0	0	1
+A230077H06Rik	0	0	0	2	0	0	0	0
+A230108P19Rik	6	0	1	1	1	9	2	1
+A330009N23Rik	0	2	0	4	0	0	0	0
+A330023F24Rik	1086	659	583	1482	625	255	739	674
+A330032B11Rik	4	0	0	2	1	1	1	0
+A330033J07Rik	0	0	1	1	0	0	0	0
+A330035P11Rik	0	0	1	0	6	4	0	0
+A330040F15Rik	1	0	0	0	1	0	0	0
+A330041J22Rik	1	0	0	0	0	0	1	0
+A330048O09Rik	0	0	0	0	0	0	0	0
+A330049N07Rik	0	0	0	1	0	0	0	0
+A330050B17Rik	0	0	0	0	0	0	0	0
+A330069E16Rik	0	0	0	0	0	0	2	0
+A330076C08Rik	0	0	0	0	0	0	0	0
+A330076H08Rik	0	0	0	0	0	0	0	0
+A330093E20Rik	3	1	1	0	0	3	0	1
+A330102I10Rik	0	0	0	0	0	0	0	0
+A430035B10Rik	0	0	0	0	0	0	0	0
+A430071A18Rik	0	0	0	0	0	2	0	2
+A430088P11Rik	0	0	0	0	0	0	0	0
+A430090L17Rik	0	0	0	0	0	0	0	0
+A430092G05Rik	0	0	0	0	0	0	0	0
+A430093F15Rik	0	1	1	1	0	1	0	0
+A530006G24Rik	0	0	0	0	0	0	0	0
+A530013C23Rik	8	0	0	0	4	0	2	0
+A530046M15Rik	0	0	0	0	0	0	0	0
+A530050N04Rik	0	0	0	0	0	0	0	0
+A530053G22Rik	0	0	0	0	0	0	0	0
+A530058N18Rik	0	0	0	0	0	0	0	0
+A530065N20Rik	1	0	0	0	0	0	1	1
+A530072M11Rik	2	0	0	0	0	0	0	1
+A530088E08Rik	0	0	0	0	0	0	0	0
+A630010A05Rik	5	2	6	5	1	0	3	2
+A630012P03Rik	2	0	0	0	0	0	0	0
+A630019I02Rik	0	3	1	4	0	0	1	3
+A630020A06	0	0	0	0	1	0	0	0
+A630023P12Rik	0	0	0	0	0	0	0	0
+A630066F11Rik	1	0	0	0	1	1	2	0
+A630072M18Rik	5	1	0	2	6	2	3	1
+A630075F10Rik	0	0	0	0	0	0	0	0
+A630077J23Rik	0	0	0	0	0	0	0	0
+A630089N07Rik	0	0	0	1	0	0	0	0
+A730017C20Rik	0	0	0	0	0	0	0	0
+A730017L22Rik	7	1	0	0	3	10	0	0
+A730018C14Rik	0	0	0	0	0	0	0	0
+A730020E08Rik	0	0	0	0	0	0	0	0
+A730020M07Rik	1	0	0	0	0	3	0	0
+A730036I17Rik	0	0	0	0	1	0	0	0
+A730043L09Rik	0	0	0	0	0	0	0	0
+A730046J19Rik	0	0	0	0	0	0	0	0
+A730056A06Rik	0	0	4	2	0	0	0	0
+A730082K24Rik	0	0	0	0	0	0	0	0
+A730085A09Rik	0	0	0	0	0	0	0	0
+A730085K08Rik	0	0	0	0	0	0	0	0
+A730090H04Rik	0	0	0	0	0	0	0	0
+A730090N16Rik	0	0	0	0	0	0	0	0
+A730098P11Rik	0	0	0	0	0	0	0	0
+A830009L08Rik	0	0	0	1	0	0	0	1
+A830019L24Rik	0	0	0	0	0	0	0	0
+A830052D11Rik	1	0	0	0	0	2	0	0
+A830082K12Rik	0	1	1	0	0	0	0	0
+A830082N09Rik	0	0	0	0	0	0	1	0
+A930001A20Rik	0	0	0	0	0	0	0	0
+A930001C03Rik	2	0	0	0	0	0	0	0
+A930003A15Rik	0	0	0	0	0	0	0	0
+A930003O13Rik	0	0	0	0	0	0	0	0
+A930004D18Rik	0	1	0	0	1	0	0	0
+A930005H10Rik	3	0	0	2	3	0	6	0
+A930006I01Rik	1	2	4	2	1	4	0	0
+A930006K02Rik	0	0	0	0	0	0	0	0
+A930007I19Rik	0	0	0	0	0	0	0	0
+A930011G23Rik	2	2	1	0	1	1	2	3
+A930011O12Rik	0	0	0	0	0	0	0	0
+A930012L18Rik	0	1	0	0	0	0	0	0
+A930013F10Rik	0	0	0	0	0	0	0	0
+A930015D03Rik	7	5	2	2	1	3	2	0
+A930016O22Rik	0	0	0	8	0	2	4	6
+A930017M01Rik	0	0	0	0	0	0	0	0
+A930019D19Rik	1	0	0	0	0	0	0	0
+A930024E05Rik	0	0	0	0	0	0	0	0
+A930041C12Rik	0	0	0	0	0	0	0	0
+AA387883	0	0	0	0	0	0	0	0
+AA388235	0	0	0	0	0	0	0	0
+AA413626	0	0	0	0	0	0	0	0
+AA465934	9	1	0	2	0	0	0	3
+AA474331	1	0	0	0	0	0	0	0
+AA536875	0	0	0	0	0	0	0	0
+AA543186	0	0	0	0	0	0	0	0
+AA543401	0	0	0	0	0	0	0	0
+AA545190	0	0	0	0	0	0	0	0
+AA619741	0	0	0	0	0	0	0	0
+AF357355	0	0	1	0	0	0	0	0
+AF357359	10	9	1	23	4	2	0	6
+AF357399	18	4	3	4	12	26	17	5
+AF357425	1	2	1	1	1	1	2	2
+AF357426	3	0	0	3	1	0	0	0
+AI115009	0	0	0	0	0	0	0	0
+AI197445	0	0	0	0	0	0	0	0
+AI314278	0	0	0	0	0	0	0	0
+AI314831	0	0	0	0	0	1	0	0
+AI414108	0	0	0	0	0	0	0	0
+AI427809	0	2	0	0	0	0	0	0
+AI450353	8	1	0	1	0	0	0	2
+AI463170	0	0	0	0	0	0	0	0
+AI504432	0	0	1	0	0	0	0	0
+AI506816	4	0	0	0	2	4	2	0
+AI507597	0	0	0	0	0	2	0	0
+AI606473	0	0	0	0	0	0	0	0
+AI646519	0	0	0	0	0	0	0	0
+AI662270	0	0	0	0	0	0	0	0
+AI839979	0	0	0	0	0	0	0	0
+AI847159	0	0	0	0	0	0	0	0
+AI854517	0	0	0	0	0	0	0	0
+AI854703	0	0	0	0	0	0	0	0
+AU015791	0	0	0	0	0	0	0	0
+AU015836	0	0	0	0	0	0	0	0
+AU016765	0	0	0	0	0	0	0	0
+AU019990	0	0	0	0	0	0	0	2
+AU021063	0	0	0	0	0	0	0	0
+AU022754	0	0	0	0	0	0	0	0
+AU022793	0	0	0	0	0	0	0	0
+AU023762	0	0	0	0	0	0	0	0
+AU040972	0	0	0	0	0	1	0	0
+AV039307	4	0	0	0	0	14	0	0
+AV051173	1	0	0	0	0	0	0	0
+AW011738	0	0	0	0	3	2	1	0
+AW046200	0	0	0	1	0	0	0	0
+AW112010	9	1	0	1	0	21	2	0
+AW495222	36	0	0	0	0	63	1	1
+AW549542	0	0	0	0	0	0	0	0
+AY512915	0	0	0	0	0	0	0	0
+AY512931	1	0	0	0	1	0	1	0
+Aanat	1	0	0	0	0	0	0	0
+Abca16	0	0	0	0	0	0	0	0
+Abhd1	5	0	0	0	0	7	1	0
+Abhd10	1	1	1	0	0	1	1	1
+Abhd11	0	0	0	2	2	2	2	0
+Adam17	8	0	2	1	1	5	3	2
+Adam28	0	1	0	0	0	0	0	0
+Adamts10	0	0	0	2	4	4	0	0
+Adarb1	6	2	0	2	0	2	0	2
+Adck5	1	0	0	1	2	1	0	1
+Adh6-ps1	1	0	0	0	0	1	1	0
+Adhfe1	11	2	0	0	2	6	4	0
+Aes	41	1	1	5	1	59	3	2
+Afg3l1	7	0	2	3	0	10	4	1
+Ager	0	0	0	0	0	0	0	0
+Ahsg	586	0	1	0	18	879	40	0
+Aire	0	0	0	0	0	0	0	0
+Airn	0	4	18	12	0	20	0	12
+Alg11	7	0	0	0	0	3	1	1
+Alg13	1	0	0	0	0	2	0	0
+Alg9	2	1	1	0	0	6	0	0
+Alms1-ps2	0	0	0	0	0	0	0	0
+Angel2	10	0	0	0	2	14	0	2
+Ank1	1580	5230	5544	7926	1242	4010	3128	5116
+Ankrd10	8	0	0	0	3	2	2	3
+Ankrd11	25	5	1	7	6	38	2	2
+Ankzf1	7	5	0	0	0	4	2	0
+Ano4	1	6	0	2	0	1	0	2
+Ano5	0	0	0	0	0	0	1	0
+Apol7d	2	0	0	0	0	2	1	0
+Apoo-ps	0	0	0	0	1	0	0	0
+Aqp9	44	0	0	0	2	107	8	0
+Arfrp1	3	0	0	0	0	4	0	0
+Arhgap1	6	3	3	0	0	6	0	0
+Arid5a	1	0	0	1	0	0	0	0
+Arrdc1	0	0	0	0	0	3	0	0
+Art2a-ps	0	0	0	0	0	0	0	0
+Asb7	3	0	0	1	0	3	0	0
+Asmt	0	0	0	0	0	0	0	0
+Atf5	17	0	0	0	1	27	5	0
+Atp10d	7	2	0	0	0	7	0	1
+Atp2a2	38	74	84	78	2	48	2	68
+Atp6v0c-ps2	0	0	0	0	0	0	1	0
+B020014A21Rik	0	0	0	0	0	0	0	0
+B020018J22Rik	0	0	0	0	0	0	0	0
+B130006D01Rik	0	0	0	0	0	0	0	1
+B130024G19Rik	0	1	1	0	1	0	0	0
+B130034C11Rik	0	0	0	0	0	0	0	0
+B230119M05Rik	0	0	0	0	0	0	0	0
+B230206H07Rik	4	0	0	0	0	1	2	0
+B230208H11Rik	24	20	18	52	28	26	44	38
+B230209E15Rik	0	0	0	0	0	0	0	0
+B230209K01Rik	0	0	0	0	0	0	0	0
+B230214G05Rik	0	0	1	0	0	0	0	0
+B230216N24Rik	0	0	0	0	0	0	0	0
+B230217O12Rik	1	0	0	1	0	1	5	1
+B230312C02Rik	0	0	0	1	0	0	0	0
+B230319C09Rik	1	1	1	0	0	1	0	0
+B230323A14Rik	0	0	0	0	0	0	0	0
+B230378P21Rik	0	0	0	0	0	0	0	0
+B330016D10Rik	1	1	1	4	0	0	0	1
+B430010I23Rik	3	0	0	0	0	2	1	0
+B430212C06Rik	0	0	0	1	0	0	0	0
+B430319G15Rik	0	3	1	2	0	0	0	0
+B4galnt1	0	0	1	1	0	1	0	0
+B4galt2	0	0	0	1	0	0	0	0
+B630019K06Rik	1	0	0	2	0	2	2	0
+B830017H08Rik	0	3	3	0	0	0	0	2
+B930003M22Rik	1	1	0	0	0	0	0	0
+B930018H19Rik	0	0	0	0	0	0	0	0
+B930025P03Rik	0	0	0	0	2	0	0	1
+B930059L03Rik	1	0	0	0	0	0	0	0
+B930092H01Rik	0	0	0	0	0	0	0	0
+BB014433	0	0	0	0	0	0	0	0
+BB019430	0	0	0	0	0	0	0	0
+BB031773	0	0	0	0	0	0	0	0
+BB123696	2	0	0	1	0	0	1	0
+BB283400	0	0	1	1	0	4	0	0
+BB557941	0	0	0	0	0	0	0	0
+BC002163	1	0	0	0	0	1	0	1
+BC005764	0	1	0	0	0	0	0	0
+BC006965	0	1	0	0	0	0	0	0
+BC018473	0	0	0	0	0	0	0	0
+BC020402	0	0	0	0	1	0	0	0
+BC021767	0	0	0	0	0	0	0	0
+BC024386	20	0	0	0	1	14	0	0
+BC024582	4	1	0	0	2	2	1	0
+BC025920	1	0	0	0	0	0	0	0
+BC029722	4	0	0	0	0	1	0	0
+BC030870	0	0	0	0	0	0	0	0
+BC031361	2	0	0	0	0	1	1	0
+BC033916	0	0	0	0	0	0	0	0
+BC037032	0	0	0	0	0	0	0	1
+BC037704	0	0	0	0	1	1	0	0
+BC039771	4	0	1	0	0	2	0	0
+BC039966	0	0	0	0	0	0	0	0
+BC048602	0	0	0	0	0	0	0	0
+BC051226	0	0	1	0	0	0	0	0
+BC051537	0	0	0	0	0	0	0	0
+BC052688	0	0	0	0	0	0	0	0
+BC055402	0	0	0	0	0	0	0	0
+BC064078	0	0	0	0	0	0	0	0
+BC065397	0	0	0	2	0	0	0	0
+BC090627	7	4	12	6	1	2	6	9
+Bambi-ps1	1	0	0	0	0	0	1	0
+Bc1	317	51	44	52	53	387	86	44
+Bend5	1	0	0	0	0	0	0	0
+Best2	0	0	0	0	0	0	0	0
+Bmp1	13	0	1	1	3	18	3	0
+Brat1	1	0	0	0	0	3	1	1
+Brd2	15	4	4	7	2	10	10	0
+Btbd19	0	1	0	0	2	0	0	1
+Btnl5	0	0	0	0	0	0	0	0
+C030007H22Rik	0	0	0	0	0	0	0	0
+C030013G03Rik	0	0	0	0	0	0	0	0
+C030016D13Rik	3	1	0	0	1	0	1	0
+C030018K13Rik	0	0	0	0	0	0	0	0
+C030023E24Rik	0	0	0	0	0	0	0	0
+C030029H02Rik	0	0	0	0	0	1	0	0
+C030034I22Rik	0	0	0	1	0	0	1	0
+C030034L19Rik	0	0	0	0	0	0	0	0
+C030037D09Rik	4	0	0	0	0	2	1	0
+C130021I20Rik	0	0	0	0	0	0	0	0
+C130026L21Rik	0	0	0	0	0	0	0	0
+C130030K03Rik	0	1	0	0	0	0	0	0
+C130036L24Rik	0	0	0	0	0	0	0	0
+C130046K22Rik	0	5	3	2	3	0	0	0
+C130060C02Rik	0	0	0	0	0	0	0	0
+C130071C03Rik	0	0	0	0	0	0	0	0
+C130080G10Rik	0	0	1	2	0	0	0	2
+C130083M11Rik	0	0	0	0	0	3	0	0
+C230004F18Rik	0	0	0	0	0	0	0	0
+C230024C17Rik	0	0	0	0	0	0	0	0
+C230035I16Rik	0	0	0	0	0	0	0	0
+C230037L18Rik	1	0	1	0	0	1	2	0
+C230079O03Rik	0	0	0	0	0	0	0	0
+C230091D08Rik	5	0	2	0	0	9	0	1
+C330008G21Rik	0	0	0	0	0	0	0	0
+C330011F03Rik	0	1	0	0	0	0	0	0
+C330013E15Rik	1	0	0	1	0	0	4	2
+C330013F16Rik	0	0	0	0	0	0	0	0
+C330022C24Rik	6	0	0	0	0	9	0	0
+C330024C12Rik	0	0	0	0	0	0	0	0
+C330024D21Rik	0	0	0	0	0	0	0	0
+C330046G13Rik	0	0	0	0	0	0	1	0
+C430002E04Rik	0	0	0	0	1	0	1	0
+C430002N11Rik	0	0	0	0	0	0	0	0
+C430049B03Rik	1996	4438	3666	7206	1654	824	1948	3984
+C4bp-ps1	0	0	0	0	0	1	0	0
+C530005A16Rik	5	0	1	0	1	4	3	1
+C530044C16Rik	0	0	0	0	0	0	0	0
+C630020P19Rik	0	0	0	0	0	0	0	0
+C630028M04Rik	0	0	0	0	0	0	0	0
+C630031E19Rik	0	0	0	0	0	0	0	0
+C630043F03Rik	0	0	0	0	1	2	0	0
+C730002L08Rik	1	0	0	1	0	2	0	1
+C730027H18Rik	1	0	0	0	1	3	0	0
+C730036E19Rik	6	0	0	0	0	3	0	0
+C86187	0	0	0	0	0	0	0	0
+C87198	0	0	0	0	0	0	0	0
+C87499	0	0	0	0	0	0	0	0
+C920006O11Rik	0	0	0	1	0	1	1	0
+C920009B18Rik	0	0	0	0	0	0	0	0
+C920021L13Rik	6	0	2	2	1	10	9	2
+Cacnb2	0	3	1	2	0	0	0	1
+Cbwd1	0	0	1	0	0	0	0	0
+Ccdc11	1	1	0	0	0	0	2	0
+Ccdc77	2	1	0	0	3	0	0	1
+Ccl25	1	0	0	0	1	4	2	0
+Cd1d2	0	0	0	0	0	0	0	0
+Cd22	0	0	0	0	0	2	0	2
+Cd40	0	1	0	3	0	0	0	0
+Cdh23	2	0	0	4	2	3	1	2
+Cdk3-ps	0	0	0	0	0	0	0	0
+Ceacam-ps1	0	0	0	0	0	0	0	0
+Cenpk	0	0	0	0	0	0	0	1
+Cep57	0	1	0	0	0	5	2	0
+Ces2d-ps	0	0	0	0	0	0	0	0
+Chka	9	0	0	0	1	9	1	0
+Chkb	14	2	2	2	2	4	0	2
+Chpt1	22	1	3	8	0	25	0	2
+Cldn25	2	0	0	0	0	8	2	0
+Clip4	0	1	4	2	0	0	0	3
+Clk1	16	6	0	8	0	18	6	0
+Cnot2	11	0	2	2	0	5	0	1
+Cops5	8	1	0	1	0	8	0	0
+Cox18	4	0	0	0	1	1	0	0
+Crebzf	21	3	0	0	3	6	9	6
+Crem	5	0	0	1	2	3	5	0
+Crxos1	0	1	0	0	0	0	0	0
+Csf3r	0	0	0	0	0	0	0	0
+Ctc1	0	0	1	1	0	1	0	0
+Ctps2	2	0	0	0	0	1	0	0
+Cts8-ps	0	0	0	0	0	0	0	0
+Cxcl11	0	0	0	0	0	0	0	0
+Cyp2c53-ps	0	0	0	0	0	1	0	0
+Cyp2d13	19	0	0	0	1	20	4	0
+Cyp2d37-ps	2	0	0	0	0	2	0	0
+Cyp3a25	76	0	0	0	30	93	27	0
+Cyp4f41-ps	0	0	0	2	1	2	0	0
+D030018L15Rik	0	0	0	0	0	0	0	0
+D030024E09Rik	0	0	0	0	0	0	0	0
+D030025E07Rik	0	0	0	0	0	0	0	0
+D030025P21Rik	0	1	0	0	0	0	0	1
+D030028A08Rik	1	0	0	0	0	5	0	0
+D030040B21Rik	0	0	0	0	0	0	0	0
+D030045P18Rik	0	0	0	0	0	0	0	0
+D030047H15Rik	0	0	0	0	0	0	0	0
+D130009I18Rik	6	0	0	3	5	1	0	0
+D130017N08Rik	0	0	0	0	0	1	0	0
+D130020L05Rik	8	4	4	0	12	16	8	0
+D130058E03	0	0	0	0	0	0	0	0
+D16Ertd519e	0	0	0	0	0	0	0	0
+D17Ertd648e	0	0	0	1	0	0	0	0
+D230030E09Rik	0	0	0	0	0	0	0	0
+D330022K07Rik	13	6	10	3	1	17	2	4
+D330023K18Rik	0	0	1	0	0	0	2	0
+D330041H03Rik	7	1	0	0	0	12	0	0
+D330050G23Rik	0	2	0	0	0	0	0	0
+D330050I16Rik	3	0	0	1	2	1	4	0
+D430020J02Rik	0	0	0	0	0	1	0	0
+D430036J16Rik	0	0	0	0	0	0	0	0
+D4Ertd617e	0	0	0	0	0	1	0	0
+D530049I02Rik	0	0	0	0	0	0	0	0
+D5Ertd605e	0	0	0	0	0	0	1	0
+D630010B17Rik	0	0	0	0	0	0	0	0
+D630013N20Rik	0	0	0	0	0	0	0	0
+D630024D03Rik	0	0	0	0	0	0	8	0
+D630029K05Rik	0	0	0	0	0	0	0	0
+D630032N06Rik	0	0	0	1	0	0	0	0
+D630041G03Rik	0	0	0	0	0	0	0	0
+D630045M09Rik	0	0	0	0	0	0	0	0
+D6Ertd474e	0	0	0	0	0	0	0	0
+D730001G18Rik	0	0	0	0	0	0	0	0
+D730005E14Rik	0	0	0	1	0	0	0	0
+D730045A05Rik	0	0	0	0	0	0	0	0
+D730050B12Rik	0	0	0	0	0	0	0	0
+D7Ertd143e	36	0	0	0	16	9	12	0
+D7Ertd715e	0	0	0	0	0	0	0	0
+D830005E20Rik	0	3	2	3	0	0	0	1
+D830013O20Rik	0	0	1	0	0	0	0	0
+D830015G02Rik	0	3	5	2	0	0	1	8
+D830026I12Rik	0	0	0	0	0	0	0	2
+D830032E09Rik	0	2	0	0	0	0	0	0
+D830046C22Rik	1	0	0	1	0	0	0	0
+D930007P13Rik	0	0	0	0	0	0	0	0
+D930015M05Rik	6	0	1	1	1	9	1	1
+D930016D06Rik	3	1	0	0	0	3	0	0
+D930028M14Rik	0	0	0	0	0	0	0	0
+D930032P07Rik	0	1	0	0	0	0	0	0
+D930048N14Rik	0	0	0	0	0	1	0	0
+DQ267100	0	0	0	0	0	2	0	0
+DQ267101	0	0	0	0	0	0	0	0
+DQ267102	0	0	0	0	0	0	0	0
+Dancr	20	0	2	5	2	12	3	4
+Dand5	1	0	0	0	1	0	0	0
+Daw1	0	1	0	0	0	0	0	0
+Dcaf11	31	1	1	0	6	57	8	1
+Dctd	0	1	0	0	0	0	0	0
+Deaf1	3	0	2	1	1	7	0	0
+Def8	5	0	0	0	1	9	1	0
+Defa-ps1	0	0	0	0	0	0	0	0
+Defa-ps12	0	0	0	0	0	0	0	0
+Defa-ps13	0	0	0	0	0	0	0	0
+Defb44-ps	0	0	0	0	0	0	0	0
+Dennd2d	1	0	0	0	0	5	0	0
+Dgkh	0	1	0	1	1	0	0	0
+Dio3os	1	1	2	0	0	2	2	1
+Dleu2	868	334	292	862	639	289	781	334
+Dlg1	11	2	2	6	1	18	3	2
+Dlk1	0	0	0	0	0	0	0	0
+Dlx1as	0	0	0	0	0	0	0	0
+Dlx6as1	0	0	0	0	0	0	0	0
+Dlx6as2	0	0	0	0	0	0	0	0
+Dmr	8	0	0	0	0	0	7	0
+Dnajc24	2	0	0	1	0	2	1	2
+Dnajc5	7	1	0	2	1	12	1	0
+Dnm1l	6	0	2	3	0	15	0	0
+Dnm3os	53	242	213	490	36	20	40	307
+Dos	2	0	0	0	0	0	1	1
+Dtnb	8	0	2	0	0	16	0	0
+E030003E18Rik	3	0	0	1	0	3	0	1
+E030011O05Rik	0	1	0	1	0	0	0	0
+E030013I19Rik	0	0	0	0	0	1	0	0
+E030019B13Rik	0	0	0	0	0	0	0	0
+E030024N20Rik	0	0	0	0	0	0	0	0
+E030025P04Rik	0	0	0	0	0	0	0	0
+E030044B06Rik	0	1	0	0	0	0	0	0
+E130006D01Rik	0	0	0	0	0	0	0	0
+E130008D07Rik	0	0	0	0	0	0	0	0
+E130018N17Rik	1	0	0	0	0	0	0	0
+E130102H24Rik	3055	1463	1381	4975	2064	3018	2188	1558
+E130112N10Rik	0	0	1	1	0	1	0	0
+E130114P18Rik	0	0	0	0	0	0	0	0
+E130201H02Rik	0	0	0	0	0	0	0	0
+E130215H24Rik	0	0	0	0	0	0	0	0
+E130218I03Rik	0	0	0	0	0	0	0	0
+E130304I02Rik	0	0	0	0	0	0	0	0
+E130307A14Rik	0	0	1	3	0	1	2	1
+E130310I04Rik	0	0	0	0	0	2	0	0
+E130317F20Rik	3	0	0	1	2	2	0	1
+E230016K23Rik	0	2	4	0	0	0	0	0
+E230016M11Rik	0	1	0	1	1	2	0	0
+E230029C05Rik	0	0	0	0	1	0	0	0
+E2f6	8	2	0	1	0	5	0	0
+E330011O21Rik	0	0	0	0	0	0	0	0
+E330012B07Rik	0	0	0	0	0	0	0	0
+E330013P04Rik	1	0	0	0	0	0	0	0
+E330017L17Rik	0	0	0	0	0	0	0	0
+E330020D12Rik	0	0	0	0	1	1	0	0
+E330023G01Rik	0	0	0	0	0	0	0	0
+E330033B04Rik	0	0	0	0	0	0	0	0
+E430016F16Rik	0	2	0	1	0	0	0	3
+E530001F21Rik	0	0	0	0	0	0	0	0
+E530011L22Rik	3	0	0	1	0	0	0	0
+Eci2	25	0	0	0	3	41	0	0
+Efcab8	0	0	0	0	0	0	0	0
+Elmo1	0	1	2	2	0	0	1	0
+Elp3	10	17	7	2	1	3	1	14
+Emx2os	0	0	0	0	0	0	0	0
+Enoph1	0	0	0	0	1	0	0	0
+Etd	0	0	0	0	0	0	0	0
+Etfb	20	0	1	1	2	29	0	0
+Etohd2	2	0	1	0	0	3	0	0
+F420014N23Rik	8	0	2	4	0	8	0	0
+F630028O10Rik	119	98	109	214	103	53	139	93
+F630042J09Rik	0	0	0	0	0	1	0	0
+F630111L10Rik	0	0	0	0	0	0	0	0
+F630206G17Rik	1	0	0	0	0	3	0	0
+F730035M05Rik	2	0	0	1	5	6	2	1
+F730043M19Rik	0	0	0	0	0	0	0	1
+F830002L21Rik	0	0	0	0	0	0	0	0
+F930015N05Rik	0	0	0	0	0	0	1	0
+Fam120aos	1	0	0	0	0	2	1	0
+Fam120b	16	0	0	2	4	15	2	0
+Fam172a	8	1	1	3	1	7	0	2
+Fam187b	0	0	0	0	1	2	2	0
+Fam19a2	0	1	0	1	1	0	0	1
+Fam19a5	0	0	0	0	0	0	0	0
+Fam214b	0	1	2	0	1	4	3	1
+Fance	0	2	0	0	0	4	0	0
+Fancl	2	0	0	0	0	0	0	0
+Fate1	0	0	0	0	0	0	0	0
+Fbxo34	4	1	1	1	3	4	0	1
+Fcho1	0	0	0	0	0	0	0	0
+Fcrla	0	0	0	0	0	0	1	0
+Fendrr	0	0	0	0	1	1	1	1
+Fgf18	0	0	0	0	0	0	0	0
+Flcn	7	0	1	3	2	8	0	1
+Flt3l	0	0	0	0	0	0	0	1
+Foxl2os	0	0	0	0	0	0	0	0
+Fth1	198	8	4	11	7	375	18	4
+Ftx	382	158	130	262	174	166	264	210
+Fuk	1	0	0	0	0	2	0	0
+Fut4-ps1	0	0	0	0	0	0	0	0
+Fut8	1	1	2	2	1	5	0	1
+Fxyd2	0	0	0	0	0	0	0	0
+G530011O06Rik	0	0	0	1	0	0	0	0
+G630025P09Rik	2	0	0	1	1	5	6	0
+G630055G22Rik	0	0	0	0	0	0	0	0
+G630071F17Rik	0	0	0	0	0	0	0	0
+G630093K05Rik	0	0	0	0	0	0	0	0
+G6b	0	0	1	0	0	0	0	0
+G730013B05Rik	6	2	2	2	0	2	0	0
+Gabpb1	1	0	0	0	0	3	2	1
+Gas5	5709	1275	1001	3375	3854	4602	3877	1194
+Gdap10	1	0	0	0	0	0	0	0
+Gm10007	0	0	0	0	0	0	0	0
+Gm10012	0	0	0	0	0	0	0	0
+Gm10033	5	0	0	4	0	1	0	0
+Gm10046	0	0	0	0	0	0	0	0
+Gm10052	0	1	0	0	0	0	1	1
+Gm10069	553	2	2	1	12	701	37	1
+Gm10125	0	2	2	1	0	1	0	0
+Gm10190	0	0	0	0	0	0	0	1
+Gm10248	0	0	0	0	0	1	0	0
+Gm10272	0	0	0	0	0	0	0	0
+Gm10280	0	1	0	0	0	0	0	0
+Gm10319	3	0	0	0	1	7	1	0
+Gm10336	0	0	0	1	0	0	1	2
+Gm10364	0	0	0	0	0	0	0	0
+Gm10373	0	0	0	0	0	0	0	0
+Gm10389	0	1	0	0	0	0	0	0
+Gm10390	0	0	0	0	2	0	1	0
+Gm10400	0	0	0	0	0	0	0	0
+Gm10409	0	0	0	0	0	0	0	0
+Gm10415	0	1	0	1	0	0	0	0
+Gm10416	0	0	0	0	0	0	0	0
+Gm10421	0	0	0	0	0	0	0	0
+Gm10432	0	1	0	1	0	0	0	1
+Gm10433	1	1	1	0	0	0	1	0
+Gm10440	0	0	0	0	0	0	0	0
+Gm10445	0	0	0	0	0	0	0	0
+Gm10451	0	0	0	0	0	0	0	0
+Gm10466	0	0	0	0	0	0	0	0
+Gm10474	0	0	0	0	0	0	0	0
+Gm10485	0	0	0	0	0	0	0	0
+Gm10494	0	0	0	0	0	0	0	0
+Gm10509	0	0	0	0	0	0	0	0
+Gm10510	0	0	0	0	0	0	0	0
+Gm10512	0	0	0	0	0	0	0	0
+Gm10516	1	0	0	0	1	0	2	0
+Gm10532	3	0	0	0	0	2	0	0
+Gm10536	0	0	0	0	0	0	0	0
+Gm10538	0	0	0	0	0	0	0	0
+Gm10548	1	0	1	2	1	1	1	1
+Gm10549	0	0	0	1	2	0	0	0
+Gm10556	0	0	0	0	0	0	0	0
+Gm10560	0	0	0	0	0	0	0	0
+Gm10578	0	0	0	0	0	0	0	0
+Gm10584	0	0	0	0	1	0	0	1
+Gm10619	0	1	0	0	0	0	0	0
+Gm10635	0	0	0	0	0	0	0	0
+Gm10636	0	0	0	0	0	0	0	1
+Gm10637	0	0	0	0	0	0	0	0
+Gm10638	0	0	0	0	1	0	0	0
+Gm10640	0	0	0	0	0	0	0	0
+Gm10649	0	2	1	0	0	1	1	1
+Gm10653	0	0	0	0	0	0	1	0
+Gm10658	2	0	0	0	1	2	0	0
+Gm10664	0	0	0	0	0	0	0	0
+Gm10677	2	0	0	0	0	1	0	0
+Gm10684	0	0	1	0	0	0	0	0
+Gm10714	0	0	0	0	0	0	0	0
+Gm10731	0	0	0	0	0	0	0	0
+Gm10745	0	0	0	0	0	0	0	0
+Gm10754	0	0	0	0	0	1	0	0
+Gm10768	26	0	0	0	0	29	4	0
+Gm10782	0	0	0	0	0	0	0	0
+Gm10785	4	0	0	3	0	0	0	0
+Gm10787	0	0	0	0	0	0	0	0
+Gm10789	0	0	0	0	0	0	1	0
+Gm10790	0	2	0	0	0	0	0	0
+Gm10791	4	0	0	0	0	6	0	0
+Gm10804	3	0	0	2	1	5	1	0
+Gm10814	0	0	0	0	0	0	0	1
+Gm10818	0	0	0	0	0	0	0	0
+Gm1082	0	0	0	0	0	0	0	0
+Gm10823	0	0	0	0	0	0	0	0
+Gm10825	0	0	0	0	0	0	0	0
+Gm10845	0	0	0	0	0	0	0	0
+Gm10857	0	0	0	0	0	0	0	0
+Gm10863	0	1	0	0	0	0	0	0
+Gm10865	0	0	0	1	2	2	2	1
+Gm10872	0	0	0	0	0	2	0	0
+Gm10941	0	0	0	0	0	0	0	0
+Gm11110	0	0	1	0	0	0	1	0
+Gm11149	0	0	1	0	0	0	0	0
+Gm11166	0	0	0	0	0	0	0	0
+Gm11186	0	0	0	0	0	0	0	0
+Gm11190	0	0	0	0	0	0	0	0
+Gm11194	0	0	1	0	0	0	0	0
+Gm11201	0	0	0	0	0	0	0	0
+Gm11202	0	0	0	0	0	0	0	0
+Gm11213	0	0	1	0	0	0	0	0
+Gm11240	0	0	0	0	0	0	0	0
+Gm11346	2	0	0	0	0	0	0	0
+Gm11351	0	0	0	0	0	0	0	0
+Gm1141	0	0	0	0	0	0	0	0
+Gm11413	0	0	0	0	0	0	0	0
+Gm11426	0	0	0	0	0	0	0	0
+Gm11468	0	0	0	0	0	0	0	0
+Gm11517	0	0	0	0	0	0	0	0
+Gm11529	0	0	0	0	0	0	0	0
+Gm11548	0	0	0	0	0	0	0	0
+Gm11549	0	0	0	0	0	0	0	0
+Gm11602	22	0	4	6	3	18	2	6
+Gm11627	0	0	0	0	0	0	0	0
+Gm11648	0	0	0	0	0	0	0	0
+Gm11696	0	0	1	0	1	0	3	0
+Gm11747	2	1	1	3	1	2	2	0
+Gm11762	0	0	0	0	0	0	1	1
+Gm11944	0	0	0	0	0	0	0	0
+Gm11961	0	0	0	0	0	0	0	0
+Gm11974	3	1	1	0	1	0	5	0
+Gm11978	0	2	0	0	0	0	0	0
+Gm11981	0	0	0	0	0	0	0	0
+Gm11985	0	0	0	0	0	0	0	0
+Gm12060	0	0	0	0	0	1	0	0
+Gm12070	0	0	0	0	0	0	0	0
+Gm12130	0	0	0	0	0	0	0	0
+Gm12159	0	0	1	0	0	0	0	0
+Gm12191	3	0	0	1	0	1	0	1
+Gm12216	5	2	2	0	1	0	4	0
+Gm12228	0	0	0	0	0	0	0	0
+Gm12238	9	2	2	2	4	11	0	2
+Gm12295	0	1	2	1	0	0	0	0
+Gm12298	0	0	0	0	0	0	0	0
+Gm12359	9	1	0	3	0	11	2	0
+Gm12360	0	0	0	0	0	0	0	0
+Gm12409	0	0	0	0	0	0	0	0
+Gm12504	0	0	0	0	0	0	0	0
+Gm12505	0	0	0	0	0	0	0	0
+Gm12522	0	0	0	0	0	0	0	0
+Gm12530	0	0	0	0	0	0	0	0
+Gm12603	0	0	0	0	0	0	0	0
+Gm12633	0	0	0	0	0	0	0	0
+Gm12669	0	1	0	1	0	1	0	0
+Gm12709	0	0	0	0	0	0	0	0
+Gm12718	2	0	0	0	1	3	0	0
+Gm12830	0	0	0	0	0	0	0	0
+Gm12839	0	0	0	0	0	0	0	0
+Gm12992	4	0	0	1	2	7	0	0
+Gm13003	0	0	0	0	0	0	0	0
+Gm13031	0	0	0	0	0	0	0	0
+Gm13032	0	1	2	0	0	0	0	0
+Gm13034	0	0	0	0	0	0	0	0
+Gm13037	0	0	0	0	0	0	0	0
+Gm13238	0	0	0	0	0	0	0	0
+Gm13293	0	0	0	0	0	0	0	0
+Gm13315	0	0	1	0	0	0	0	0
+Gm13363	0	0	0	1	1	0	0	0
+Gm13375	0	0	0	0	1	2	1	1
+Gm13399	0	0	0	0	0	0	0	0
+Gm13446	0	0	0	0	0	0	0	0
+Gm13483	2	1	1	0	0	0	0	0
+Gm13490	0	0	0	0	0	1	0	0
+Gm13497	0	0	0	0	0	1	0	0
+Gm13498	0	0	0	0	0	0	0	0
+Gm13539	0	0	0	0	0	0	0	0
+Gm13544	0	0	0	0	0	0	0	0
+Gm13546	0	0	0	0	0	0	0	0
+Gm13580	0	0	0	0	0	0	0	0
+Gm13582	0	0	0	0	0	0	0	0
+Gm13629	0	0	1	0	0	0	0	2
+Gm13704	0	0	0	0	0	0	0	0
+Gm13710	0	0	0	0	0	0	0	0
+Gm13749	0	0	0	0	0	0	0	0
+Gm13752	0	0	0	0	0	0	0	0
+Gm13807	2	0	0	0	0	0	0	0
+Gm13845	0	0	0	0	0	1	0	0
+Gm13939	0	1	0	0	0	2	0	0
+Gm13944	2	0	0	0	0	2	1	0
+Gm14005	3	6	3	5	0	8	0	1
+Gm14015	0	0	0	0	0	0	0	0
+Gm14023	0	2	0	1	0	0	0	0
+Gm14047	0	0	0	0	0	0	0	0
+Gm14057	0	0	0	0	0	0	0	0
+Gm14164	0	0	1	0	1	0	0	0
+Gm14169	0	0	0	0	0	0	0	0
+Gm14204	0	0	0	0	0	0	0	0
+Gm14207	1	2	2	5	0	0	0	1
+Gm14318	0	1	0	0	0	1	0	0
+Gm14327	0	0	0	0	0	0	0	0
+Gm14379	0	0	0	0	0	0	0	0
+Gm14403	1	0	0	0	0	5	0	0
+Gm14405	0	0	0	0	0	0	0	0
+Gm14492	0	0	0	0	0	0	3	0
+Gm14634	0	0	1	0	0	0	1	1
+Gm14635	0	0	0	0	0	0	0	0
+Gm14718	0	0	0	0	0	0	0	0
+Gm14812	0	0	0	0	0	0	0	0
+Gm14827	0	0	0	0	0	0	0	0
+Gm14858	0	0	0	0	0	0	0	0
+Gm14872	1	1	0	0	4	1	0	0
+Gm14873	0	0	0	0	0	0	0	0
+Gm15008	0	0	0	0	0	0	0	0
+Gm15133	0	0	0	0	0	0	0	0
+Gm15179	0	0	0	0	0	0	0	0
+Gm15217	1	0	0	1	0	0	0	0
+Gm15328	0	0	0	0	0	0	0	0
+Gm15348	0	0	0	0	1	2	0	0
+Gm15350	0	0	0	0	0	0	0	0
+Gm15401	0	0	0	2	0	0	0	0
+Gm15408	0	0	0	0	0	2	0	0
+Gm15412	0	0	0	0	0	0	0	0
+Gm15413	0	0	0	0	0	0	0	0
+Gm15417	4	2	3	2	4	7	13	0
+Gm15421	0	0	0	0	0	1	0	0
+Gm15441	6	6	3	3	1	11	7	6
+Gm15446	0	0	0	0	0	0	0	0
+Gm15471	0	0	0	0	0	1	0	0
+Gm15545	1	0	1	1	0	1	0	0
+Gm15612	0	0	0	0	0	1	0	0
+Gm15645	0	0	0	0	0	0	0	0
+Gm15663	0	1	0	0	0	0	0	0
+Gm15698	0	0	0	0	0	0	0	0
+Gm15706	0	0	0	0	0	1	0	0
+Gm15708	0	0	0	0	0	0	0	0
+Gm15713	1	0	2	1	0	3	0	0
+Gm15760	1	0	0	2	0	0	0	0
+Gm15772	0	0	0	0	0	2	0	0
+Gm15787	2	0	0	0	6	2	4	0
+Gm15850	0	0	4	0	0	0	0	0
+Gm15880	1	0	0	0	0	0	0	0
+Gm15910	0	0	0	0	0	0	0	2
+Gm15915	0	0	0	0	0	0	0	0
+Gm15941	0	0	0	0	0	0	0	1
+Gm15987	0	0	0	0	0	0	0	0
+Gm15997	0	1	0	0	0	0	0	0
+Gm16023	15	0	0	2	0	41	3	0
+Gm16039	8	2	3	4	2	2	4	2
+Gm16062	0	0	0	0	0	3	0	0
+Gm16063	0	0	0	0	0	0	0	0
+Gm16065	0	0	0	0	0	0	0	0
+Gm16119	1	0	0	3	4	8	8	0
+Gm16157	11	0	0	0	5	6	0	0
+Gm16197	0	0	0	0	0	1	0	0
+Gm16287	0	0	0	0	0	0	0	0
+Gm16291	2	3	2	0	1	5	0	1
+Gm16294	0	0	0	0	0	0	0	0
+Gm1631	0	0	0	0	0	0	0	0
+Gm16325	0	0	0	0	0	0	0	0
+Gm16336	0	0	0	0	0	0	0	0
+Gm16386	0	1	0	0	0	0	0	0
+Gm16497	0	0	0	0	0	0	0	0
+Gm16516	1	0	1	0	0	0	0	0
+Gm16523	0	0	0	0	0	0	0	0
+Gm1653	0	0	0	0	0	0	0	0
+Gm16548	1	0	0	0	1	3	1	0
+Gm16551	5	0	0	0	0	3	3	0
+Gm16576	0	0	0	0	0	0	0	0
+Gm16596	0	3	3	3	0	0	0	3
+Gm16617	0	0	0	0	0	0	0	0
+Gm16675	3	0	0	0	0	4	0	0
+Gm16677	0	0	0	0	0	0	0	0
+Gm16701	0	1	0	0	0	0	0	0
+Gm16702	0	0	0	0	0	0	0	0
+Gm16793	6	0	0	0	0	2	0	0
+Gm16796	0	0	0	0	0	0	0	0
+Gm16833	4	0	0	2	1	4	3	1
+Gm16845	8	0	4	4	2	6	6	0
+Gm16853	0	0	0	0	0	0	0	0
+Gm16861	4	1	0	1	1	6	1	1
+Gm16863	0	1	1	0	0	0	0	0
+Gm16880	4	0	0	0	1	2	0	0
+Gm16894	0	0	0	1	0	0	0	0
+Gm16897	0	0	0	1	0	0	1	2
+Gm16907	3	0	0	0	0	2	0	0
+Gm16938	0	0	0	0	0	0	0	0
+Gm16973	4	0	0	2	0	2	0	0
+Gm16982	0	0	0	0	0	1	0	0
+Gm16998	2	1	2	0	8	5	9	1
+Gm17066	0	0	1	0	0	2	0	0
+Gm1715	0	0	0	0	0	0	0	0
+Gm1720	0	0	0	0	0	0	0	0
+Gm17644	0	0	0	0	0	0	0	0
+Gm17745	0	0	0	1	0	0	0	1
+Gm17746	0	0	0	0	0	0	0	0
+Gm17751	0	0	0	0	0	0	0	0
+Gm17757	0	0	0	0	0	0	0	0
+Gm17762	0	1	0	0	1	0	0	0
+Gm17769	0	1	1	0	0	0	0	2
+Gm17801	0	0	0	0	0	0	0	0
+Gm17821	0	0	0	0	0	0	0	0
+Gm17830	0	0	0	0	0	0	0	0
+Gm1821	1	0	0	0	0	0	1	0
+Gm18409	0	0	0	0	0	0	0	0
+Gm18853	0	0	0	0	0	0	0	0
+Gm19276	0	0	1	0	0	0	0	0
+Gm19277	0	0	0	0	0	0	0	0
+Gm19299	0	0	0	0	0	0	0	0
+Gm19303	0	1	0	0	0	0	0	0
+Gm19395	0	0	0	0	0	0	0	0
+Gm19424	0	0	0	0	0	0	0	0
+Gm1943	0	0	0	0	0	0	0	0
+Gm19434	0	0	0	0	0	0	0	0
+Gm19461	3	0	1	0	0	7	0	0
+Gm19466	0	2	1	0	0	2	0	0
+Gm19510	0	0	0	0	0	0	0	0
+Gm19522	1	0	1	1	0	3	0	2
+Gm19557	0	0	0	1	0	0	0	0
+Gm19583	0	0	0	0	0	0	0	0
+Gm19589	0	0	0	0	0	0	0	0
+Gm19619	0	0	0	0	0	0	0	0
+Gm1968	0	0	0	0	0	0	0	0
+Gm19689	0	0	0	0	0	0	0	0
+Gm19705	0	2	2	0	0	0	0	0
+Gm19710	2	0	0	0	0	3	0	0
+Gm19757	0	0	0	0	0	0	0	0
+Gm1976	2	0	0	0	0	6	0	0
+Gm19782	2	2	1	0	0	0	0	0
+Gm19784	0	0	0	0	0	0	0	0
+Gm19897	0	0	0	0	0	0	0	0
+Gm1995	0	0	0	0	0	0	0	0
+Gm19990	0	0	0	0	0	0	0	0
+Gm20063	0	0	0	0	0	0	0	0
+Gm20098	0	0	0	0	0	0	0	0
+Gm2011	0	0	0	0	0	0	0	0
+Gm20110	0	0	0	0	0	0	0	2
+Gm20125	0	1	0	0	0	0	0	0
+Gm20139	0	0	0	2	0	0	0	0
+Gm20187	0	0	0	0	0	0	0	0
+Gm20199	0	0	0	1	0	0	0	0
+Gm20257	0	0	0	0	0	0	0	0
+Gm20268	0	0	0	0	0	0	0	0
+Gm2027	0	0	0	0	0	0	0	0
+Gm20300	2	0	0	0	0	4	0	0
+Gm20324	0	0	0	0	0	0	0	0
+Gm20337	0	0	0	0	0	0	1	0
+Gm20356	0	0	0	0	0	0	0	0
+Gm20362	0	0	0	0	0	0	0	0
+Gm20554	0	0	0	0	0	0	0	0
+Gm20556	0	0	0	0	0	0	0	0
+Gm20597	0	0	0	0	0	0	0	0
+Gm20605	4	0	0	0	1	2	0	0
+Gm2061	5	0	0	0	0	0	0	0
+Gm20611	0	0	0	0	0	0	0	0
+Gm20735	0	0	0	0	0	0	0	0
+Gm20740	0	0	0	0	0	0	0	0
+Gm20741	0	0	0	0	0	0	0	0
+Gm20743	0	0	0	0	0	0	0	0
+Gm20744	0	0	0	0	0	0	0	0
+Gm20745	0	0	1	0	0	0	0	0
+Gm20748	0	0	0	0	0	0	0	0
+Gm20750	0	0	0	0	0	0	0	0
+Gm20751	0	0	0	0	0	0	0	0
+Gm20752	0	0	0	0	0	0	0	0
+Gm20753	0	0	0	0	0	0	0	0
+Gm20754	1	0	0	1	0	0	0	0
+Gm20755	0	0	0	0	0	0	0	0
+Gm20756	0	0	0	0	0	1	0	0
+Gm20757	0	2	1	0	2	0	0	0
+Gm20758	0	0	0	0	0	0	0	0
+Gm20759	0	0	0	0	0	0	0	0
+Gm20857	0	0	0	0	0	0	0	0
+Gm20858	0	0	0	0	0	0	0	0
+Gm20871	0	0	0	0	0	0	0	0
+Gm21057	0	0	1	0	0	0	0	0
+Gm2109	0	0	0	0	0	0	0	0
+Gm2115	0	0	0	0	0	0	0	0
+Gm21221	0	0	0	0	0	0	0	0
+Gm21269	0	0	0	0	0	0	0	0
+Gm21276	0	0	0	0	0	0	0	0
+Gm21284	0	0	0	2	0	0	0	1
+Gm2176	0	0	0	0	0	0	0	0
+Gm21944	1	0	0	0	0	3	0	0
+Gm2381	0	0	0	0	0	0	0	0
+Gm2447	0	0	0	0	0	0	0	1
+Gm2516	0	0	0	0	0	0	0	0
+Gm2518	2	0	1	1	0	2	2	0
+Gm2694	0	1	0	0	0	0	0	0
+Gm2721	0	0	0	0	0	0	0	0
+Gm2762	0	1	0	0	0	0	0	0
+Gm2837	0	0	0	0	0	0	0	0
+Gm2848	0	0	0	0	0	0	0	0
+Gm3002	0	0	0	0	0	0	0	0
+Gm3020	0	0	0	0	0	0	0	0
+Gm3086	2	0	0	0	0	1	0	1
+Gm3143	0	0	0	0	0	0	0	0
+Gm3219	1	0	0	0	0	5	0	0
+Gm3230	1	0	0	0	0	5	1	0
+Gm3279	0	0	0	0	0	0	0	0
+Gm3414	1	0	0	0	0	0	0	1
+Gm3428	0	0	0	0	0	0	0	0
+Gm3434	0	0	0	0	0	0	0	0
+Gm3716	0	0	0	0	0	0	0	0
+Gm3833	0	0	0	0	0	0	0	0
+Gm3893	0	0	0	0	0	0	0	0
+Gm3925	0	0	0	0	0	0	0	0
+Gm4013	0	0	0	0	0	0	0	0
+Gm41	0	0	0	0	0	0	0	0
+Gm4224	0	0	0	0	0	0	0	0
+Gm4251	0	0	0	0	0	0	0	0
+Gm4262	0	0	0	0	0	0	0	0
+Gm4265	4	0	0	0	0	0	0	0
+Gm4278	0	0	0	0	0	0	0	0
+Gm4285	0	0	0	1	0	1	1	0
+Gm4349	0	0	0	0	0	0	0	0
+Gm4371	0	1	0	0	0	0	0	2
+Gm4432	0	0	0	0	0	0	0	0
+Gm4489	0	0	0	0	0	0	0	0
+Gm4532	1	0	1	0	0	0	0	1
+Gm4541	0	0	0	0	0	0	0	0
+Gm4566	0	0	0	0	0	0	0	0
+Gm4598	0	0	0	0	0	0	0	0
+Gm4710	0	0	0	0	0	0	0	0
+Gm4719	0	0	0	0	0	0	0	0
+Gm4759	0	0	0	0	0	0	0	0
+Gm4776	0	0	0	0	0	0	0	0
+Gm4792	0	0	0	0	0	0	0	0
+Gm4814	0	0	0	0	0	0	0	0
+Gm4827	0	0	0	0	0	0	0	0
+Gm4850	0	0	0	0	0	0	0	0
+Gm4872	0	0	0	0	0	0	0	0
+Gm4890	0	0	0	2	0	2	0	0
+Gm4926	0	0	0	0	0	0	0	0
+Gm4956	1	0	0	0	0	1	0	0
+Gm4961	0	0	0	0	0	0	0	0
+Gm4971	0	0	0	0	0	0	0	0
+Gm5	0	0	0	0	0	0	0	0
+Gm5039	0	0	0	0	0	0	0	0
+Gm5065	0	0	0	0	0	0	0	0
+Gm5069	0	0	0	0	0	0	0	0
+Gm5083	0	0	0	0	0	0	0	0
+Gm5084	0	0	0	0	0	0	0	0
+Gm5086	0	0	0	0	0	0	0	0
+Gm5088	0	0	1	1	0	0	0	2
+Gm5089	10	1	1	0	0	19	1	2
+Gm5091	0	0	0	0	0	0	0	0
+Gm5095	1	1	0	1	0	1	0	0
+Gm5105	0	3	2	2	0	0	0	0
+Gm5122	0	0	0	0	0	0	0	0
+Gm5124	0	0	0	0	0	0	0	0
+Gm5126	0	0	0	0	0	0	0	0
+Gm5129	1	0	0	1	1	0	0	0
+Gm5166	0	0	0	0	0	0	0	0
+Gm5176	0	0	0	0	0	0	2	0
+Gm5177	0	0	0	0	0	0	0	0
+Gm53	0	0	0	0	0	0	0	0
+Gm5334	0	0	0	0	0	0	0	0
+Gm5420	0	0	0	0	0	0	0	0
+Gm5424	93	1	0	0	5	77	5	0
+Gm5434	0	0	0	0	0	0	0	0
+Gm5441	0	31	33	36	0	0	1	41
+Gm5468	0	0	0	0	0	0	0	0
+Gm5475	0	0	0	0	0	0	0	0
+Gm5476	0	0	0	0	0	0	0	0
+Gm5477	0	0	0	0	0	0	0	0
+Gm5478	0	0	0	0	0	0	0	0
+Gm5480	0	0	0	0	0	0	0	0
+Gm5485	0	0	0	0	0	0	0	0
+Gm5512	7	1	1	0	0	2	1	0
+Gm5523	0	0	0	0	0	0	0	0
+Gm5547	0	0	0	0	0	0	0	0
+Gm5577	0	0	0	0	0	0	0	0
+Gm5607	0	0	0	0	0	2	0	0
+Gm5627	2	0	0	0	0	0	0	0
+Gm5643	0	0	0	0	0	0	1	1
+Gm5712	0	0	0	0	0	0	0	0
+Gm5766	0	0	0	0	0	0	0	0
+Gm5779	0	0	0	0	0	0	0	0
+Gm5801	3	0	0	0	0	0	0	0
+Gm5833	0	0	0	0	0	0	0	0
+Gm5860	0	0	1	0	0	0	0	0
+Gm5925	0	0	0	0	0	0	0	0
+Gm6042	0	0	0	0	0	0	0	0
+Gm6083	0	0	0	0	0	0	0	0
+Gm6116	0	0	1	0	0	0	0	0
+Gm6150	0	0	0	0	0	0	0	0
+Gm6194	0	0	0	0	0	0	0	0
+Gm6213	0	0	0	0	0	0	0	1
+Gm6225	0	0	0	0	3	0	3	2
+Gm6249	0	0	0	0	0	0	0	0
+Gm6260	0	0	0	0	0	0	0	0
+Gm6268	0	0	0	0	0	0	0	0
+Gm6277	1	0	0	1	1	0	0	0
+Gm6297	0	0	0	2	0	0	2	0
+Gm6300	0	0	0	0	0	0	0	0
+Gm6307	0	6	6	29	0	0	2	9
+Gm6313	0	2	1	8	0	0	0	4
+Gm6329	0	0	0	0	0	0	0	0
+Gm6367	0	0	0	0	0	0	0	0
+Gm6402	0	0	0	0	0	0	0	0
+Gm6416	0	0	0	0	0	0	0	0
+Gm6455	0	0	0	0	0	0	0	0
+Gm6498	1	0	0	0	0	1	0	0
+Gm6524	0	0	0	0	0	0	0	0
+Gm6525	0	0	0	0	0	0	0	0
+Gm6548	0	1	0	0	0	2	0	0
+Gm6567	0	0	0	0	0	0	0	0
+Gm6568	0	0	0	0	0	2	0	0
+Gm6578	0	0	0	0	0	0	0	0
+Gm6602	0	0	0	0	0	0	0	0
+Gm6607	0	0	0	0	0	0	0	0
+Gm6623	0	0	0	0	0	0	0	0
+Gm6634	0	0	0	0	0	0	0	0
+Gm6639	0	0	0	0	0	0	0	0
+Gm6642	0	0	0	0	0	0	0	0
+Gm6644	0	1	0	0	1	0	0	0
+Gm6654	0	0	0	0	0	0	0	0
+Gm6682	0	0	0	0	0	0	0	0
+Gm6756	0	0	0	0	0	0	0	0
+Gm6787	0	0	0	0	0	0	0	0
+Gm6793	4	0	1	0	0	1	0	0
+Gm6815	0	0	0	0	0	0	0	0
+Gm6936	0	0	0	0	0	0	0	0
+Gm6938	0	0	0	0	0	0	0	0
+Gm6981	3	1	0	0	0	1	3	0
+Gm6994	0	0	0	0	0	0	0	0
+Gm7008	1	0	0	0	0	1	0	0
+Gm7056	0	0	0	0	0	0	0	0
+Gm7104	0	0	0	0	0	0	0	0
+Gm7134	0	0	0	0	0	0	0	0
+Gm7271	0	0	0	0	0	0	0	0
+Gm7334	0	0	0	0	0	0	0	0
+Gm7337	0	0	0	0	0	0	0	0
+Gm7367	2	1	0	1	0	1	0	0
+Gm7444	0	0	0	0	0	0	0	0
+Gm7457	0	0	0	0	0	0	0	0
+Gm7538	0	0	0	0	0	0	0	0
+Gm7550	0	0	0	0	0	0	0	0
+Gm7854	8	1	2	1	7	1	3	0
+Gm7904	0	0	0	0	0	0	0	0
+Gm7977	0	0	0	0	0	0	0	0
+Gm805	0	0	0	1	0	0	0	0
+Gm8096	0	0	0	0	0	0	0	0
+Gm8179	0	0	0	0	0	0	0	0
+Gm8221	0	0	0	0	0	0	0	0
+Gm8234	0	0	0	0	0	0	0	0
+Gm833	0	0	0	0	0	0	0	0
+Gm8363	0	0	0	0	0	0	0	0
+Gm839	0	0	0	0	0	0	0	0
+Gm8579	0	0	0	0	0	0	0	0
+Gm8580	0	0	0	0	0	0	0	0
+Gm8615	1	0	0	0	1	3	0	0
+Gm8633	0	0	0	0	0	0	0	0
+Gm8709	0	0	0	0	0	0	0	0
+Gm872	0	0	0	0	0	0	0	0
+Gm8773	0	0	0	0	0	0	0	0
+Gm8801	0	0	0	0	0	0	0	0
+Gm8883	4	0	0	0	0	10	2	0
+Gm8884	0	0	0	0	0	0	0	0
+Gm8979	0	0	0	0	0	0	0	0
+Gm8989	0	0	0	0	0	0	0	0
+Gm9054	1	0	0	1	0	0	0	0
+Gm9079	0	0	0	0	0	0	0	0
+Gm9159	0	0	0	0	0	0	0	0
+Gm9199	0	0	0	0	0	0	0	0
+Gm9696	0	0	0	0	0	0	0	0
+Gm9731	0	0	0	0	0	0	0	0
+Gm9767	0	0	0	0	0	0	0	0
+Gm9776	1	0	0	2	4	0	0	0
+Gm9833	0	0	0	0	0	0	0	0
+Gm9855	0	0	0	0	0	0	0	0
+Gm9866	0	0	0	0	0	0	0	0
+Gm9871	0	0	0	0	0	0	0	0
+Gm9895	1	1	0	0	1	4	1	0
+Gm9899	0	1	1	2	0	0	0	1
+Gm9920	2	0	0	0	1	2	1	0
+Gm9926	0	0	0	0	0	0	0	0
+Gm9958	0	0	0	0	0	0	0	0
+Gm9961	4	0	0	1	3	1	1	0
+Gm9962	0	0	0	0	0	0	0	0
+Gm9999	0	0	0	0	0	1	4	0
+Gnas	81	7	13	7	3	65	13	9
+Gnb5	2	1	0	0	0	0	0	0
+Gorasp2	4	0	0	2	1	14	2	1
+Gpr137b-ps	1	1	1	0	0	0	0	2
+Gpr19	0	0	0	0	1	0	0	0
+Gpx2-ps1	0	0	0	0	0	0	0	0
+Grip1	0	1	0	0	0	1	0	0
+Gsdmcl-ps	1	0	0	0	0	0	0	0
+Gt(ROSA)26Sor	3	3	9	1	0	4	3	3
+H19	0	1	1	0	1	0	3	0
+H2-K2	1	0	0	0	0	3	1	0
+H2-Q5	0	0	0	0	0	0	0	0
+H2-T10	1	0	0	1	0	3	0	0
+H2afy3	0	0	0	0	0	0	0	0
+Has2as	0	0	0	0	0	0	0	0
+Hdac10	0	0	0	0	0	18	0	0
+Hgd	55	0	1	0	4	71	6	0
+Hhatl	0	0	0	1	0	0	0	0
+Hmga2-ps1	0	0	0	0	0	0	0	0
+Hmgb1-rs17	0	0	0	0	0	0	0	0
+Hotair	0	0	0	0	0	0	0	0
+Hoxa11as	0	0	0	0	0	0	0	0
+Hoxd11	0	0	0	0	0	0	0	0
+Hrh3	0	0	0	0	0	0	0	0
+Hsf4	9	0	1	1	2	2	2	0
+Hspa13	3	0	0	0	1	6	2	0
+Hyi	1	0	0	0	0	5	4	0
+I730028E13Rik	0	0	0	0	0	0	0	0
+I730030J21Rik	0	0	0	0	0	0	0	0
+Icmt	5	0	0	1	0	8	0	0
+Igf2as	0	0	0	0	0	0	0	0
+Il15ra	18	2	0	6	14	34	4	0
+Il4	0	0	0	0	0	0	0	0
+Ippk	5	1	2	1	0	4	1	1
+Ipw	0	0	1	1	0	0	0	0
+Irf3	3	1	0	0	0	1	0	0
+Jmjd4	2	1	1	0	1	7	3	0
+Jpx	1	0	0	2	2	6	1	0
+Kat5	1	0	1	0	4	5	0	1
+Kcnj15	0	0	0	0	0	0	0	0
+Kcnk2	4	1	0	0	0	0	1	1
+Kcnq1ot1	7	1	0	0	0	5	1	2
+Kctd18	0	0	0	0	0	0	0	0
+Khdrbs1	1	0	0	1	0	2	1	1
+Kif4-ps	0	0	0	0	0	0	0	0
+Kis2	0	0	0	0	2	0	0	0
+Klc2	1	0	0	0	2	1	0	1
+Klk1b7-ps	0	0	0	0	0	0	0	0
+Klra13-ps	0	0	0	0	0	0	0	0
+Klrb1-ps1	0	0	0	0	0	0	0	0
+Klrb1f	0	0	0	0	0	0	0	0
+Krit1	1	1	1	1	0	1	0	0
+Krt74	0	0	0	0	0	0	0	0
+LOC100043315	0	0	0	0	0	0	0	1
+LOC100503496	0	0	0	0	0	2	1	0
+LOC100504039	0	0	0	0	0	0	0	0
+LOC100504703	0	0	0	0	0	0	0	0
+LOC101243624	0	0	0	0	0	0	0	0
+LOC101410165	0	1	0	0	0	1	0	0
+LOC106740	0	0	0	0	0	0	0	0
+LOC171588	0	0	0	0	0	0	0	0
+Ldha	9	1	4	4	2	12	10	1
+Lilra6	0	0	0	0	0	0	0	0
+Lins	0	0	0	0	0	3	1	0
+Lmf1	4	1	3	1	0	3	0	1
+Lrp8	0	2	0	0	0	0	0	0
+Lrrc28	12	0	2	0	2	40	2	2
+Lrrc57	0	0	0	1	0	1	4	0
+Lrrtm4	0	0	0	0	0	0	0	0
+Luc7l	12	0	4	2	0	16	2	0
+Ly9	0	0	0	0	0	0	0	0
+Lypd6	0	2	1	0	0	0	0	0
+Mageb16-ps1	0	0	0	0	0	0	0	0
+Magix	0	0	0	1	1	3	0	0
+Malat1	167	36	41	25	9	201	31	50
+Map1lc3a	6	1	0	2	0	9	0	3
+March2	14	4	2	0	0	12	2	2
+Marcksl1-ps4	0	0	0	0	0	1	0	0
+Mcpt-ps1	0	0	0	0	0	0	0	0
+Mdp1	1	0	0	1	0	2	0	2
+Mea1	3	1	0	1	2	4	2	0
+Meg3	0	4	4	4	0	0	0	0
+Mgarp	0	0	0	0	0	0	0	0
+Miat	0	0	0	0	0	0	0	0
+Milr1	0	0	0	0	0	2	0	0
+Minos1	11	1	2	3	1	1	3	0
+Mipep	4	1	2	1	0	6	0	0
+Mir100	693	2238	1520	1200	566	268	603	1749
+Mir101a	3053	1460	1381	4974	2064	3015	2188	1557
+Mir101b	17063	635	544	1984	11066	16253	10901	573
+Mir101c	1	0	0	1	0	2	1	0
+Mir103-1	4	0	0	3	3	3	1	0
+Mir103-2	17	7	6	9	10	13	15	4
+Mir105	0	0	0	0	0	0	0	0
+Mir106a	0	0	0	0	2	0	0	0
+Mir106b	181	101	84	348	113	148	137	118
+Mir107	1034	175	112	413	641	704	622	142
+Mir10a	70833	35173	68923	40444	59554	43045	70877	46830
+Mir10b	3002	34668	54096	51870	1080	1189	1777	49658
+Mir1186	0	0	0	0	0	0	0	0
+Mir1186b	0	0	0	0	0	0	0	0
+Mir1187	0	0	0	0	0	0	0	0
+Mir1188	0	0	0	0	0	0	0	0
+Mir1190	0	0	0	0	0	0	0	0
+Mir1191	17	0	1	1	0	10	4	1
+Mir1192	0	0	0	0	0	0	0	0
+Mir1193	1	1	0	0	0	0	0	1
+Mir1195	37	9	6	11	17	41	12	11
+Mir1196	0	0	0	0	0	3	0	1
+Mir1197	0	0	0	0	0	0	0	0
+Mir1198	12	1	1	3	2	16	6	2
+Mir1199	1	3	1	4	1	0	0	1
+Mir1224	0	0	0	0	0	0	0	0
+Mir122a	29767	12	7	27	24233	11911	24463	8
+Mir1247	38	27	15	29	54	42	67	28
+Mir1249	19	39	39	52	29	9	16	37
+Mir124a-1	0	0	0	0	0	0	0	0
+Mir124a-2	0	0	0	0	0	0	0	0
+Mir124a-3	0	0	0	0	0	0	0	0
+Mir1251	0	0	0	0	0	0	0	0
+Mir125a	2326	7567	7389	7258	1696	731	1947	8953
+Mir125b-1	30	131	92	190	18	6	23	119
+Mir125b-2	156	771	591	1284	149	60	133	693
+Mir126	47368	70166	59307	88603	32811	17742	39170	65553
+Mir1264	0	0	0	0	0	0	0	0
+Mir127	2961	2178	2096	2262	1398	474	776	2284
+Mir128-1	19	116	82	175	20	14	24	77
+Mir128-2	0	5	0	18	1	0	1	10
+Mir129-1	1	0	0	0	1	2	0	0
+Mir129-2	0	0	0	1	0	0	0	0
+Mir1298	0	0	0	0	0	0	0	0
+Mir1306	4	1	1	6	2	2	2	2
+Mir130a	1969	1056	835	1976	1464	1104	1659	985
+Mir130b	18	18	13	27	14	8	23	14
+Mir132	38	136	125	329	22	30	28	149
+Mir133a-1	0	16	11	25	0	0	0	8
+Mir133a-2	0	1	0	1	0	0	0	0
+Mir133b	0	32	26	77	0	0	0	24
+Mir134	7	2	6	10	7	0	0	8
+Mir135a-1	1	0	0	0	0	0	0	0
+Mir135a-2	0	0	0	0	0	0	0	0
+Mir135b	0	1	0	0	0	0	0	1
+Mir136	132	80	76	300	36	13	27	89
+Mir137	13	0	0	0	8	2	6	0
+Mir138-1	0	1	0	2	0	0	0	0
+Mir138-2	0	1	0	1	0	0	0	0
+Mir139	103	79	69	217	66	74	63	80
+Mir140	1287	1205	988	3410	801	1109	831	1164
+Mir141	483	22	17	15	120	43	119	16
+Mir142	4349	1888	1187	2574	2290	1519	4278	1577
+Mir143	89792	228272	227298	428463	57040	70208	65791	232955
+Mir143hg	90501	229566	228498	430054	57480	70435	66297	234533
+Mir144	723	3833	2417	1050	468	333	1107	3778
+Mir145	705	1294	1200	1591	440	227	505	1577
+Mir146	2127	1901	1694	2555	1377	781	1758	1724
+Mir146b	0	1	1	0	0	0	0	0
+Mir147	1	0	1	1	0	0	1	0
+Mir148a	258578	26191	24636	39859	177349	256441	193465	25878
+Mir148b	1805	1070	970	1998	1321	1056	1482	1001
+Mir149	25	1399	1123	2295	9	8	16	1289
+Mir150	286	844	685	1193	99	78	170	874
+Mir152	340	255	216	670	226	206	211	274
+Mir153	0	31	32	36	0	0	1	40
+Mir154	2	2	0	6	3	0	0	5
+Mir155	14	83	79	192	3	8	9	75
+Mir15a	770	294	256	774	568	233	703	285
+Mir15b	163	121	97	231	101	87	153	111
+Mir16-1	95	39	34	87	71	50	76	47
+Mir16-2	17	18	11	26	18	9	23	11
+Mir17	96	55	36	122	63	51	76	35
+Mir17hg	32320	7428	6690	16161	24182	24856	25904	7910
+Mir18	7	7	7	8	9	4	13	7
+Mir181a-1	17	76	61	241	14	10	11	76
+Mir181a-2	78	475	398	1155	69	115	82	445
+Mir181b-1	0	5	4	5	0	0	0	5
+Mir181b-2	2	18	17	88	1	5	4	19
+Mir181c	567	3488	3113	11824	366	384	427	3436
+Mir181d	60	416	340	771	42	46	38	426
+Mir182	1655	49	26	54	879	3409	1075	42
+Mir183	156	12	2	4	71	181	130	7
+Mir1839	301	114	75	416	183	244	226	96
+Mir184	4	55	41	90	0	2	2	53
+Mir1843	524	146	133	452	386	589	431	121
+Mir1843b	272	148	109	300	196	335	243	137
+Mir185	31	39	24	161	23	16	16	21
+Mir186	2037	2945	2416	4145	1434	738	1809	2711
+Mir187	10	8	6	14	19	5	7	13
+Mir188	5	6	8	7	5	0	2	8
+Mir1892	0	0	0	1	0	1	0	0
+Mir1893	0	0	0	0	0	0	0	0
+Mir1894	0	0	0	0	0	0	0	0
+Mir1895	0	0	0	0	0	0	0	0
+Mir1896	0	0	0	0	0	0	0	0
+Mir1897	0	0	0	0	0	0	0	0
+Mir1898	0	0	0	0	0	0	0	0
+Mir1899	0	0	0	0	0	0	0	0
+Mir18b	0	0	0	0	0	0	0	0
+Mir190	10	20	19	65	9	5	10	25
+Mir1900	0	0	0	0	0	0	0	0
+Mir1901	0	0	0	0	0	0	0	0
+Mir1902	0	0	0	0	0	0	0	0
+Mir1903	0	0	0	0	0	0	0	0
+Mir1904	0	0	0	0	0	0	0	0
+Mir1905	0	0	0	0	0	0	0	0
+Mir1906-1	0	0	0	0	0	0	0	0
+Mir1906-2	0	0	0	0	0	0	0	0
+Mir1907	0	1	0	0	0	0	0	0
+Mir190b	0	2	3	8	1	0	1	4
+Mir191	22730	26548	23372	22481	18726	13095	22490	25448
+Mir1912	0	0	0	0	0	0	0	0
+Mir192	662133	3214	3163	6029	490327	630849	526600	3252
+Mir1928	0	0	0	0	0	0	0	0
+Mir1929	0	0	2	1	0	0	0	1
+Mir193	167	2	2	4	101	61	83	1
+Mir1930	0	0	0	0	0	0	0	0
+Mir1931	0	0	0	0	0	0	0	0
+Mir1932	0	0	0	0	0	0	0	0
+Mir1933	2	6	2	14	0	0	1	1
+Mir1934	2	3	1	3	0	0	0	0
+Mir1935	0	0	0	0	0	1	1	0
+Mir1936	0	0	0	0	0	0	0	0
+Mir1938	0	1	0	2	0	0	0	1
+Mir193b	8	55	45	93	4	9	8	38
+Mir194-1	220	6	13	8	160	81	141	6
+Mir194-2	1316	19	15	20	865	439	880	16
+Mir1940	2	1	1	1	1	1	1	1
+Mir1941	0	0	0	0	0	0	0	1
+Mir1942	0	0	0	0	0	0	0	0
+Mir1943	8	41	39	63	8	4	15	37
+Mir1945	2	0	1	0	0	1	1	0
+Mir1946a	0	0	0	0	0	0	0	0
+Mir1946b	2	1	1	1	0	4	3	3
+Mir1947	15	22	28	29	15	6	13	18
+Mir1948	869	2	2	3	648	259	617	4
+Mir1949	0	1	1	0	0	0	0	3
+Mir195	158	775	692	1238	112	75	120	792
+Mir1950	28	0	2	1	4	39	3	1
+Mir1951	0	0	0	0	0	0	0	0
+Mir1952	0	0	0	0	0	0	0	0
+Mir1953	0	0	0	0	0	0	0	0
+Mir1954	0	0	0	0	0	0	1	0
+Mir1955	3	1	0	0	1	1	1	0
+Mir1956	0	0	0	0	0	0	0	0
+Mir1957	0	0	0	0	0	0	0	0
+Mir1958	0	0	0	0	0	0	0	0
+Mir1960	0	6	7	15	0	1	1	6
+Mir1961	0	0	0	0	0	0	0	0
+Mir1962	0	0	0	0	0	0	0	0
+Mir1963	0	0	0	0	0	0	0	0
+Mir1964	9	22	13	19	11	8	13	10
+Mir1965	0	1	0	1	2	0	0	1
+Mir1966	2	0	1	3	1	1	0	0
+Mir1967	0	0	0	0	0	0	0	0
+Mir1968	11	0	0	4	4	8	5	1
+Mir1969	0	0	0	0	0	0	0	0
+Mir196a-1	0	0	0	0	0	0	0	0
+Mir196a-2	0	0	0	0	0	0	0	0
+Mir196b	0	2	0	2	1	0	2	3
+Mir1970	1	0	0	0	0	6	0	0
+Mir1971	0	0	0	0	0	0	0	0
+Mir1981	81	27	18	32	42	23	54	18
+Mir1982	3	0	4	1	4	2	2	1
+Mir1983	0	30	15	28	0	0	0	28
+Mir199a-1	4	3	0	2	2	4	3	0
+Mir199a-2	8	61	50	131	10	3	11	78
+Mir199b	4	73	64	143	1	0	4	81
+Mir19a	66	15	14	26	24	35	36	7
+Mir19b-1	1	0	1	0	1	0	0	0
+Mir19b-2	5	0	1	1	1	2	3	0
+Mir1a-1	0	4	5	24	0	0	0	9
+Mir1a-2	0	2	1	16	0	0	1	3
+Mir1b	0	2	1	16	0	0	1	3
+Mir200a	130	0	0	1	53	33	47	0
+Mir200b	496	4	0	3	164	66	155	0
+Mir200c	24	1	1	5	3	2	5	2
+Mir201	0	5	15	28	0	0	0	15
+Mir202	0	0	0	0	0	0	0	0
+Mir203	1919	231	243	500	1276	993	1349	228
+Mir204	5	571	549	923	2	1	9	541
+Mir205	9	0	0	0	2	0	2	0
+Mir206	0	0	0	2	0	0	2	1
+Mir207	0	0	0	0	0	0	0	0
+Mir208a	0	1060	956	1693	0	0	1	928
+Mir208b	1	2049	1647	8904	0	0	0	2155
+Mir20a	100	46	44	193	55	41	101	63
+Mir20b	2	0	1	1	0	0	0	0
+Mir21	66353	4621	3603	12563	44582	43237	50530	3631
+Mir210	70	81	45	244	20	37	36	59
+Mir211	1	0	0	1	3	1	0	0
+Mir212	13	54	34	74	4	4	14	35
+Mir2136	0	0	0	0	0	0	0	0
+Mir2137	1	2	0	0	0	0	0	3
+Mir214	45	181	163	358	26	17	29	229
+Mir215	56	207	230	393	31	28	36	201
+Mir216a	0	0	0	0	0	0	0	0
+Mir216b	0	0	0	0	0	0	0	0
+Mir217	0	0	0	1	0	0	0	0
+Mir218-1	0	1	1	3	0	0	0	2
+Mir218-2	0	0	0	2	0	0	0	1
+Mir219-1	20	6	4	21	10	7	14	8
+Mir219-2	0	1	0	0	0	0	0	0
+Mir22	264828	200828	157532	497412	178009	71407	194665	186766
+Mir221	781	737	612	1686	382	371	486	604
+Mir222	252	234	166	588	146	122	147	185
+Mir223	119	98	109	214	103	53	139	93
+Mir22hg	264833	200829	157535	497415	178026	71418	194669	186766
+Mir23a	435	1934	1611	3561	229	218	327	1803
+Mir23b	1523	2741	2199	5277	757	611	734	2545
+Mir24-1	5	33	26	69	7	6	4	39
+Mir24-2	162	644	462	1374	127	65	140	496
+Mir25	2953	1818	1415	3508	2037	3417	2635	1810
+Mir26a-1	46	46	25	66	35	13	33	38
+Mir26a-2	17	10	3	31	29	11	22	8
+Mir26b	9835	3591	3120	8413	6687	4515	7017	3488
+Mir27a	949	4009	3588	7668	628	400	760	3884
+Mir27b	49450	96357	77514	215408	34471	24893	34934	92281
+Mir28	0	0	0	0	0	0	0	0
+Mir2861	0	0	0	0	0	0	0	0
+Mir28b	0	0	0	0	0	0	0	0
+Mir28c	0	0	0	0	0	0	0	0
+Mir290	1	0	0	0	0	1	0	0
+Mir291a	10	0	0	0	8	4	2	0
+Mir291b	0	0	0	0	0	0	0	0
+Mir292	25	0	0	0	8	1	7	0
+Mir293	0	0	0	0	0	0	0	0
+Mir294	1	0	0	0	0	1	2	0
+Mir295	0	0	0	0	0	2	1	0
+Mir296	3	1	0	3	0	1	0	3
+Mir297-1	0	0	0	0	0	0	0	0
+Mir297-2	11	5	1	3	6	16	4	1
+Mir297a-3	0	5	3	12	0	1	4	7
+Mir297a-4	0	0	0	0	0	0	0	0
+Mir297b	0	0	0	0	0	0	0	0
+Mir297c	0	7	6	0	0	0	0	3
+Mir298	1	6	2	20	0	1	0	7
+Mir299	7	7	5	12	4	2	3	3
+Mir29a	4905	3937	3452	8384	3490	1455	3626	3832
+Mir29b-1	0	1	3	1	4	1	0	0
+Mir29b-2	5	3	5	15	0	2	5	6
+Mir29c	1073	655	578	1463	624	245	733	667
+Mir300	53	22	18	72	20	2	6	29
+Mir301	196	329	266	665	120	88	155	300
+Mir301b	3	4	2	1	2	1	0	1
+Mir302a	0	0	0	0	0	0	0	0
+Mir302b	0	0	0	0	0	0	0	0
+Mir302c	0	0	0	0	0	0	0	0
+Mir302d	0	0	0	0	0	0	0	0
+Mir3057	21	37	42	54	25	9	12	44
+Mir3058	0	2	3	1	0	2	1	0
+Mir3059	0	0	0	0	0	0	0	0
+Mir3060	3	1	1	8	1	0	2	3
+Mir3061	12	11	19	33	10	3	11	20
+Mir3062	0	0	0	0	0	0	0	0
+Mir3063	0	0	0	0	0	0	0	0
+Mir3064	0	0	0	0	0	0	1	2
+Mir3065	61	62	54	90	52	13	53	84
+Mir3066	0	2	1	0	2	1	0	2
+Mir3067	0	0	0	0	0	0	0	0
+Mir3068	75	47	32	151	34	36	29	27
+Mir3069	4	1	0	0	0	2	2	0
+Mir3070a	0	0	0	0	0	0	0	0
+Mir3070b	0	0	0	0	0	0	0	0
+Mir3071	132	80	76	300	36	13	27	89
+Mir3072	0	0	0	0	0	0	0	0
+Mir3073	341	0	0	0	218	131	214	0
+Mir3074-1	5	33	26	69	7	6	4	39
+Mir3074-2	162	644	462	1374	127	65	140	496
+Mir3075	0	0	0	0	0	0	0	0
+Mir3076	2	2	2	9	0	0	1	1
+Mir3077	1	0	0	0	0	0	0	0
+Mir3078	0	0	0	0	0	0	0	0
+Mir3079	0	0	0	0	0	0	0	0
+Mir3081	0	0	1	0	0	0	0	2
+Mir3082	10	15	12	24	13	11	11	16
+Mir3083	0	0	0	1	0	0	0	0
+Mir3085	0	0	0	0	0	0	0	0
+Mir3086	2	2	2	5	0	1	1	2
+Mir3087	0	3	1	1	2	0	0	1
+Mir3088	0	0	0	0	0	0	0	0
+Mir3089	0	0	2	2	0	0	0	0
+Mir3091	0	0	0	2	0	0	0	0
+Mir3092	0	0	1	0	0	1	0	0
+Mir3093	0	0	0	0	0	0	0	0
+Mir3094	0	0	0	0	0	0	0	0
+Mir3095	0	1	0	1	0	0	0	0
+Mir3096	2	0	0	0	1	2	1	0
+Mir3096b	45	54	50	161	29	34	29	33
+Mir3097	0	0	0	2	0	0	0	0
+Mir3098	66	12	15	20	20	84	35	7
+Mir3099	0	0	0	0	0	0	0	0
+Mir30a	91372	54163	51417	115733	63661	65778	70304	53479
+Mir30b	1314	1218	1113	3381	702	447	673	1163
+Mir30c-1	79	101	89	201	51	35	61	115
+Mir30c-2	224	116	88	333	139	196	168	81
+Mir30d	16033	20818	18856	57546	10892	5850	11804	19931
+Mir30e	15854	23486	20880	76780	10732	5390	11456	22218
+Mir31	716	54	38	180	381	218	444	47
+Mir3100	0	0	0	4	0	0	0	0
+Mir3101	0	0	0	0	0	0	0	0
+Mir3102	0	23	14	29	1	0	1	19
+Mir3103	0	0	0	2	1	0	1	0
+Mir3104	0	0	0	0	0	0	0	0
+Mir3106	0	0	0	0	0	0	0	0
+Mir3107	789	2612	2768	3959	621	2005	1564	2555
+Mir3108	0	0	0	0	0	0	0	0
+Mir3109	0	0	1	0	0	0	0	1
+Mir3110	0	0	0	0	0	0	0	0
+Mir3112	0	0	0	0	0	0	0	0
+Mir32	48	19	13	55	36	29	46	28
+Mir320	182	182	165	643	106	80	113	180
+Mir322	261	1359	1130	2549	228	91	224	1232
+Mir323	0	0	0	0	0	0	0	0
+Mir324	10	42	30	98	5	16	15	32
+Mir325	0	0	0	0	0	0	0	0
+Mir326	28	12	12	34	13	17	11	17
+Mir328	304	399	274	549	151	125	194	366
+Mir329	0	2	3	7	2	0	1	3
+Mir33	36	4	8	17	16	10	22	5
+Mir330	25	31	27	70	16	17	19	26
+Mir331	49	54	40	98	35	17	23	43
+Mir335	138	185	203	286	101	72	138	195
+Mir337	7	10	7	14	5	0	2	5
+Mir338	61	62	54	90	52	13	53	84
+Mir339	144	38	37	105	87	71	65	52
+Mir340	1203	288	238	1058	738	1380	755	246
+Mir341	2	1	2	2	0	2	0	1
+Mir343	0	0	0	0	0	0	0	0
+Mir344	0	0	0	0	0	0	0	0
+Mir344-2	0	0	0	0	0	0	0	0
+Mir344b	0	0	0	1	0	0	0	0
+Mir344c	0	0	0	0	0	0	0	0
+Mir344d-1	0	0	0	0	0	0	0	0
+Mir344d-2	0	0	0	0	0	0	0	0
+Mir344d-3	0	0	0	0	0	0	0	0
+Mir344e	0	0	0	0	0	0	0	0
+Mir344f	0	0	0	0	0	0	0	0
+Mir344g	0	0	0	0	0	0	0	0
+Mir345	176	125	119	273	76	83	76	114
+Mir346	0	0	0	0	0	1	0	0
+Mir3470a	23	5	1	5	2	19	5	1
+Mir3470b	46	0	4	0	27	36	19	0
+Mir3471-1	56	57	56	162	30	39	32	37
+Mir3473	1	1	1	0	1	0	1	1
+Mir3473c	0	0	0	0	0	0	0	0
+Mir3473d	0	0	0	0	0	0	0	0
+Mir3474	0	0	0	0	0	0	0	0
+Mir3475	0	0	0	0	0	0	0	0
+Mir34a	12	25	27	61	6	10	11	28
+Mir34b	3	8	6	31	0	0	0	6
+Mir34c	5	30	21	611	2	6	3	37
+Mir350	26	36	17	57	8	8	7	13
+Mir351	729	848	687	1031	591	314	745	747
+Mir3572	0	0	0	1	0	0	0	0
+Mir362	40	15	9	34	26	5	26	14
+Mir363	4	0	2	0	0	1	6	0
+Mir365-1	0	0	0	0	0	0	0	0
+Mir365-2	10	0	0	4	4	4	3	0
+Mir367	0	0	0	0	0	0	0	0
+Mir369	5	1	1	10	4	0	2	3
+Mir370	0	0	0	0	0	0	0	1
+Mir374	76	28	27	32	32	37	49	42
+Mir374c	76	28	27	32	32	37	49	42
+Mir375	46	1	1	1	27	26	21	0
+Mir376a	0	1	1	1	0	0	1	1
+Mir376b	16	2	4	11	5	1	0	3
+Mir376c	2	0	0	0	0	0	1	0
+Mir377	0	1	0	1	2	0	0	4
+Mir378	138	608	565	1901	90	123	106	544
+Mir378b	0	0	3	5	0	0	0	0
+Mir379	20	24	23	51	7	5	4	19
+Mir380	1	1	0	0	0	0	0	1
+Mir381	60	28	27	71	20	24	15	18
+Mir382	2	1	1	4	1	1	1	1
+Mir383	0	0	0	1	0	0	0	0
+Mir384	0	1	0	2	0	0	0	1
+Mir3960	0	0	0	0	0	0	0	0
+Mir3962	0	0	0	0	0	0	0	0
+Mir3963	0	0	0	0	0	0	0	0
+Mir3964	0	0	0	0	0	0	0	0
+Mir3965	0	0	0	0	0	0	0	0
+Mir3966	0	0	0	0	0	0	0	0
+Mir3967	0	0	0	0	0	0	0	0
+Mir3968	0	1	0	0	0	1	0	0
+Mir3969	0	0	0	0	0	0	0	0
+Mir3970	0	0	0	0	0	0	0	0
+Mir3971	0	0	0	0	0	0	0	0
+Mir409	26	13	8	28	14	8	8	9
+Mir410	45	24	33	47	21	9	12	17
+Mir411	514	205	226	599	202	79	119	252
+Mir412	0	0	0	0	0	0	0	0
+Mir421	0	0	0	0	0	0	0	0
+Mir423	1203	665	425	1822	1016	351	983	532
+Mir425	308	139	111	323	234	95	246	127
+Mir429	265	3	1	3	82	41	101	3
+Mir431	9	6	5	12	1	0	0	3
+Mir432	0	0	0	0	0	0	0	0
+Mir433	0	1	2	5	0	0	0	9
+Mir434	162	66	56	161	65	13	44	56
+Mir448	0	0	0	0	0	0	0	0
+Mir449a	0	0	1	3	0	0	0	1
+Mir449b	0	0	0	0	0	0	0	0
+Mir449c	0	0	1	0	0	0	0	0
+Mir450-1	0	0	0	0	0	0	0	0
+Mir450-2	0	0	0	0	0	0	2	0
+Mir450b	17	34	27	67	19	4	14	23
+Mir451	3346	2299	1479	5278	2093	2330	4863	2146
+Mir452	0	0	0	1	0	0	0	0
+Mir453	0	0	0	0	0	0	0	0
+Mir455	235	23	18	60	197	107	237	18
+Mir463	2	0	0	0	3	1	1	0
+Mir465	3	0	0	0	1	0	0	0
+Mir465b-1	0	0	0	0	0	0	0	0
+Mir465b-2	0	0	0	0	0	0	0	0
+Mir465c-1	0	0	0	0	0	0	0	0
+Mir465c-2	0	0	0	0	0	0	0	0
+Mir466	0	0	0	0	0	0	0	0
+Mir4660	7	1	3	1	0	10	1	3
+Mir466b-2	0	0	0	0	0	0	0	0
+Mir466b-3	0	0	0	0	0	0	0	0
+Mir466d	0	0	0	0	0	2	1	1
+Mir466f-1	0	1	1	0	0	0	0	0
+Mir466f-2	0	0	1	0	0	0	2	0
+Mir466f-3	53	2	1	3	4	63	6	2
+Mir466g	24	2	1	0	2	9	0	0
+Mir466h	0	0	0	0	0	0	0	0
+Mir466i	0	0	0	0	0	0	0	0
+Mir466n	23	3	1	0	4	28	1	4
+Mir467a-1	0	0	0	0	0	0	0	0
+Mir467a-10	0	0	0	0	0	0	0	0
+Mir467a-2	0	0	0	0	0	0	0	0
+Mir467a-3	0	0	0	0	0	0	0	0
+Mir467a-4	0	0	0	0	0	0	0	0
+Mir467a-5	0	0	0	0	0	0	0	0
+Mir467a-6	0	0	0	0	0	0	0	0
+Mir467a-7	0	0	0	0	0	0	0	0
+Mir467a-8	0	0	0	0	0	0	0	0
+Mir467a-9	0	0	0	0	0	0	0	0
+Mir467b	0	0	0	0	0	0	0	0
+Mir467c	12	1	0	1	3	14	3	1
+Mir467d	0	5	2	11	0	1	4	4
+Mir467e	0	0	0	0	0	0	0	0
+Mir467f	0	0	0	2	0	0	0	0
+Mir468	0	0	0	0	0	0	0	0
+Mir470	41	1	1	0	33	34	47	0
+Mir471	0	0	0	0	0	1	0	0
+Mir483	0	1	2	2	0	0	0	2
+Mir484	285	268	224	422	224	101	288	240
+Mir485	1	1	0	7	2	0	0	2
+Mir486	789	2612	2768	3959	621	2005	1564	2555
+Mir487b	0	0	1	2	0	0	1	0
+Mir488	1	26	6	34	1	1	0	9
+Mir489	0	0	0	0	0	0	0	0
+Mir490	3	353	311	750	1	0	1	322
+Mir491	0	1	1	1	0	1	1	0
+Mir493	0	1	0	0	0	0	0	0
+Mir494	0	0	0	0	0	0	0	1
+Mir495	1	1	2	2	0	0	0	1
+Mir496	4	2	0	2	2	0	2	1
+Mir497	66	198	182	195	47	27	48	200
+Mir499	0	869	730	4147	0	0	0	781
+Mir500	10	5	4	13	7	1	2	5
+Mir501	72	62	36	8	66	29	88	34
+Mir503	7	12	16	23	6	7	4	13
+Mir504	0	12	6	34	0	0	0	17
+Mir5046	0	0	0	0	0	0	0	0
+Mir505	3	2	1	1	2	2	4	1
+Mir509	0	0	0	0	0	0	0	0
+Mir5097	0	0	0	0	0	0	0	0
+Mir5098	0	0	0	0	0	0	0	0
+Mir5100	6	1	1	2	1	1	4	2
+Mir5101	0	0	0	1	0	0	0	0
+Mir5103	0	0	0	1	0	0	0	0
+Mir5104	0	0	0	0	0	0	0	0
+Mir5106	0	0	0	0	0	0	0	0
+Mir5107	1	0	0	1	0	0	1	0
+Mir5108	0	0	0	0	0	0	0	0
+Mir5109	548	29	12	106	40	478	46	23
+Mir511	57	7	9	16	35	19	36	4
+Mir5112	0	0	0	0	0	0	0	0
+Mir5113	2	1	0	1	0	2	1	1
+Mir5114	2	0	2	1	0	0	1	0
+Mir5115	0	0	0	0	0	0	0	0
+Mir5116	0	0	0	0	0	2	0	0
+Mir5117	22	11	21	39	16	14	7	23
+Mir5119	0	0	0	0	0	0	0	0
+Mir5120	0	0	0	0	0	0	0	0
+Mir5121	8	1	1	5	11	7	4	0
+Mir5122	6	3	2	2	4	1	4	3
+Mir5123	0	0	0	0	0	0	0	0
+Mir5124	0	0	0	0	0	0	0	0
+Mir5125	0	0	1	0	0	0	0	0
+Mir5126	0	0	0	0	0	0	0	0
+Mir5127	0	0	0	0	0	0	0	0
+Mir5128	7	0	0	2	0	8	1	2
+Mir5129	0	0	1	1	1	1	2	2
+Mir5130	0	0	0	1	0	1	0	0
+Mir5131	1	0	0	0	0	0	1	0
+Mir5132	0	0	0	1	0	0	1	1
+Mir5133	0	0	0	0	0	0	2	0
+Mir5134	0	0	0	0	0	0	0	0
+Mir5135	1	0	0	0	0	1	0	0
+Mir5136	0	0	0	0	0	0	0	0
+Mir532	612	227	235	434	332	528	384	258
+Mir539	0	0	0	0	0	0	0	0
+Mir540	4	2	4	8	2	0	0	5
+Mir541	483	121	124	320	188	48	123	146
+Mir542	20	23	32	75	15	23	15	22
+Mir543	0	0	1	0	0	0	0	0
+Mir544	0	0	0	0	0	0	0	0
+Mir546	0	0	0	0	0	0	0	0
+Mir547	0	15	8	10	0	0	0	9
+Mir551b	4	0	0	0	2	1	3	0
+Mir568	0	0	0	0	0	0	0	0
+Mir574	0	0	1	0	0	0	0	0
+Mir582	4	383	36	103	2	4	5	29
+Mir592	28	1	0	0	15	8	18	0
+Mir598	8	2	2	11	8	2	6	5
+Mir599	0	0	0	0	0	0	0	0
+Mir615	3	0	0	0	0	0	0	0
+Mir653	2	0	0	2	6	3	1	1
+Mir654	0	0	0	0	0	0	0	0
+Mir664	75	79	63	156	53	38	70	98
+Mir665	0	0	0	1	0	0	0	0
+Mir666	0	2	2	1	0	0	1	3
+Mir667	2	0	1	0	1	0	0	2
+Mir668	1	4	2	5	0	0	0	3
+Mir669a-1	3	2	0	2	2	1	1	3
+Mir669a-10	0	1	0	0	0	0	0	2
+Mir669a-11	0	1	0	0	0	0	0	2
+Mir669a-12	0	1	0	0	0	0	0	2
+Mir669a-2	0	0	0	0	0	0	0	0
+Mir669a-3	0	0	0	0	0	0	0	0
+Mir669a-4	0	1	0	0	0	0	0	2
+Mir669a-5	0	1	0	0	0	0	0	2
+Mir669a-6	0	1	0	0	0	0	0	2
+Mir669a-7	0	1	0	0	0	0	0	2
+Mir669a-8	0	1	0	0	0	0	0	2
+Mir669a-9	0	1	0	0	0	0	0	2
+Mir669b	0	0	2	1	0	0	0	0
+Mir669c	0	0	0	0	0	0	0	0
+Mir669e	2	0	1	1	1	4	4	0
+Mir669g	0	0	0	0	0	0	0	0
+Mir669h	0	0	0	0	0	0	0	1
+Mir669i	0	0	0	0	0	0	0	0
+Mir669j	0	0	0	0	0	0	0	0
+Mir669k	0	0	0	0	0	0	0	0
+Mir669m-1	0	0	3	0	0	0	0	0
+Mir669m-2	0	0	0	0	0	0	0	0
+Mir669p-1	0	1	0	0	0	0	0	2
+Mir669p-2	0	1	0	0	0	0	0	2
+Mir670	0	0	0	0	0	0	0	0
+Mir671	169	83	61	161	157	137	149	56
+Mir672	2	0	0	1	0	0	0	2
+Mir673	6	8	6	11	3	4	3	10
+Mir674	25	69	44	132	22	11	37	52
+Mir675	0	1	1	0	0	0	0	0
+Mir676	188	146	100	364	136	143	148	138
+Mir677	14	16	12	17	6	11	12	6
+Mir678	0	0	0	0	0	0	0	0
+Mir679	0	0	0	0	2	0	0	1
+Mir680-2	50	2	6	4	17	45	9	1
+Mir680-3	0	0	0	0	0	0	0	0
+Mir681	0	0	0	0	0	0	0	0
+Mir682	0	0	0	0	0	0	0	0
+Mir683-1	0	0	0	0	0	0	0	0
+Mir683-2	0	0	0	0	0	0	0	0
+Mir684-1	0	0	0	0	0	0	0	0
+Mir684-2	0	0	0	0	0	0	0	0
+Mir686	0	0	0	0	0	0	0	0
+Mir687	0	0	0	0	0	0	0	0
+Mir688	1	0	0	0	0	0	0	0
+Mir690	0	0	0	0	0	0	0	0
+Mir691	0	0	0	0	0	0	0	0
+Mir692-1	0	0	0	0	0	0	0	1
+Mir693	0	0	0	0	0	0	0	0
+Mir694	0	0	0	1	0	0	0	0
+Mir695	0	0	0	0	0	0	0	0
+Mir697	0	0	0	0	0	0	0	0
+Mir698	0	0	0	0	0	0	0	0
+Mir7-1	10	13	10	17	12	10	13	11
+Mir7-2	0	0	0	0	0	0	0	0
+Mir700	5	32	51	31	6	2	10	40
+Mir701	0	2	2	0	0	0	0	0
+Mir702	3	2	1	4	0	2	0	0
+Mir703	0	0	0	0	0	0	0	0
+Mir704	2	0	0	0	1	2	2	0
+Mir705	0	0	0	0	0	0	0	0
+Mir706	0	0	0	0	0	0	0	0
+Mir707	0	0	0	0	0	0	0	0
+Mir708	1	6	0	7	1	0	0	1
+Mir709	0	0	0	0	0	0	0	0
+Mir710	0	0	0	0	0	0	0	0
+Mir711	0	0	0	0	0	0	0	0
+Mir713	0	0	0	0	0	0	0	0
+Mir717	0	0	0	0	0	0	0	0
+Mir718	0	0	0	0	0	0	0	0
+Mir719	0	0	0	0	0	0	0	0
+Mir721	0	0	0	0	0	0	0	0
+Mir741	10	0	0	0	11	4	10	1
+Mir742	0	0	0	0	0	0	0	0
+Mir743	1	0	0	0	0	0	0	0
+Mir743b	3	0	0	0	1	1	2	0
+Mir744	439	148	132	510	320	187	322	117
+Mir758	0	1	0	0	2	0	0	0
+Mir759	0	0	0	0	0	0	0	0
+Mir760	1	0	1	0	0	0	0	0
+Mir761	0	0	0	0	0	0	0	0
+Mir762	0	0	0	0	0	0	0	0
+Mir764	0	0	0	0	0	0	0	0
+Mir767	0	0	0	0	0	0	0	0
+Mir770	0	0	0	0	0	0	0	0
+Mir7b	0	0	0	1	0	0	0	0
+Mir802	552	0	0	0	401	209	352	0
+Mir804	0	0	0	0	0	0	0	0
+Mir871	82	3	1	1	81	29	93	0
+Mir872	182	72	66	164	124	65	118	68
+Mir873	0	1	0	0	0	0	0	0
+Mir874	77	45	46	39	66	36	87	43
+Mir875	0	0	0	0	0	0	0	0
+Mir876	0	0	0	0	0	0	0	0
+Mir877	6	3	4	5	7	1	11	8
+Mir878	3	0	0	0	1	5	4	0
+Mir879	3	3	1	6	1	2	1	2
+Mir880	0	0	0	0	0	1	3	0
+Mir881	14	0	0	0	8	13	29	0
+Mir882	0	0	0	0	0	0	0	0
+Mir883a	1	0	0	0	0	0	0	0
+Mir883b	0	0	0	0	0	0	0	0
+Mir9-1	0	0	0	0	0	0	0	0
+Mir9-2	0	0	0	0	0	0	0	0
+Mir9-3	0	0	0	0	0	0	0	0
+Mir92-1	32320	7428	6690	16161	24182	24855	25904	7910
+Mir92-2	766	275	195	274	524	307	655	242
+Mir92b	50	32	27	60	12	9	14	33
+Mir93	1530	647	480	1397	939	691	1194	602
+Mir96	10	0	0	0	6	1	7	0
+Mir98	542	407	354	1512	256	305	374	390
+Mir99a	1194	4059	3196	2976	937	468	1037	3708
+Mir99b	2542	10307	6673	2801	2017	1131	2339	7276
+Mira	0	0	0	0	0	0	0	0
+Mirg	565	164	166	414	234	65	147	185
+Mirlet7a-1	83	29	24	89	58	36	68	32
+Mirlet7a-2	35	12	12	37	17	15	18	12
+Mirlet7b	1276	1343	1028	2983	786	655	812	1129
+Mirlet7c-1	74	69	51	151	41	45	50	55
+Mirlet7c-2	154	75	72	218	88	75	97	82
+Mirlet7d	2117	2083	1725	5400	1315	797	1470	1940
+Mirlet7e	114	233	160	648	76	64	85	196
+Mirlet7f-1	107	97	74	205	78	79	69	70
+Mirlet7f-2	2424	746	670	3360	1668	2325	2093	747
+Mirlet7g	7561	2760	2343	10488	4736	2670	5047	2547
+Mirlet7i	2525	3013	2408	9794	1507	2235	1991	2769
+Mllt10	22	4	4	2	4	26	10	4
+Mospd4	0	0	0	0	0	0	0	0
+Mphosph9	4	0	0	0	1	0	1	1
+Mrpl15	4	1	2	1	1	4	1	2
+Mrpl48	3	2	1	0	1	1	3	0
+Msx1as	0	0	0	0	0	0	0	0
+Mtag2	0	0	0	0	0	0	0	0
+Mtf2	9	1	0	3	0	1	0	1
+Mtfr1	10	0	1	1	2	22	4	0
+Mthfr	1	0	0	1	0	1	0	0
+Mtmr2	20	67	71	276	15	43	27	61
+Mug-ps1	24	0	0	0	0	7	0	0
+Mvd	0	0	0	0	0	0	0	0
+Mx1	0	0	0	0	0	0	0	0
+Mx2	0	0	0	0	0	0	0	0
+Myeov2	3	0	0	1	0	1	0	0
+Nagpa	6	1	0	1	5	7	4	0
+Ncaph2	14	1	0	0	5	16	1	2
+Ncrna00086	0	0	0	0	0	0	0	0
+Nctc1	0	1	0	0	0	0	0	0
+Ndufs6	3	0	0	1	0	5	0	1
+Neat1	21	5	7	4	1	14	7	6
+Nespas	0	1	0	0	0	0	0	0
+Ngrn	1	0	1	0	1	0	1	0
+Nip7	0	0	0	0	0	3	0	0
+Nkx2-2as	0	0	0	0	0	0	0	0
+Nkx6-2	0	1	2	1	1	0	0	0
+Nlrp1c-ps	0	0	0	0	0	0	0	0
+Nlrp5-ps	5	0	0	0	1	25	3	0
+Nnt	35	11	10	7	0	44	6	8
+Nol8	6	0	0	2	0	4	0	2
+Npff	0	0	0	0	0	0	0	0
+Nphs1as	0	0	0	0	0	0	0	0
+Npm3-ps1	0	0	0	0	0	0	0	0
+Nron	0	0	0	0	0	0	0	0
+Nt5c2	7	1	0	3	3	11	0	1
+Numb	20	4	2	6	8	30	8	2
+Nup88	3	1	1	3	0	7	0	0
+Nutf2-ps1	0	0	0	1	0	1	0	0
+Oas1b	0	0	1	0	0	2	0	0
+Oaz1-ps	5	2	6	2	11	7	4	4
+Olfr1077-ps1	0	0	0	0	0	0	0	0
+Olfr1300-ps1	0	0	0	0	0	0	0	0
+Olfr1372-ps1	0	0	0	0	0	0	0	0
+Olfr29-ps1	0	0	0	0	0	0	0	0
+Olfr421-ps1	0	0	0	0	0	0	0	0
+Olfr75-ps1	0	0	0	0	0	0	0	0
+Olfr856-ps1	0	0	0	1	0	1	0	0
+Olfr947-ps1	0	0	0	0	0	0	0	0
+Oprl1	0	0	0	0	0	0	0	0
+Orc4	1	2	0	1	1	4	0	0
+Orc6	1	1	0	0	1	1	1	0
+Osbpl1a	9	0	2	1	1	36	0	3
+Otub2	0	0	0	0	0	2	1	0
+Otx2os1	1	0	1	0	0	0	0	0
+Oxsr1	9	1	1	1	0	10	1	1
+Pafah1b1	8	3	3	2	0	16	4	4
+Parp6	8	0	2	4	0	8	2	0
+Patz1	0	0	0	2	0	0	0	0
+Pax6os1	0	0	0	0	0	0	0	0
+Pcdh11x	2	0	0	0	0	0	0	0
+Pdxk-ps	0	0	0	0	0	0	0	0
+Pea15b	0	0	0	0	0	0	0	0
+Peg13	3	0	1	1	0	4	0	2
+Peg3as	0	0	0	0	0	0	0	0
+Pex11b	4	0	0	2	0	4	0	0
+Pex16	12	0	0	1	2	7	8	0
+Pfkfb2	3	1	3	3	0	8	1	2
+Pglyrp2	12	0	0	0	0	15	0	0
+Phc1	0	0	0	0	0	1	0	0
+Phf21b	0	0	1	0	0	0	0	0
+Phxr4	0	0	0	0	0	0	0	0
+Phyhd1	5	0	0	0	1	12	2	0
+Pinc	0	1	0	1	0	0	0	1
+Pisd-ps1	0	0	0	0	0	0	0	0
+Pisd-ps2	0	0	0	1	0	0	0	0
+Pisd-ps3	4	1	1	2	0	5	2	0
+Pitpnm1	1	0	0	0	0	0	0	0
+Pknox1	6	0	0	0	2	7	1	0
+Pla2g2a	0	0	0	0	0	0	0	0
+Plcxd1	1	0	0	1	0	0	0	0
+Pldi	0	0	0	0	0	0	0	0
+Plk4	0	0	0	0	0	1	0	0
+Plscr3	1	0	1	1	1	0	0	0
+Pnpla2	10	4	1	1	1	8	5	2
+Polg2	0	0	0	0	2	2	0	0
+Ppargc1a	3	1	2	3	0	8	1	0
+Ppifos	3	0	0	2	0	6	0	4
+Ppp1r12b	0	0	2	0	0	1	0	0
+Ppp1r2-ps3	0	0	0	0	0	0	0	0
+Ppp1r2-ps7	0	0	0	0	0	0	0	0
+Ppp1r2-ps9	0	0	0	0	0	0	0	0
+Ppp2r2b	0	0	1	0	0	0	0	1
+Ppp2r3d	2	0	0	0	0	0	0	0
+Ppp4r1l-ps	2	0	0	1	0	5	0	0
+Pradc1	0	0	1	0	2	4	0	0
+Pram1	0	0	0	0	0	1	0	0
+Prl8a6	0	0	0	0	0	0	0	0
+Prmt1	5	1	0	2	0	2	0	0
+Prmt6	2	0	0	0	1	0	0	0
+Proc	28	0	0	0	2	50	3	0
+Prr18	0	0	0	0	0	0	0	0
+Prr3	0	0	0	0	0	0	0	0
+Psg-ps1	0	0	0	0	0	0	0	0
+Psmd2	19	2	0	3	0	29	3	2
+Pum2	16	1	4	2	0	26	2	1
+Pvt1	2	1	0	0	1	2	1	1
+R74862	5	0	0	1	2	3	2	2
+Rabggtb	5253	774	579	1602	3493	3501	3690	643
+Rad51d	28	8	4	12	8	28	4	0
+Ralgps2	15	1	2	0	1	10	1	0
+Ranbp3	10	0	2	0	2	5	1	1
+Rasgrp4	0	0	1	0	0	0	0	0
+Raver1-fdx1l	12	0	0	2	0	15	2	1
+Rbbp8	4	2	0	0	2	8	0	2
+Rbm18	1	2	4	0	0	3	2	0
+Rbm7	2	2	0	3	0	5	2	0
+Rbmx	48	17	9	75	33	33	12	13
+Rcbtb2	9	0	2	1	1	10	3	3
+Rchy1	4	0	1	0	1	4	1	0
+Rdh18-ps	0	0	0	0	0	2	0	0
+Rgag4	0	0	0	0	0	0	0	0
+Rhno1	0	0	2	0	0	2	0	0
+Rian	17	12	5	29	6	7	2	10
+Rit1	4	1	1	0	0	2	0	0
+Rmi1	1	1	0	1	0	4	1	0
+Rmrp	601	278	192	679	452	220	484	272
+Rmst	1	1	5	0	0	1	0	2
+Rn4.5s	0	0	0	0	0	0	0	0
+Rn45s	126292	30052	33600	12266	20627	87267	20102	30198
+Rnf126	2	1	0	0	1	1	0	0
+Rnf44	32	2	2	2	0	46	4	0
+Rnu11	104	8	12	30	11	116	8	8
+Rnu12	93	8	8	11	5	66	13	8
+Rnu6	0	0	0	0	0	0	0	0
+Rnu7	0	0	0	0	0	0	0	0
+Rnu73b	18	2	3	3	2	8	5	3
+Rpl22	14	2	0	4	0	14	4	2
+Rplp2-ps1	0	0	0	0	0	1	0	1
+Rpph1	125	10	15	40	48	103	74	15
+Rprl1	0	0	0	0	0	0	0	0
+Rprl2	0	0	0	0	0	0	0	0
+Rprl3	5	1	1	0	0	0	1	0
+Rps15a-ps4	0	0	0	0	0	0	0	0
+Rps15a-ps6	0	0	0	0	0	0	0	0
+Rps19-ps3	0	0	0	0	0	0	0	0
+Rps27	1	0	0	0	0	0	2	0
+Rps4y2	0	0	0	0	1	1	0	0
+Rreb1	46	3	4	9	3	42	4	2
+Rtel1	1	0	1	0	0	2	0	0
+Rubie	0	0	0	0	0	0	0	0
+Runx2	0	3	2	5	3	0	1	4
+Samd7	0	0	0	1	0	0	0	0
+Sapcd1	0	1	0	0	0	0	0	0
+Scarna10	7	0	2	5	3	4	1	1
+Scarna13	4	1	0	0	0	2	3	0
+Scarna17	2377	331	306	398	1752	1971	1752	337
+Scarna2	9	2	0	8	0	6	5	2
+Scarna3a	272	148	109	300	196	337	243	137
+Scarna3b	525	146	134	452	386	589	431	121
+Scarna6	589	90	88	224	500	317	495	95
+Scarna8	0	0	1	2	2	1	3	0
+Scarna9	21	10	5	3	7	8	8	5
+Scgb2b23-ps	0	0	0	0	0	0	0	0
+Schip1	0	6	6	1	0	1	0	3
+Scnn1b	0	20	5	11	0	0	0	9
+Sec14l1	0	1	0	2	0	0	0	1
+Sec16b	22	0	0	1	0	31	3	0
+Sec23b	1	1	0	0	0	5	0	0
+Sema6c	0	0	0	0	3	0	0	0
+Senp2	3	0	0	0	0	5	0	0
+Serp2	0	0	2	0	0	0	0	1
+Serpina3h	0	0	0	0	0	0	0	0
+Serpina4-ps1	145	0	0	0	19	117	14	0
+Sfpq	11	3	3	2	0	20	2	1
+Sgsm1	0	0	0	0	2	2	0	0
+Sh2d3c	2	2	3	1	0	2	1	2
+Six3os1	0	0	0	0	0	0	0	8
+Slc12a4	3	0	2	1	1	1	0	0
+Slc22a13b-ps	0	0	0	0	0	1	0	0
+Slc25a43	0	4	0	0	0	0	0	0
+Slc25a44	22	2	1	3	3	33	11	2
+Slc2a4rg-ps	0	0	0	0	0	0	2	0
+Slc35c2	2	0	0	0	0	3	0	0
+Slfn10-ps	0	0	0	0	0	0	0	0
+Slx1b	0	0	0	0	0	3	0	0
+Smarca5-ps	0	0	0	0	0	0	0	0
+Smim4	1	0	1	0	0	0	0	1
+Smok4a	0	0	0	0	0	0	0	0
+Smpx	0	0	0	2	0	0	0	2
+Snapc4	1	0	0	1	0	7	0	0
+Snhg1	8185	2277	1889	5095	5790	6478	5840	2283
+Snhg10	4	1	0	0	0	2	3	0
+Snhg12	1273	233	180	1043	811	922	743	198
+Snhg3	28	9	2	10	6	18	18	3
+Snhg4	7	4	6	11	3	3	3	10
+Snhg5	1	3	1	2	2	0	2	2
+Snhg6	390	145	138	191	236	256	215	191
+Snhg7	34	4	3	15	15	82	13	7
+Snhg8	42	7	5	14	36	19	33	8
+Snhg9	5	2	0	5	0	4	2	4
+Snora15	0	0	0	0	0	0	0	0
+Snora16a	121	12	16	75	44	113	70	13
+Snora17	32	3	3	12	9	82	8	6
+Snora19	0	0	0	0	0	0	0	0
+Snora20	4	1	0	3	1	7	2	0
+Snora21	3	2	0	3	4	4	3	1
+Snora23	8	0	0	1	0	5	0	0
+Snora24	42	7	5	14	33	19	32	8
+Snora26	6	0	1	0	2	1	2	1
+Snora28	25	3	5	5	7	13	8	5
+Snora2b	1	0	0	1	0	0	0	0
+Snora3	14	0	2	5	20	13	9	6
+Snora30	0	0	0	0	0	0	0	1
+Snora31	57	38	38	36	10	81	25	35
+Snora33	2	0	0	0	0	0	0	0
+Snora34	3	2	3	2	5	7	1	3
+Snora35	0	0	0	0	0	0	0	0
+Snora36b	76	79	63	156	53	38	70	98
+Snora41	90	32	20	85	38	25	85	19
+Snora43	1	1	0	3	2	0	0	0
+Snora44	159	76	73	81	82	107	88	58
+Snora47	4	1	1	2	1	2	1	1
+Snora52	24	4	4	13	16	23	13	8
+Snora5c	0	0	0	0	0	0	0	0
+Snora61	50	10	5	23	21	24	20	11
+Snora62	5	0	0	2	0	4	6	0
+Snora64	18	0	0	5	7	15	1	1
+Snora65	24	3	6	2	11	17	14	6
+Snora68	37	10	5	48	23	38	38	14
+Snora69	6	1	0	7	4	10	3	2
+Snora70	1	0	0	0	0	1	2	0
+Snora74a	7	2	5	11	0	2	2	7
+Snora75	4	0	0	3	0	2	0	1
+Snora78	5	2	0	5	0	4	2	4
+Snora7a	30	1	4	7	2	26	9	1
+Snora81	11	0	1	5	0	3	0	2
+Snord100	197	69	56	160	134	160	155	75
+Snord104	9351	886	720	2493	5610	7452	6017	929
+Snord11	150	8	14	47	59	53	54	14
+Snord110	443	266	226	297	338	266	373	262
+Snord111	23	6	4	13	14	10	6	6
+Snord116	0	0	0	0	0	0	0	0
+Snord116l1	0	0	0	0	0	0	0	0
+Snord116l2	0	0	0	0	0	0	0	0
+Snord118	0	0	0	0	0	0	0	0
+Snord12	534	115	104	602	380	354	356	121
+Snord123	10	16	11	42	2	6	6	9
+Snord14a	0	0	0	0	0	0	0	0
+Snord14c	0	0	0	0	0	0	0	0
+Snord14d	0	0	0	0	0	0	0	0
+Snord15a	20	4	3	5	10	9	4	2
+Snord15b	63	26	16	24	24	25	34	7
+Snord16a	136	5	5	29	24	130	30	9
+Snord17	326	116	78	148	228	85	269	110
+Snord19	366	148	118	333	314	465	338	121
+Snord1a	62	7	9	27	54	32	31	8
+Snord1b	14	3	4	4	2	5	3	2
+Snord1c	0	0	0	0	0	0	0	0
+Snord2	914	320	248	479	582	504	625	282
+Snord22	15	9	2	19	6	6	5	7
+Snord23	28	2	0	7	4	36	6	0
+Snord32a	505	164	116	501	394	378	418	170
+Snord33	649	189	195	310	598	709	602	190
+Snord34	34	4	3	13	21	15	19	1
+Snord35a	25	8	6	7	23	39	18	5
+Snord35b	5	3	1	0	1	2	3	0
+Snord37	134	39	32	89	113	74	80	44
+Snord38a	54	9	11	37	42	34	53	15
+Snord42a	61	93	100	30	31	20	35	68
+Snord42b	227	70	66	88	229	137	195	83
+Snord43	666	121	120	542	444	504	438	140
+Snord45b	620	98	72	138	458	244	499	70
+Snord45c	323	57	49	190	212	322	212	62
+Snord47	120	5	8	29	31	49	25	10
+Snord49a	232	84	51	256	151	120	145	75
+Snord49b	393	62	57	216	245	123	294	95
+Snord4a	324	50	39	155	196	165	191	31
+Snord52	4584	654	591	753	3716	3171	3941	649
+Snord53	65	21	11	57	50	23	51	12
+Snord55	462	124	101	450	309	255	250	119
+Snord57	1737	785	744	2031	1351	1445	1388	787
+Snord58b	46	85	81	3	44	29	49	57
+Snord61	46	16	8	75	31	32	12	13
+Snord64	24	22	19	48	13	19	35	17
+Snord65	29	74	90	8	17	19	15	68
+Snord66	884	267	281	340	693	807	696	244
+Snord67	39	4	1	17	18	13	11	5
+Snord68	1644	460	353	1060	1295	805	1310	376
+Snord69	440	157	105	401	341	407	333	117
+Snord7	6	1	0	1	0	0	0	2
+Snord70	23	6	11	16	10	6	14	6
+Snord71	93	20	20	38	51	26	64	29
+Snord72	159	21	24	57	102	123	101	16
+Snord73a	29	3	3	7	6	9	2	5
+Snord8	10	1	3	4	4	6	2	2
+Snord82	47	17	14	19	19	40	18	17
+Snord83b	48	22	12	35	22	34	32	16
+Snord85	3804	911	737	1422	3047	1133	3156	882
+Snord87	390	145	138	190	235	255	215	191
+Snord88a	96	69	73	77	62	101	59	52
+Snord88c	74	29	22	35	41	65	52	23
+Snord89	13	2	2	3	2	8	3	3
+Snord90	43	2	3	46	14	48	10	5
+Snord91a	363	40	29	81	256	358	285	25
+Snord92	23	9	5	17	8	29	7	8
+Snord93	45	54	50	161	29	34	29	33
+Snord95	708	217	195	326	483	675	444	210
+Snord96a	145	16	22	56	71	106	59	12
+Snord98	74	44	24	150	77	96	56	32
+Snord99	931	126	80	847	655	668	555	108
+Sox2ot	0	1	0	1	0	0	0	0
+Speer1-ps1	0	0	0	0	0	0	0	0
+Speer5-ps1	0	0	0	0	0	0	0	0
+Speer6-ps1	0	0	0	0	0	0	0	0
+Speer7-ps1	0	0	0	0	0	0	0	0
+Speer8-ps1	0	0	0	0	0	0	0	0
+Speer9-ps1	1	0	0	0	0	0	0	0
+Spn-ps	0	0	0	0	0	0	0	0
+Spns1	5	0	0	1	1	1	0	1
+Sprr2g	0	0	0	0	0	0	0	0
+Sprr2j-ps	0	0	0	0	0	0	0	0
+Sqrdl	35	1	0	1	4	58	3	0
+Sra1	7	0	0	0	2	4	6	0
+Srsf3	7	2	8	2	11	9	14	4
+Srsf7	1	1	0	0	0	5	0	1
+Srsf9	1	2	0	1	0	7	0	3
+St18	0	0	0	0	0	0	0	0
+St5	7	3	0	1	2	7	2	2
+St7l	8	1	1	1	3	12	4	2
+Stap2	10	0	2	2	1	6	4	0
+Stmn1-rs1	0	0	0	0	0	0	0	0
+Stoml1	0	0	0	0	0	0	0	0
+Stxbp3b	0	0	0	0	0	0	0	0
+Surf1	3	0	0	2	3	7	5	0
+Suv39h2	0	0	0	0	0	0	0	0
+Svip	1	0	2	0	0	1	0	0
+Syce2	6	0	0	0	0	19	1	0
+Sycp1-ps1	0	0	0	0	0	0	0	0
+Szrd1	40	4	0	2	16	40	4	2
+Taf1b	1	1	1	0	0	0	0	0
+Taf1d	357	53	56	156	174	341	230	54
+Tardbp	18	0	1	3	7	20	3	0
+Tbrg3	1	1	0	0	0	0	0	0
+Tcp10a	0	0	0	0	0	0	0	0
+Terc	22	1	0	0	18	10	15	0
+Thap6	2	0	2	2	1	1	0	0
+Tk2	1	2	0	2	1	1	3	0
+Tmem161b	0	0	0	0	2	2	4	0
+Tmem179b	8	0	0	0	0	8	0	0
+Tmem181b-ps	0	0	0	0	0	0	0	0
+Tmem181c-ps	0	0	0	0	0	0	0	0
+Tmem194b	0	0	1	0	1	0	0	0
+Tmem205	35	2	0	1	4	57	6	1
+Tmem41a	7	0	0	0	0	5	2	0
+Tmem51as1	1	0	0	0	0	2	0	0
+Tmem80	0	0	0	1	1	0	0	0
+Tor2a	2	0	0	0	0	11	3	0
+Tpsab1	0	0	0	0	0	0	0	0
+Trappc13	1	0	0	1	0	0	3	1
+Trim30e-ps1	0	0	0	0	0	0	0	0
+Trim52	0	0	0	0	0	0	0	0
+Trmt61b	11	0	0	0	2	5	0	0
+Trpc4	1	4	1	1	0	0	1	0
+Trpt1	2	0	0	0	0	2	0	0
+Trub2	0	0	0	0	0	0	0	0
+Tsix	0	0	0	0	0	4	0	0
+Tslp	0	0	0	1	0	0	0	0
+Tspy-ps	0	0	0	0	0	0	0	0
+Tsr2	0	0	1	0	0	2	0	0
+Tubb2a-ps2	0	0	0	0	0	0	0	0
+Tubgcp4	2	2	0	1	0	7	1	0
+Tug1	18	3	0	16	2	27	6	6
+Tyms	0	0	0	0	0	0	1	1
+Tyms-ps	0	0	0	0	0	0	0	0
+Tysnd1	2	0	0	0	1	7	3	0
+Tyw5	1	1	0	0	0	0	0	1
+U05342	20	0	1	3	3	24	3	0
+U90926	0	0	0	0	0	0	0	0
+Ube2w	3	1	2	1	1	3	1	0
+Ubl4	3	1	0	1	0	5	3	2
+Ubxn11	0	0	0	0	0	0	0	0
+Uchl1as	0	0	0	0	0	0	0	1
+Ufd1l	0	0	1	0	0	6	0	0
+Uqcc	5	0	2	1	0	8	1	1
+Vash2	0	0	0	0	0	0	0	0
+Vaultrc5	243	258	161	383	159	262	286	270
+Vax2os	0	0	0	0	0	0	0	0
+Vmn1r-ps79	0	0	0	0	0	0	0	0
+Vmn2r-ps11	0	0	0	1	0	0	0	0
+Vmn2r-ps129	0	0	0	0	0	0	0	0
+Vmn2r-ps159	0	0	0	0	0	0	0	0
+Vmn2r-ps54	0	0	1	0	0	0	0	0
+Vmn2r-ps60	0	0	0	0	0	0	0	0
+Vmn2r29	2	0	0	0	0	0	0	0
+Vps39	3	1	0	0	0	8	0	0
+Vsig8	194	50	35	100	99	74	109	50
+Wac	15	0	0	0	2	15	2	2
+Wbscr25	0	2	1	0	0	1	0	0
+Wdr13	2	2	1	3	0	1	0	3
+Wdr73	4	0	0	0	0	2	1	0
+Wiz	10	0	1	6	1	3	3	2
+Wls	1	1	0	3	2	0	0	1
+Wwp1	40	0	2	2	4	56	10	4
+Xist	0	0	0	0	0	8	0	0
+Yaf2	2	0	0	0	0	6	0	2
+Yars2	1	0	0	0	1	1	0	0
+Yipf2	1	0	0	1	0	10	0	0
+Ythdf3	16	4	1	4	3	19	3	2
+Zbtb24	1	0	0	1	0	0	0	0
+Zc3h14	11	1	0	0	1	2	2	2
+Zc3h7a	336	148	60	20	17	99	14	60
+Zf12	0	0	0	0	0	0	0	0
+Zfa-ps	0	0	0	0	0	0	0	0
+Zfhx2as	0	0	0	0	0	1	0	0
+Zfp133-ps	0	0	0	0	0	0	0	0
+Zfp207	5	0	2	0	0	9	1	2
+Zfp326	7	2	1	1	0	4	4	0
+Zfp389	0	0	0	0	0	0	0	0
+Zfp410	10	0	2	0	0	6	2	0
+Zfp414	1	0	0	0	0	4	0	0
+Zfp57	0	0	0	0	0	0	0	0
+Zfp572	0	0	0	0	0	0	0	0
+Zfp672	0	0	0	0	0	2	0	0
+Zfp783	0	0	0	0	0	0	0	0
+Zfp809	7	1	0	0	0	4	2	0
+Zfp821	0	0	0	2	2	0	0	0
+Zfp862	4	0	0	0	0	10	2	0
+Zim3	0	0	0	0	0	0	0	0
+Zmynd8	3	5	4	4	3	8	2	1
+Znf41-ps	0	0	0	0	0	0	0	0
+Zp4-ps	0	0	0	0	0	0	0	0
+Zscan4a	0	0	0	0	0	0	0	0
+Zxda	0	0	0	0	0	0	0	0
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/rgedgeR/tool_dependencies.xml	Wed Jun 12 02:58:43 2013 -0400
@@ -0,0 +1,47 @@
+
+<?xml version="1.0"?>
+<!--
+blame Boris - Ross stole it from his old 2.15 one
+-->
+<tool_dependency>
+    <package name="readline" version="6.2">
+        <repository  name="package_readline_6_2" owner="boris" prior_installation_required="True" toolshed="http://testtoolshed.g2.bx.psu.edu/" />
+    </package>
+    <package name="package_R" version="3.0.1">
+        <install version="1.0">
+            <actions>
+                <action type="download_by_url">http://cran.ms.unimelb.edu.au/src/base/R-3/R-3.0.1.tar.gz</action>
+                <action type="set_environment_for_install">
+                    <repository name="package_readline_6_2" owner="boris" toolshed="http://testtoolshed.g2.bx.psu.edu/">
+                        <package name="readline" version="6.2" />
+                    </repository>
+                </action>
+                <action type="make_directory">$INSTALL_DIR</action>
+                <action type="shell_command">./configure --with-blas --with-lapack --enable-R-shlib --with-readline=no --with-x=no --prefix=$INSTALL_DIR &amp;&amp; make &amp;&amp; make install</action>
+                <action type="set_environment">
+                    <environment_variable action="set_to" name="R_HOME">$INSTALL_DIR/lib/R</environment_variable>
+                    <environment_variable action="set_to" name="R_LIBS">$INSTALL_DIR/lib/R/library</environment_variable>
+                    <environment_variable action="prepend_to" name="PATH">$INSTALL_DIR/lib/R/bin</environment_variable>
+
+                </action>
+            </actions>
+        </install>
+        <readme>R is a free software environment for statistical computing and graphics
+                WARNING: See custom compilation options above
+                Modified from an older version of R by Boris by Ross Lazarus for R 3.0
+                Added Bioc basics too
+       </readme>
+    </package>
+    <package name="package_BioCBasics" version="2.12">
+        <install version="1.0">
+            <actions>
+                <action type="shell_command">$INSTALL_DIR/lib/R/bin/R CMD BATCH installBioC.R </action>
+            </actions>
+        </install>
+        <readme>R is a free software environment for statistical computing and graphics
+                WARNING: See custom compilation options above
+                Modified from an older version of R by Boris by Ross Lazarus for R 3.0
+                Added Bioc basics via this package installBioC.R script
+       </readme>
+    </package>
+</tool_dependency>