<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Recent changes to bictools - Python</title><link>https://sourceforge.net/p/bictools/wiki/bictools%2520-%2520Python/</link><description>Recent changes to bictools - Python</description><atom:link href="https://sourceforge.net/p/bictools/wiki/bictools%20-%20Python/feed" rel="self"/><language>en</language><lastBuildDate>Thu, 05 Mar 2015 15:15:34 -0000</lastBuildDate><atom:link href="https://sourceforge.net/p/bictools/wiki/bictools%20-%20Python/feed" rel="self" type="application/rss+xml"/><item><title>bictools - Python modified by Giese, Sven</title><link>https://sourceforge.net/p/bictools/wiki/bictools%2520-%2520Python/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v5
+++ v6
@@ -23,14 +23,25 @@
 &amp;gt;bictools-bic_CSV --infile input.txt --outfile output.csv

 ###### 2) bictools-bic_DB ###### 
+
 Command line tool to create customized databases from biceps results. The input requires the biceps search results, the target databases and a desired output directory. The biceps search results can either be a directory or a single file.

-Main script with many important parameters (e.g. FDR, mass filter, maximum number of mutations). It is also possible to use the decoy free estimation of false positives via CurveFDP. This requires a working installation of R. Moreover, the "bic_cutoff.R" file needs to be downloaded from the project homepage and passed as an argument.
+Main script with many important parameters (e.g. FDR, mass filter, maximum number of mutations). It is also possible to use the decoy free estimation of false positives via CurveFDP. This requires a working installation of R. Moreover, the "bic_cutoff.R" file needs to be downloaded from the project homepage and passed as an argument. However, FDR estimation within BICEPS is not necessary but has an influence on the results.

 &amp;gt;Usage:
-&amp;gt; python bic_DB.py --in_bic Biceps.Results.HCT_all.txt 
+&amp;gt; bictools-bic_DB --in_bic Biceps.Results.HCT_all.txt 
 &amp;gt; --in_db HS_reviewed_19092014.fasta
 &amp;gt; --out_dir /home/results

 ###### 3) bictools-bic_evaluate ######

+A script to evaluate and filter search identifications on a customized variant database. The input files are OpenMS result files (can be created via KNIME), processed biceps files (output from bictools-bic_DB), a fasta database as used in the initial biceps call.
+
+&amp;gt;Usage:
+&amp;gt; bictools-bic_evaluate --in_oms /home/bick/test/TextExporterOutput/ --in_bic /home/bick/test/
+&amp;gt; --in_db /home/bick/test/db.fasta
+
+
+##### Script location #####
+
+On linux the scripts are usually installed to the python path that is probably already in your path variable. On Windows you should find the scripts in the python/Lib/site-packages/bictools folder. Note, the package is not tested under Windows / OSX.
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giese, Sven</dc:creator><pubDate>Thu, 05 Mar 2015 15:15:34 -0000</pubDate><guid>https://sourceforge.net5c6747b9cc431c3026b9827a8b3390b8c765f47b</guid></item><item><title>bictools - Python modified by Giese, Sven</title><link>https://sourceforge.net/p/bictools/wiki/bictools%2520-%2520Python/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v4
+++ v5
@@ -1,4 +1,4 @@
-bictools Tutorial
+bictools overview
 ===========================

 For this tutorial you need a working installation of python with all packages listed at the previous page. If you are on Windows "Anaconda" is a very easy way to get a working python installation. On Linux and Windows packages can usually be installed via pip or setup tools.
@@ -15,12 +15,22 @@

 There are two parts of bictools: First, a very small API to access and deal with BICEPS identifications. Second, a few command line scripts that get installed automatically. We will only focus on the scripts and how to use them. Each script has a short command line interface with short help messages and examples. The scripts that are available are:

-#### 1) bictools-bic_CSV#### 
+###### 1) bictools-bic_CSV ######

 A small script that converts BICEPS result files into proper table-like result files. This is handy if you want to process the data in Excel / R / python.

-#### 2) bictools-bic_DB#### 
-#### 3) bictools-bic_evaluate#### 
+&amp;gt;Usage:
+&amp;gt;bictools-bic_CSV --infile input.txt --outfile output.csv

+###### 2) bictools-bic_DB ###### 
+Command line tool to create customized databases from biceps results. The input requires the biceps search results, the target databases and a desired output directory. The biceps search results can either be a directory or a single file.

