Maybe further clarification will help. I have a software used for bioinformatics that reconstructs interaction networks, think genes for example. Briefly, points (or experiments) are randomly sampled from the original data set with replacement and assembled into new 'bootstrapped' data sets containing the same number of experiments as the original. The software is then applied to a large number of such pseudo-data sets to generate a set of bootstrap networks. A consensus network is then constructed that includes edges (i.e., interactions) that are supported across many of the bootstrap networks. The first script, 'qsubbootstrap.pl', is used for the submission of bootstrap jobs to computational clusters. The first argument to this script is the name of the output directory, and the second and third arguments specify the range that is used to number the resulting files. Upon completion of the jobs, executing the second script, 'getconsensusnet.pl', will combine all the adjacency matrices and randomly permute the inferred edges in each bootstrap network to perform significance tests. It will then construct the consensus network based on the user-specified P-value threshold. This script takes as arguments the directory containing the bootstrap networks and the significance threshold. For example, 'perl Scripts/getconsensusnet.pl BoostrapNetworks 1e-7' will construct a consensus network from all bootstrap networks contained in the 'BootstrapNetworks' directory using significance threshold '1e-7'. I want to employ a similar procedure in a related program that calculates two sets of mutual information as described in my first post. Will such an implementation be possible?

In reply to Re: Bootstrapping Implementation by hoffmann
in thread Bootstrapping Implementation by hoffmann

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.