-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathPILFER_README.html
37 lines (37 loc) · 2.15 KB
/
PILFER_README.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<h1 id="pilfer">PILFER</h1>
<p>PILFER (PIrna cLuster FindER) is a tool to predict clusters in piRNA sequences given their count and the loci. This tool reports clusters based on the assumption that the piRNAs are conserved and highly expressed in clusters.</p>
<h2 id="getting-started">Getting Started</h2>
<p>The Python script pilfer.py is included in the zip archive, along with a sample input file in the BED format. Remember that the count value of each read should be present in the fifth column of the BED file as an integer value.</p>
<h3 id="prerequisites">Prerequisites</h3>
<p>You need to have Python 2.7 in your system and the numpy module installed. Most Python distribution include the numpy module natively in the installation. If you are using Python 2.6 or below, please make sure the following packages are installed</p>
<ul>
<li>Numpy</li>
<li>Operator</li>
<li>Sys</li>
<li>CSV</li>
<li>OS</li>
<li>Argparse</li>
</ul>
<p>The script was tested under Linux environment.</p>
<h2 id="installing-and-running-the-script">Installing and Running the script</h2>
<p>All you need is the script to predict the clusters in your input file!</p>
<h3 id="run-the-script">Run the script</h3>
<p>You can run the script with the -h or --help option to view the help</p>
<pre><code>python pilfer.py --help</code></pre>
<p>To run the script type</p>
<pre><code>python pilfer.py -i sample_input.bed</code></pre>
<p>To set a standard deviation factor, use the -f switch</p>
<pre><code>python pilfer.py -f 3.0 -i sample_input.bed</code></pre>
<h3 id="output">Output</h3>
<p>By default the output is printed to the standard output. If you want to print it to a file, you can simply redirect it to a file using redirection operator '>'</p>
<pre><code>python pilfer.py -i sample_input.bed > output.txt</code></pre>
<h2 id="built-with">Built With</h2>
<ul>
<li>Python 2.7</li>
</ul>
<h2 id="authors">Authors</h2>
<ul>
<li><strong>Rishav Ray</strong> - <em>Initial work</em> - <a href="https://github.com/rishavray">Github</a></li>
</ul>
<h2 id="license">License</h2>
<p>This project is licensed under the MIT License - see the <a href="https://opensource.org/licenses/MIT">LICENSE</a> file for details</p>