-#### What can you do with bictools ####
+Main script with many important parameters (e.g. FDR, mass filter, maximum number of mutations). It is also possible to use the decoy free estimation of false positives via CurveFDP. This requires a working installation of R. Moreover, the "bic_cutoff.R" file needs to be downloaded from the project homepage and passed as an argument.
+
+&amp;gt;Usage:
+&amp;gt; python bic_DB.py --in_bic Biceps.Results.HCT_all.txt 
+&amp;gt; --in_db HS_reviewed_19092014.fasta
+&amp;gt; --out_dir /home/results
+
+###### 3) bictools-bic_evaluate ######
+
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giese, Sven</dc:creator><pubDate>Thu, 05 Mar 2015 15:03:59 -0000</pubDate><guid>https://sourceforge.net9d626329fba01d34494aff746cfa141a503e5693</guid></item><item><title>bictools - Python modified by Giese, Sven</title><link>https://sourceforge.net/p/bictools/wiki/bictools%2520-%2520Python/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v3
+++ v4
@@ -8,19 +8,19 @@

 To install bictools (not yet part of PyPi, sorry!) you have to download the dist package from the bictools project homepage. Installation is as easy as:

-#pip install bictools-0.1dev.tar.gz
+&amp;gt;pip install bictools-0.1dev.tar.gz

 #### What can you do with bictools ####

 There are two parts of bictools: First, a very small API to access and deal with BICEPS identifications. Second, a few command line scripts that get installed automatically. We will only focus on the scripts and how to use them. Each script has a short command line interface with short help messages and examples. The scripts that are available are:

-1) bictools-bic_CSV
+#### 1) bictools-bic_CSV#### 

 A small script that converts BICEPS result files into proper table-like result files. This is handy if you want to process the data in Excel / R / python.

-2) bictools-bic_DB
-3) bictools-bic_evaluate
+#### 2) bictools-bic_DB#### 
+#### 3) bictools-bic_evaluate#### 

 #### What can you do with bictools ####
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giese, Sven</dc:creator><pubDate>Thu, 05 Mar 2015 14:48:49 -0000</pubDate><guid>https://sourceforge.net735004faf02c634f438af6f376231de8aaaab72b</guid></item><item><title>bictools - Python modified by Giese, Sven</title><link>https://sourceforge.net/p/bictools/wiki/bictools%2520-%2520Python/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v2
+++ v3
@@ -8,7 +8,7 @@

 To install bictools (not yet part of PyPi, sorry!) you have to download the dist package from the bictools project homepage. Installation is as easy as:

-# pip install bictools-0.1dev.tar.gz
+#pip install bictools-0.1dev.tar.gz

 #### What can you do with bictools ####
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giese, Sven</dc:creator><pubDate>Thu, 05 Mar 2015 14:46:58 -0000</pubDate><guid>https://sourceforge.net3ff56bf98be216aaadfacd46b18658fe0450d2fe</guid></item><item><title>bictools - Python modified by Giese, Sven</title><link>https://sourceforge.net/p/bictools/wiki/bictools%2520-%2520Python/</link><description>&lt;div class="markdown_content"&gt;&lt;pre&gt;--- v1
+++ v2
@@ -1 +1,26 @@
-Help page to execute bictools-python scripts.
+bictools Tutorial
+===========================
+
+For this tutorial you need a working installation of python with all packages listed at the previous page. If you are on Windows "Anaconda" is a very easy way to get a working python installation. On Linux and Windows packages can usually be installed via pip or setup tools.
+
+
+#### Installing bictools ####
+
+To install bictools (not yet part of PyPi, sorry!) you have to download the dist package from the bictools project homepage. Installation is as easy as:
+
+# pip install bictools-0.1dev.tar.gz
+
+
+#### What can you do with bictools ####
+
+There are two parts of bictools: First, a very small API to access and deal with BICEPS identifications. Second, a few command line scripts that get installed automatically. We will only focus on the scripts and how to use them. Each script has a short command line interface with short help messages and examples. The scripts that are available are:
+
+1) bictools-bic_CSV
+
+A small script that converts BICEPS result files into proper table-like result files. This is handy if you want to process the data in Excel / R / python.
+
+2) bictools-bic_DB
+3) bictools-bic_evaluate
+
+
+#### What can you do with bictools ####
&lt;/pre&gt;
&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giese, Sven</dc:creator><pubDate>Thu, 05 Mar 2015 14:46:37 -0000</pubDate><guid>https://sourceforge.netc0c93f525aa995f249b063c78d64d5299faa4402</guid></item><item><title>bictools - Python modified by Giese, Sven</title><link>https://sourceforge.net/p/bictools/wiki/bictools%2520-%2520Python/</link><description>&lt;div class="markdown_content"&gt;&lt;p&gt;Help page to execute bictools-python scripts.&lt;/p&gt;&lt;/div&gt;</description><dc:creator xmlns:dc="http://purl.org/dc/elements/1.1/">Giese, Sven</dc:creator><pubDate>Thu, 05 Mar 2015 12:22:02 -0000</pubDate><guid>https://sourceforge.net1aeda53c73eef249830eb4d25a21daf7cd3d92d3</guid></item></channel></rss>