<?xml version='1.0'?><rss version="2.0" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:georss="http://www.georss.org/georss" xmlns:atom="http://www.w3.org/2005/Atom" >
<channel>
	<title><![CDATA[BOL: Related items]]></title>
	<link>https://bioinformaticsonline.com/related/20331?offset=50</link>
	<atom:link href="https://bioinformaticsonline.com/related/20331?offset=50" rel="self" type="application/rss+xml" />
	<description><![CDATA[]]></description>
	
	<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</guid>
	<pubDate>Tue, 24 Feb 2015 20:23:34 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/21444/a-guide-for-complete-r-beginners-installing-r-packages</link>
	<title><![CDATA[A guide for complete R beginners :- Installing R packages]]></title>
	<description><![CDATA[<p>Part of the reason R has become so popular is the vast array of packages available at the <a href="http://cran.r-project.org/" target="_blank">cran</a> and <a href="http://www.bioconductor.org/" target="_blank">bioconductor</a> repositories. In the last few years, the number of packages has grown <a href="http://blog.revolutionanalytics.com/2010/09/what-can-other-languages-learn-from-r.html" target="_blank">exponentially</a>!</p><p>This is a short post giving steps on how to actually install R packages. Let&rsquo;s suppose you want to install the <a href="http://had.co.nz/ggplot2/" target="_blank">ggplot2</a> package. Well nothing could be easier. We just fire up an R shell and type:<br /><code><br />&gt; install.packages("ggplot2")</code></p><p>In theory the package should just install, however:</p><ul>
<li>if you are using Linux and don&rsquo;t have root access, this command won&rsquo;t work.</li>
<li>you will be asked to select your local mirror, i.e. which server should you use to download the package.</li>
</ul><h4>Installing packages without root access</h4><p>First, you need to designate a directory where you will store the downloaded packages. On my machine, I use the directory <code>/data/Rpackages/</code> After creating a package directory, to install a package we use the command:<br /><code><br />&gt; install.packages("ggplot2"</code><code>, lib="/data/Rpackages/")<br />&gt; library(ggplot2, lib.loc="/data/Rpackages/")<br /></code></p><p>It&rsquo;s a bit of a pain having to type <code>/data/Rpackages/</code> all the time. To avoid this burden,&nbsp; we create a file <code>.Renviron</code> in our home area, and add the line <code>R_LIBS=/data/Rpackages/</code> to it. This means that whenever you start R, the directory <code>/data/Rpackages/</code> is added to the list of places to look for R packages and so:</p><p><code>&gt; install.packages("ggplot2"</code><code>)<br />&gt; library(ggplot2)</code></p><p>just works!</p><h4>Setting the repository</h4><p>Every time you install a R package, you are asked which repository R should use. To set the repository and avoid having to specify this at every package install, simply:</p><ul>
<li>create a file <code>.Rprofile</code> in your home area.</li>
<li>Add the following piece of code to it:</li>
</ul><p><code><br />cat(".Rprofile: Setting UK repositoryn")<br />r = getOption("repos") # hard code the UK repo for CRAN<br />r["CRAN"] = "http://cran.uk.r-project.org"<br />options(repos = r)<br />rm(r)<br /></code></p><p>I found this tip in a stackoverflow <a href="http://stackoverflow.com/questions/1189759/expert-r-users-whats-in-your-rprofile/1189826#1189826" target="_blank">answer </a>.</p>]]></description>
	<dc:creator>Archana Malhotra</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/22017/binc-2015</guid>
	<pubDate>Sat, 11 Apr 2015 20:35:27 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22017/binc-2015</link>
	<title><![CDATA[BINC 2015 !!!]]></title>
	<description><![CDATA[<p>Pondicherry University,Puducherry,on behalf of Department of Biotechnology, Government of India, will conduct the BINC examination in2015. The objective of this examination is to certify bioinformatics professionals, trained formally as well as self-trained.Registration will open from March 9,2015 to April 30,2015. Pondicherry University, Puducherry has been identified as a nodal agency by the Department of Biotechnology, Govt. of India to coordinate this examination along with nine centres namely, Pune University, Pune; Anna University, Chennai; Calcutta University, Kolkata; Institute of Bioinformatics &amp; Applied Biotechnology, Bangalore; North-Eastern Hill University, Shillong, University of Hyderabad, Hyderabad; University of Kerala, Thiruvananthapuram; Jawaharlal Nehru University, New Delhi and Assam Agricultural University, Guwahati. In the BINC 2013 examination,17 candidates were certified. DBT has agreed to fund Research fellowships for all the BINC qualified Indian nationals to pursue Ph.D. in Indian Institutes/Universities. Note that the candidate must possess a postgraduate degree(or equivalent) &amp; meet the criteria of the institutes/universities in order to avail research fellowship. In addition, cash prize of Rs. 10,000/- will be awarded to the top 10 BINC qualifiers.</p><p>More at http://www.binc.co.in/College/Index_New.aspx</p><p>BINC notification http://www.binc.co.in/PdfDocuments/Notification.pdf</p><p>Few dates to remember:</p><p>Starting of online submission of application: March 9, 2015<br />Last date for submission of application: April 30,2015<br />Examination consists of two parts:<br />Part I (Paper I) : June 7, 2015 (10 AM-12 PM)<br />Part II ( Paper II &amp; III) :June 28, 2015 (9 AM-12 PM &amp; 2 PM-4 PM)</p>]]></description>
	<dc:creator>Rahul Nayak</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/file/view/22053/binc-sample-question-paper</guid>
	<pubDate>Thu, 16 Apr 2015 09:16:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/file/view/22053/binc-sample-question-paper</link>
	<title><![CDATA[BINC Sample Question Paper !!!]]></title>
	<description><![CDATA[<p>BINC sample question paper. Wish you all the best for BINC examination.</p>]]></description>
	<dc:creator>Jitendra Narayan</dc:creator>
	<enclosure url="https://bioinformaticsonline.com/file/download/22053" length="4041" type="text/plain" />
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/news/view/22133/r-320-is-released</guid>
	<pubDate>Sat, 18 Apr 2015 05:06:44 -0500</pubDate>
	<link>https://bioinformaticsonline.com/news/view/22133/r-320-is-released</link>
	<title><![CDATA[R 3.2.0 is released]]></title>
	<description><![CDATA[<p>R 3.2.0 (codename &ldquo;Full of Ingredients&rdquo;)&nbsp;was <a href="http://r.789695.n4.nabble.com/R-3-2-0-is-released-td4705933.html" target="_blank">released yesterday</a>.&nbsp;You can get the latest binaries version <strong><a href="http://cran.rstudio.com/" target="_blank">from here</a>.</strong>&nbsp;(or the .tar.gz&nbsp;<strong>source</strong> code from <a href="http://cran.r-project.org/src/base/R-3/R-3.2.0.tar.gz" target="_blank">here</a>).&nbsp;The full list of new features and bug fixes is provided below.</p><h3>Upgrading to R 3.2.0 on Windows</h3><p>If you are using <strong>Windows&nbsp;</strong>you can easily upgrade to the latest version of R using <a href="http://cran.r-project.org/web/packages/installr/" target="_blank">the installr package</a>. Simply run the following code:</p><div><table>
<tbody>
<tr id="p612572">
<td id="p61257code2">
<pre><span style="color: #228b22;"># installing/loading the latest installr package:</span>
<span style="color: #0000ff; font-weight: bold;">install.<span>packages</span></span><span style="color: #080;">(</span><span style="color: #ff0000;">"installr"</span><span style="color: #080;">)</span><span style="color: #080;">;</span> <span style="color: #0000ff; font-weight: bold;">library</span><span style="color: #080;">(</span>installr<span style="color: #080;">)</span> <span style="color: #228b22;">#load / install+load installr</span>
&nbsp;
updateR<span style="color: #080;">(</span><span style="color: #080;">)</span> <span style="color: #228b22;"># updating R.</span></pre>
</td>
</tr>
</tbody>
</table></div><p><span>Running &ldquo;updateR()&rdquo; will detect if there is a new R version available, and if so it will download+install it (etc.).</span></p><p><span><strong>If you are an R blogger yourself</strong> you are invited to <a href="http://www.r-bloggers.com/add-your-blog/">add your own R content feed to this site</a> (<strong>Non-English</strong> R bloggers should add themselves- <a href="http://www.r-bloggers.com/lang/add-your-blog">here</a>)</span></p><h4>NEW FEATURES</h4><ul>
<li><code>anyNA()</code> gains a <code>recursive</code> argument.</li>
<li>When <code>x</code> is missing and <code>names</code> is not false (including the default value), <code>Sys.getenv(x, names)</code> returns an object of class <code>"Dlist"</code> and hence prints tidily.</li>
<li>(Windows.) <code>shell()</code> no longer consults the environment variable <span>SHELL</span>: too many systems have been encountered where it was set incorrectly (usually to a path where software was compiled, not where it was installed). <span>R_SHELL</span>, the preferred way to select a non-default shell, can be used instead.</li>
<li>Some unusual arguments to <code>embedFonts()</code> can now be specified as character vectors, and the defaults have been changed accordingly.</li>
<li>Functions in the <code>Summary</code> group duplicate less. (<a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=15798" target="_blank">PR#15798</a>)</li>
<li>(Unix-alikes.) <code>system(cmd, input = )</code> now uses &lsquo;shell-execution-environment&rsquo; redirection, which will be more natural if <code>cmd</code> is not a single command (but requires a POSIX-compliant shell). (Wish of <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=15508" target="_blank">PR#15508</a>)</li>
<li><code>read.fwf()</code> and <code>read.DIF()</code> gain a <code>fileEncoding</code> argument, for convenience.</li>
<li>Graphics devices can add attributes to their description in <code>.Device</code> and <code>.Devices</code>. Several of those included with <strong>R</strong> use a <code>"filepath"</code> attribute.</li>
<li><code>pmatch()</code> uses hashing in more cases and so is faster at the expense of using more memory. (<a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=15697" target="_blank">PR#15697</a>)</li>
<li><code>pairs()</code> gains new arguments to select sets of variables to be plotted against each other.</li>
<li><code>file.info(, extra_cols = FALSE)</code> allows a minimal set of columns to be computed on Unix-alikes: on some systems without properly-configured caching this can be significantly faster with large file lists.</li>
<li>New function <code>dir.exists()</code> in package <span>base</span> to test efficiently whether one or more paths exist and are directories.</li>
<li><code>dput()</code> and friends gain new controls <span>hexNumeric</span> and <span>digits17</span> which output double and complex quantities as, respectively, binary fractions (exactly, see <code>sprintf("%a")</code>) and as decimals with up to 17 significant digits.</li>
<li><code>save()</code>, <code>saveRDS()</code> and <code>serialize()</code> now support <code>ascii = NA</code> which writes ASCII files using <code>sprintf("%a")</code> for double/complex quantities. This is read-compatible with <code>ascii = TRUE</code> but avoids binary-&gt;decimal-&gt;binary conversions with potential loss of precision. Unfortunately the Windows C runtime&rsquo;s lack of C99 compliance means that the format cannot be read correctly there in <strong>R</strong> before 3.1.2.</li>
<li>The default for <code>formatC(decimal.mark =)</code> has been changed to be <code>getOption("OutDec")</code>; this makes it more consistent with <code>format()</code> and suitable for use in print methods, e.g. those for classes <code>"density"</code>, <code>"ecdf"</code>, <code>"stepfun"</code> and <code>"summary.lm"</code>.
<p><code>getOption("OutDec")</code> is now consulted by the print method for class <code>"kmeans"</code>, by <code>cut()</code>, <code>dendrogram()</code>, <code>plot.ts()</code> and <code>quantile()</code> when constructing labels and for the report from<code>legend(trace = TRUE)</code>.</p>
<p>(In part, wish of <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=15819" target="_blank">PR#15819</a>.)</p>
</li>
<li><code>printNum()</code> and hence <code>format()</code> and <code>formatC()</code> give a warning if <code>big.mark</code> and <code>decimal.mark</code> are set to the same value (period and comma are not uncommonly used for each, and this is a check that conventions have not got mixed).</li>
<li><code>merge()</code> can create a result which uses long vectors on 64-bit platforms.</li>
<li><code>dget()</code> gains a new argument <code>keep.source</code> which defaults to <code>FALSE</code> for speed (<code>dput()</code> and <code>dget()</code> are most often used for data objects where this can make <code>dget()</code> many times faster).</li>
<li>Packages may now use a file of common macro definitions in their help files, and may import definitions from other packages.</li>
<li>A number of macros have been added in the new &lsquo;<span>share/Rd</span>&rsquo; directory for use in package overview help pages, and <code>promptPackage()</code> now makes use of them.</li>
<li><code>tools::parse_Rd()</code> gains a new <code>permissive</code> argument which converts unrecognized macros into text. This is used by <code>utils:::format.bibentry</code> to allow LaTeX markup to be ignored.</li>
<li><code>options(OutDec =)</code> can now specify a multi-byte character, e.g., <code>options(OutDec = "u00b7")</code> in a UTF-8 locale.</li>
<li><code>is.recursive(x)</code> is no longer true when <code>x</code> is an external pointer, a weak reference or byte code; the first enables <code>all.equal(x, x)</code> when <code>x .</code></li>
<li><code>ls()</code> (aka <code>objects()</code>) and <code>as.list.environment()</code> gain a new argument <code>sorted</code>.</li>
<li>The <code>"source"</code> attribute (which has not been added to functions by <strong>R</strong> since before <strong>R</strong> version 2.14.0) is no longer treated as special.</li>
<li>Function <code>returnValue()</code> has been added to give <code>on.exit()</code> code access to a function&rsquo;s return value for debugging purposes.</li>
<li><code>crossprod(x, y)</code> allows more matrix coercions when <code>x</code> or <code>y</code> are vectors, now equalling <code>t(x) %*% y</code> in these cases (also reported by Radford Neal). Similarly, <code>tcrossprod(x,y)</code> and <code>%*%</code> work in more cases with vector arguments.</li>
<li>Utility function <code>dynGet()</code> useful for detecting cycles, aka infinite recursions.</li>
<li>The byte-code compiler and interpreter include new instructions that allow many scalar subsetting and assignment and scalar arithmetic operations to be handled more efficiently. This can result in significant performance improvements in scalar numerical code.</li>
<li><code>apply(m, 2, identity)</code> is now the same as the matrix <code>m</code> when it has <em>named</em> row names.</li>
<li>A new function <code>debuggingState()</code> has been added, allowing to temporarily turn off debugging.</li>
<li><code>example()</code> gets a new optional argument <code>run.donttest</code> and <code>tools::Rd2ex()</code> a corresponding <code>commentDonttest</code>, with a default such that <code>example(..)</code> in help examples will run <code>donttest</code> code only if used interactively (a change in behaviour).</li>
<li><code>rbind.data.frame()</code> gains an optional argument <code>make.row.names</code>, for potential speedup.</li>
<li>New function <code>extSoftVersion()</code> to report on the versions of third-party software in use in this session. Currently reports versions of <code>zlib</code>, <code>bzlib</code>, the <code>liblzma</code> from <code>xz</code>, PCRE, ICU, TRE and the <code>iconv</code> implementation.
<p>A similar function <code>grSoftVersion()</code> in package <span>grDevices</span> reports on third-party graphics software.</p>
<p>Function <code>tcltk::tclVersion()</code> reports the Tcl/Tk version.</p>
</li>
<li>Calling <code>callGeneric()</code> without arguments now works with primitive generics to some extent.</li>
<li><code>vapply(x, FUN, FUN.VALUE)</code> is more efficient notably for large <code>length(FUN.VALUE)</code>; as extension of <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16061" target="_blank">PR#16061</a>.</li>
<li><code>as.table()</code> now allows tables with one or more dimensions of length 0 (such as <code>as.table(integer())</code>).</li>
<li><code>names(x) now clears the names of call and <code>...</code> objects.</code></li>
<li><code>library()</code> will report a warning when an insufficient dependency version is masking a sufficient one later on the library search path.</li>
<li>A new <code>plot()</code> method for class <code>"raster"</code> has been added.</li>
<li>New <code>check_packages_in_dir_changes()</code> function in package <span>tools</span> for conveniently analyzing how changing sources impacts the check results of their reverse dependencies.</li>
<li>Speed-up from Peter Haverty for <code>ls()</code> and <code>methods:::.requirePackage()</code> speeding up package loading. (<a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16133" target="_blank">PR#16133</a>)</li>
<li>New <code>get0()</code> function, combining <code>exists()</code> and <code>get()</code> in one call, for efficiency.</li>
<li><code>match.call()</code> gains an <code>envir</code> argument for specifying the environment from which to retrieve the <code>...</code> in the call, if any; this environment was wrong (or at least undesirable) when the<code>definition</code> argument was a function.</li>
<li><code>topenv()</code> has been made <code>.Internal()</code> for speedup, based on Peter Haverty&rsquo;s proposal in <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16140" target="_blank">PR#16140</a>.</li>
<li><code>getOption()</code> no longer calls <code>options()</code> in the main case.</li>
<li>Optional use of <code>libcurl</code> (version 7.28.0 from Oct 2012 or later) for Internet access:
<ul>
<li><code>capabilities("libcurl")</code> reports if this is available.</li>
<li><code>libcurlVersion()</code> reports the version in use, and other details of the <code>"libcurl"</code> build including which URL schemes it supports.</li>
<li><code>curlGetHeaders()</code> retrieves the headers for <code>http://</code>, <code>https://</code>, <code>ftp://</code> and <code>ftps://</code> URLs: analysis of these headers can provide insights into the &lsquo;existence&rsquo; of a URL (it might for example be permanently redirected) and is so used in <code>R CMD check --as-cran</code>.</li>
<li><code>download.file()</code> has a new optional method <code>"libcurl"</code> which will handle more URL schemes, follow redirections, and allows simultaneous downloads of multiple URLs.</li>
<li><code>url()</code> has a new method <code>"libcurl"</code> which handles more URL schemes and follows redirections. The default method is controlled by a new option <code>url.method</code>, which applies also to the opening of URLs <em>via</em> <code>file()</code> (which happens implicitly in functions such as <code>read.table</code>.)</li>
<li>When <code>file()</code> or <code>url()</code> is invoked with a <code>https://</code> or <code>ftps://</code> URL which the current method cannot handle, it switches to a suitable method if one is available.</li>
</ul>
</li>
<li>(Windows.) The DLLs &lsquo;<span>internet.dll</span>&rsquo; and &lsquo;<span>internet2.dll</span>&rsquo; have been merged. In this version it is safe to switch (repeatedly) between the internal and Windows internet functions within an <strong>R</strong>session.
<p>The Windows internet functions are still selected by flag <span>&ndash;internet2</span> or <code>setInternet2()</code>. This can be overridden for an <code>url()</code> connection <em>via</em> its new <code>method</code> argument.</p>
<p><code>download.file()</code> has new method <code>"wininet"</code>, selected as the default by <span>&ndash;internet2</span> or <code>setInternet2()</code>.</p>
</li>
<li><code>parent.env&lt;-</code> can no longer modify the parent of a locked namespace or namespace imports environment. Contributed by Karl Millar.</li>
<li>New function <code>isLoadedNamespace()</code> for readability and speed.</li>
<li><code>names(env)</code> now returns all the object names of an <code>environment</code> <code>env</code>, equivalently to <code>ls(env, all.names = TRUE, sorted = FALSE)</code> and also to the names of the corresponding list,<code>names(as.list(env, all.names = TRUE))</code>. Note that although <code>names()</code> returns a character vector, the names have no particular ordering.</li>
<li>The memory manager now grows the heap more aggressively. This reduces the number of garbage collections, in particular while data or code are loaded, at the expense of slightly increasing the memory footprint.</li>
<li>New function <code>trimws()</code> for removing leading/trailing whitespace.</li>
<li><code>cbind()</code> and <code>rbind()</code> now consider S4 inheritance during S3 dispatch and also obey <code>deparse.level</code>.</li>
<li><code>cbind()</code> and <code>rbind()</code> will delegate recursively to <code>methods::cbind2</code> (<code>methods::rbind2</code>) when at least one argument is an S4 object and S3 dispatch fails (due to ambiguity).</li>
<li>(Windows.) <code>download.file(quiet = FALSE)</code> now uses text rather than Windows progress bars in non-interactive use.</li>
<li>New function <code>hsearch_db()</code> in package <span>utils</span> for building and retrieving the help search database used by <code>help.search()</code>, along with functions for inspecting the concepts and keywords in the help search database.</li>
<li>New function <code>.getNamespaceInfo()</code>, a no-check version of <code>getNamespaceInfo()</code> mostly for internal speedups.</li>
<li>The help search system now takes <span>keyword</span> entries in Rd files which are not standard keywords (as given in &lsquo;<span>KEYWORDS</span>&rsquo; in the <strong>R</strong> documentation directory) as concepts. For standard keyword entries the corresponding descriptions are additionally taken as concepts.</li>
<li>New <code>lengths()</code> function for getting the lengths of all elements in a list.</li>
<li>New function <code>toTitleCase()</code> in package <span>tools</span>, tailored to package titles.</li>
<li>The matrix methods of <code>cbind()</code> and <code>rbind()</code> allow matrices as inputs which have <em>2^31</em> or more elements. (For <code>cbind()</code>, wish of <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16198" target="_blank">PR#16198</a>.)</li>
<li>The default method of <code>image()</code> has an explicit check for a numeric or logical matrix (which was always required).</li>
<li><code>URLencode()</code> will not by default encode further URLs which appear to be already encoded.</li>
<li><code>BIC(mod)</code> and <code>BIC(mod, mod2)</code> now give non-NA numbers for <code>arima()</code> fitted models, as <code>nobs(mod)</code> now gives the number of &ldquo;used&rdquo; observations for such models. This fixes <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16198" target="_blank">PR#16198</a>, quite differently than proposed there.</li>
<li>The <code>print()</code> methods for <code>"htest"</code>, <code>"pairwise.htest"</code> and <code>"power.htest"</code> objects now have a <code>digits</code> argument defaulting to (a function of) <code>getOption("digits")</code>, and influencing all printed numbers coherently. Unavoidably, this changes the display of such test results in some cases.</li>
<li>Code completion for namespaces now recognizes all loaded namespaces, rather than only the ones that are also attached.</li>
<li>The code completion mechanism can now be replaced by a user-specified completer function, for (temporary) situations where the usual code completion is inappropriate.</li>
<li><code>unzip()</code> will now warn if it is able to detect truncation when unpacking a file of 4GB or more (related to <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16243" target="_blank">PR#16243</a>).</li>
<li><code>methods()</code> reports S4 in addition to S3 methods; output is simplified when the <code>class</code> argument is used. <code>.S3methods()</code> and <code>methods::.S4methods()</code> report S3 and S4 methods separately.</li>
<li>Higher order functions such as the <code>apply</code> functions and <code>Reduce()</code> now force arguments to the functions they apply in order to eliminate undesirable interactions between lazy evaluation and variable capture in closures. This resolves <a href="https://bugs.r-project.org/bugzilla3/show_bug.cgi?id=16093" target="_blank">PR#16093</a>.</li>
</ul><p>More at http://cran.rstudio.com/</p><p>Reference: http://www.r-bloggers.com/r-3-2-0-is-released-using-the-installr-package-to-upgrade-in-windows-os/</p>]]></description>
	<dc:creator>Neel</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/22567/rosalind-problem-solution-with-perl</guid>
	<pubDate>Tue, 09 Jun 2015 23:35:18 -0500</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/22567/rosalind-problem-solution-with-perl</link>
	<title><![CDATA[Rosalind Problem Solution with Perl]]></title>
	<description><![CDATA[<p>Rosalind is a platform for learning bioinformatics and programming through problem solving. <a href="http://rosalind.info/problems/list-view/?location=bioinformatics-textbook-track">Take a tour</a> to get the hang of how Rosalind works.</p><p>Bioinformatics Textbook Track</p><p>Find more about Rosalind puzzle at http://rosalind.info/problems/list-view/?location=bioinformatics-textbook-track</p><p>I will provide solution of all the Rosalind problem with Perl for community.</p><p>Check out the right sidebar for more links ...</p>]]></description>
	<dc:creator>Jit</dc:creator>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/researchlabs/view/26828/bioinfolab</guid>
  <pubDate>Fri, 25 Mar 2016 11:05:35 -0500</pubDate>
  <link></link>
  <title><![CDATA[BioinfoLab]]></title>
  <description><![CDATA[
<p>Laboratory of Statistics and Computational tools for Bioinformatics</p>

<p>The Laboratory of Statistics and Computational tools for Bioinformatics (BioinfoLab) is hosted at the Istituto per le Applicazioni del Calcolo "Mauro Picone" - CNR . The laboratory has been officially opened in 2012 with the support of Programma Operativo Nazionale "Ricerca e Competitività" 2007-2013 (PON "R&amp;C"), and it incorporates several expertise and research activities started since 2007, and supported by several CNR projects. Main interest of BioinfoLab is to develop novel statistical methods and computational tools for the analysis of high dimensional data arising from "Multi-omics" applications. In particular, current activities involve the analysis of ChIP-seq and RNA-seq experiments. </p>

<p>More at http://bioinfo.na.iac.cnr.it/BioinfoLab/index.html</p>
]]></description>
</item>

<item>
  <guid isPermaLink='true'>https://bioinformaticsonline.com/opportunity/view/26250/research-fellow-bioinformatics-at-central-university-of-rajasthan</guid>
  <pubDate>Tue, 02 Feb 2016 00:04:50 -0600</pubDate>
  <link></link>
  <title><![CDATA[Research Fellow Bioinformatics at Central University of Rajasthan]]></title>
  <description><![CDATA[
<p>Research Fellow Bioinformatics</p>

<p>Eligibility : MSc(Bio-Chemistry, Bio-Informatics, Bio-Tech)<br />Location : Ajmer<br />Last Date : 13 Feb 2016<br />Hiring Process : Face to Face Interview<br />Central University of Rajasthan</p>

<p>Research Fellow Job vacancies in Central University of Rajasthan</p>

<p>Project Title : “Development of natural product derived febrifugine ananlogues as a novel therapeutics against visceral leishmaniasis”</p>

<p>No. of Post : 01</p>

<p>Qualification : Master of Biochemistry, Biotechnology, Bioinformatics and related biological sciences with minimum 55%, Age limit as per government rule.</p>

<p>Desirable Experience : Candidates with experience in cell culture, Chemoinformatics, and Parasitology will be preferred.    </p>

<p>Fellowship : Rs. 25,000/- p.m. consolidated for NET qualified (14,000/- p.m. consolidated for Non-NET)<br />How to apply</p>

<p>The candidates may apply on a plain paper, along with their curriculum vitae (including name, date of birth, academic qualification starting from 10th class, summary of research experience, email id, phone number and passport size photograph) and email to vkprajapati@curaj.ac.in or post the hard copy to the Dr. Vijay Kumar Prajapati PI, DST-SERB Project (YSS/2015/000716), Department of Biochemistry, School of Life Sciences, Central University of Rajasthan, Bandarsindri, Dist- Ajmer, Rajasthan, 305 817 on or before 13th February 2016.</p>

<p>More at http://www.curaj.ac.in/Default.aspx?PageId=241</p>
]]></description>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26537/destruct</guid>
	<pubDate>Mon, 29 Feb 2016 17:34:59 -0600</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26537/destruct</link>
	<title><![CDATA[destruct]]></title>
	<description><![CDATA[<p>Destruct is a tool for joint prediction of rearrangement breakpoints from single or multiple tumour samples.</p>
<p>More at&nbsp;https://bitbucket.org/dranew/destruct</p><p>Address of the bookmark: <a href="https://bitbucket.org/dranew/destruct" rel="nofollow">https://bitbucket.org/dranew/destruct</a></p>]]></description>
	<dc:creator>Jitendra Prajapati</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/pages/view/26617/list-of-bioinformatics-software-tools-for-next-generation-sequencing</guid>
	<pubDate>Fri, 11 Mar 2016 20:22:14 -0600</pubDate>
	<link>https://bioinformaticsonline.com/pages/view/26617/list-of-bioinformatics-software-tools-for-next-generation-sequencing</link>
	<title><![CDATA[List of Bioinformatics Software Tools for Next Generation Sequencing]]></title>
	<description><![CDATA[<p><strong>Commercial tools</strong></p><ol>
<li><strong><a href="http://www.strand-ngs.com/">Strand NGS</a></strong>
<ul>
<li>offers many different tools including alignment, RNA-Seq, DNA-Seq, ChIP-Seq, Small RNA-Seq, Genome Browser, visualizations, Biological Interpretation, etc. Supports workflows &ldquo;one can import the sample data in FASTA, FASTQ or tag-count format. In addition, prealigned data in SAM, BAM or Illumina-specific ELAND format can be directly imported for analysis.&rdquo;</li>
<li>Alignment feature: Supports alignment from Illumina, Ion Torrent, 454 (Roche), and Pac Bio</li>
<li>DNA-Seq Feature, can annotate with dbSNP</li>
</ul>
</li>
<li><strong><a href="http://www.clcbio.com/desktop-applications/top-features/">CLC Genomics Workbench</a></strong><br />
<ul>
<li>(QIAGEN). Features include: resequencing, workflow, read mapping, de novo assembly, variant detection, RNA-Seq, ChIP-Seq, Genome Browser, etc (entire list on website); Main Workbench offers database search (Genbank, Blast, Pubmed); 2000 organizations have invested in CLC</li>
<li>Accepts VCF files from 1000 Genomes Project</li>
<li>Accepts downloaded tracks from dbSNP</li>
<li>Also accepts: FASTA, GFF/GTF/GVF, BED, Wiggle, Cosmic, UCSC variant database, complete genomics master var file</li>
<li>Read mapping: &ldquo;In addition to Sanger sequence data, reads from these high-throughput sequencing machines are supported: The 454 FLX System and the 454 GS Junior System from Roche, Illumina Genome Analyzer, Illumina HiSeq, Illumina HiScan, and Illumina MiSeq sequencing systems, SOLiD system from Life Technologies, Ion Torrent system from Life Technologies, Helicos from Helicos BioSciences&rdquo;</li>
<li>De novo assembly: &ldquo;In addition to Sanger sequence data, reads from these high-throughput sequencing machines are supported The 454 FLX System and the 454 GS Junior System from Roche, Illumina Genome Analyzer, Illumina HiSeq, Illumina HiScan, and Illumina MiSeq sequencing systems, SOLiD system from Life Technologies, Ion Torrent system from Life Technologies&rdquo;</li>
<li>Annotation tracks from Ensembl</li>
</ul>
</li>
<li><strong><a href="https://www.dnanexus.com/product-overview">DNAnexus</a></strong>
<ul>
<li>Private cloud repository -- formerly a redistributor of SRA and other NCBI resources; command-line or via web, can fetch data from a URL, build custom pipeline/ workflow has sra.dnanexus.com site: data downloads come directly from NCBI</li>
</ul>
</li>
<li><strong><a href="http://www.ingenuity.com/products/variant-analysis">Ingenuity Variant Analysis</a></strong>
<ul>
<li>(QIAGEN) allows for variant identification and analysis, uses NCI-60 data set for cancer, Supported third part informatin: Entrez Gene, RefSeq, ClinVar; gives contextual details of results instead of just A to B relationship</li>
<li>Has own database-- &ldquo;knowledge base&rdquo; based on COSMIC, OMIM, and TCGA databases</li>
</ul>
</li>
<li><strong><a href="http://www.dnastar.com/t-products-dnastar-lasergene-genomics.aspx">Lasergene Genomics Suite</a></strong>
<ul>
<li>Comprehensive NGS software pipeline for assembly, alignment, variant calling and analysis of NGS data</li>
<li>Supported workflows include: reference-guided and de novo genome and transcriptome assembly and analysis, metagenomics sample assembly, targeted resequencing, exome alignment, gene panels with validation control, variant analysis, and RNA-Seq, ChIP-Seq and miRNA alignment and analysis.</li>
<li>#1 in accuracy: fewer false negatives and better sensitivity compared to results obtained from other aligners</li>
<li>Aligns exome data and performs variant calling an average of 3 times faster than alternative pipelines</li>
<li>Annotates genomic data with allele and genotype frequency, functional impact predictions, evolutionary conservation scores and pathogenicity</li>
<li>Supports all major NGS technologies (Illumina, Ion Torrent, Pac Bio and Roche 454) and project types</li>
<li>Available on Windows, Mac OS X, Linux, and the Amazon Cloud</li>
</ul>
</li>
<li><strong><a href="http://www.softgenetics.com/NextGENe.html">NextGENe</a></strong>
<ul>
<li>&ldquo;perfect analytical partner for the analysis of desktop sequencing data produced by the ION PGM&trade;, Roche Junior, Illumina MiSeq as well as high throughput systems as the Ion Torrent Proton, Roche FLX, Applied BioSystems SOLiD&trade; and Illumina&reg; platforms.&rdquo; runs on Windows, free-standing multi-application package-- SNP/Indel analysis, CNV prediction and disease discovery, whole genome alignment, etc.</li>
<li>Data can be imported from Clinvar, dbSNP, Genbank:<a href="http://www.softgenetics.com/PDF/NextGene_UsersManual_web.pdf">http://www.softgenetics.com/PDF/NextGene_UsersManual_web.pdf</a></li>
</ul>
</li>
<li><strong><a href="http://www.partek.com/pgs">Partek Genomics Suite</a></strong>
<ul>
<li>Cited in over 3,500 peer-reviewed scientific publications</li>
<li>Workflows for microarray and PCR data include: Gene expression including alternative splicing, miRNA expression, Genome Wide Association Studies, Mother-Father-Child Trio analysis, DNA Copy number including allele specific copy number and Loss of Heterozygosity (LOH), and ChIP, and methylation. Next Generation Sequencing (NGS) workflows include: RNA-Seq, miRNA-Seq, ChIP-Seq, DNA-Seq, and Methylation</li>
<li>Powerful statistics and interactive, publication ready visualizations</li>
<li>Supports all commercial next generation sequencing and microarray file format as well as text files</li>
<li>Can input GEO SOFT files</li>
</ul>
</li>
<li><strong><a href="http://www.partek.com/partekflow">Partek Flow</a></strong>
<ul>
<li>Installation can be cloud-based or on a local cluster or Linux server</li>
<li>Easy to use point-and-click interface</li>
<li>Takes NGS data (.fastq, BAM, SAM), microarrays (Affymetrix, Illumina) and text files</li>
<li>Supports custom genome builds and annotation databases</li>
<li>Performs base trimming, alignment, quantification, quality analysis, statistics, and visualization</li>
<li>Includes ten fully customizable aligners (Bowtie, Bowtie 2, BWA, GSNAP, Isaac 2, SHRiMP 2, STAR, TMAP, TopHat and TopHat 2)</li>
<li>Applications for RNA-Seq, Small RNA-Seq, WGS/WES, Pathway enrichment, Fusion detection and Variant calling</li>
<li>Allows users to create, save, share, or download analysis pipelines for automated and repeatable analysis</li>
<li>Collaborate with others without transferring data</li>
<li>Integrates microarray and next generation sequencing data</li>
</ul>
</li>
<li><strong><a href="http://goldenhelix.com/SNP_Variation/">Golden Helix: SNP and Variation Suite</a></strong>
<ul>
<li>used for managing, analyzing and visualizing genotypic and phenotypic data; Features: Genome-wide association studies, genomic prediction, copy number analysis, small sample DNA-Seq workflows, large sample DNA-seq analysis, RNA-seq analysis. Supported files: .txt, excel XLS &amp; XLSX, CEL, CHP, CNT, Illumina, Plink PED, TPED, BED, Agilent files, NimbleGen data summary files, VCF files, Impute2 GWAS files, HapMap format, MACH output, + 50 other formats consumes NCBI data directly</li>
</ul>
</li>
<li><strong><a href="https://www.genomatix.de/">Genomatix</a></strong>
<ul>
<li>Applications: ChIP-Seq, DNA-Seq, RNA-Seq, DNA methylation; enable personalized medicine,</li>
<li>Mining Stations: Supports all established NGS sequencing platforms- SOLiD, 454 Life Sciences, Genome Analyzer, HiSeq, MiSeq, IonTorrent</li>
<li>Software Suite: can upload sequence of BED files</li>
<li>Genome browser: BED and BAM files, Public data- 1500 BED files available for every user</li>
</ul>
</li>
<li><strong><a href="http://www.biodatomics.com/">Biodatomics</a></strong>
<ul>
<li>Open source platform (SaaS), analysis and genome sequencing tools, integrates over 400 genomic analysis open source tools and pipelines, have a private and public cloud version. Features: genomic data visualization, drag and drop interface, accelerated analysis, real-time collaboration</li>
<li>They have a couple modules to do so, and have enabled parts of the sra toolkit</li>
</ul>
</li>
<li><strong><a href="https://www.solvebio.com/">SolveBio</a></strong>
<ul>
<li>Software product, for clinical genomics professionals, manage, curate, report genomic variation</li>
<li>Has own data library -- data from NCBI</li>
</ul>
</li>
<li><strong><a href="http://www.basepairtech.com">Basepair</a></strong>
<ul>
<li>Offers high quality workflows for all common NGS applications (RNA-Seq, ChIP-Seq, DNA-Seq, etc.)</li>
<li>Very fast - get all results in a 1-2 hours. Cloud-based, no storage or computing limits.</li>
<li>Easy to use - less than a minute to run an analysis</li>
<li>REST and Python API to mange large projects.</li>
</ul>
<div>&nbsp;</div>
</li>
</ol><h2><a href="https://github.com/NCBI-Hackathons/Community_Software_Tools_for_NGS/blob/master/NGS_Tools_List.md#variant-identification"></a>Variant Identification</h2><h3><a href="https://github.com/NCBI-Hackathons/Community_Software_Tools_for_NGS/blob/master/NGS_Tools_List.md#germline-callers"></a>Germline Callers</h3><ol>
<li><strong><a href="http://mathgen.stats.ox.ac.uk/impute/impute_v2.html">IMPUTE2</a></strong>
<ul>
<li>Description: phasing observed genotypes and imputing missing genotypes uses reference panels to provide all available halotypes, does not use population labels or genome-wide measures; designed to represent variation in one population; Fairly popular</li>
<li>Input:</li>
<li>Reference Haplotypes: Links to 1000 Genomes and HapMap downloads</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="https://github.com/ekg/freebayes">FreeBayes</a></strong>
<ul>
<li>Description: finds SNPs, Indels, MNPs; reports variants based on alignment; haplotype based</li>
<li>Input: BAM- uses BAMtools API to parse</li>
<li>Reference genome: FASTA</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://soap.genomics.org.cn/soapindel.html">SOAPindel</a></strong>
<ul>
<li>Description: detects indels from NGS paired-end sequencing</li>
<li>Input: files with read alignment can be SOAP or SAM formats, users must also give raw reads in Fasta or Fastq</li>
<li>Reference Sequence used to align reads: FASTA</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="https://github.com/danmaclean/2kplus2">2Kplus2</a></strong>
<ul>
<li>Description: algorithm searches graphs produced by de novo assembler Cortex; c++ source code for SNP detection &ldquo;2kplus2.cpp is a c++ source code for the detection and the classification of single nucleotide polymorphisms in transformed De Bruijn graphs using Cortex assembler.&rdquo;</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="https://www.hgsc.bcm.edu/software/atlas-2">Atlas 2</a></strong>
<ul>
<li>Description: specializes in separation of true SNPs and indels from sequencing and mapping errors, last update January 2013</li>
<li>Input: takes BAM file,</li>
<li>Reference Genome: FASTA</li>
<li>Output: produces VCF</li>
</ul>
</li>
<li><strong><a href="https://sites.google.com/site/vibansal/software/crisp">CRISP</a></strong>
<ul>
<li>Description: identifies SNPs and INDELs from pooled high-throughput NGS, not used for analysis of single samples; implemented in C and uses SAMtools API; latest version should work with diploid genomes</li>
<li>Input: requires BAM files (aligned with GATK)</li>
<li>Reference Genome: indexed FASTA file</li>
<li>Output: VCF files</li>
</ul>
</li>
<li><strong><a href="http://www.sanger.ac.uk/resources/software/dindel/">Dindel</a></strong>
<ul>
<li>Description: (Wellcome Trust Sanger) calls small indels from short-read sequences, only can handle Illumina data; cannot test candidate indels; written in C++, used on Linux based and Mac computers (not tested in windows)</li>
<li>Input: BAM files</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://colibread.inria.fr/software/discosnp/">discoSnp++</a></strong>
<ul>
<li>Description: detects homozygous and heterozygous SNPs and Indels; software composed of 2 modules (kissnp2 and kissreads)</li>
<li>Input: raw NGS datasets; fasta, fastq, gzipped or not;</li>
<li>no reference genome required; read pairs can be given</li>
<li>Output: FASTA</li>
</ul>
</li>
<li><strong><a href="http://odin.mdacc.tmc.edu/~wwang7/FamSeqIndex.html">FamSeq</a></strong>
<ul>
<li>Description: family-based sequencing studies- provides probability of an individual carrying variant based on family&rsquo;s raw measurements; accommodates de novo mutations, can perform variant calling at chrX;</li>
<li>Input: VCF</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://sourceforge.net/p/%20geneticthesaurus/wiki/Example/">GeneticThesaurus</a></strong>
<ul>
<li>Description: &ldquo;Annotation of genetic variants in repetitive regions&rdquo;</li>
<li>Input: Initial variant calling from bam &rarr; vcf output</li>
<li>Reference Genome: need to provide own fasta file for hg19 genome,</li>
<li>Output: vcf.gz, vtf.gz, and baf.tsv.gz output</li>
</ul>
</li>
<li><strong><a href="http://genome.sph.umich.edu/wiki/GlfMultiples">glfMultiples</a></strong>
<ul>
<li>Description: command-line, variant caller</li>
<li>Input: GLF</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://genome.sph.umich.edu/wiki/GlfSingle">glfSingle</a></strong>
<ul>
<li>Description: uses likelihood-based model for variant calling, starts from genotype likelihoods that have been computed from other tools (ex. Samtools BAQ), the likelihoods combine with individual-based prior p(genotype) to generate posterior probabilities</li>
<li>Input: GLF</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="https://github.com/ddcap/halvade">Halvade</a></strong>
<ul>
<li>Description: command-line; written in Java, &ldquo;to run halvade a reference is needed for both GATK and BWA and a SNP (dbSNP!) database is required</li>
<li>Input: FASTQ</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="https://github.com/aakrosh/indelMINER">indelMINER</a></strong>
<ul>
<li>Description: identifies indels from paired-end reads</li>
<li>Input: BAM (aligned in SAMtools API)</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="https://www.broadinstitute.org/cancer/cga/indelocator">Indelocator</a></strong>
<ul>
<li>Description: (Broad Institute): does not perform realignment, relies on alignments in BAM files (BAM files need aligned before put into indelocator); recommended to use GATK prior;</li>
<li>Input: 2 BAM files(tumor &amp; normal), annotated as germline or somatic; also has single sample mode</li>
<li>Output: &ldquo;Output of Indelocator is a high-sensitivity list of putative indel events containing large numbers of false positives. The statistics reported for each event have to be used to custom-filter the list in order to lower false positive rate&rdquo;</li>
</ul>
</li>
<li><strong><a href="https://github.com/sequencing/isaac_variant_caller">Isaac Variant Caller</a></strong>
<ul>
<li>Description: detects SNPs and small indels from diploid sample; designed to run on &ldquo;nux-like platforms&rdquo;</li>
<li>Input: BAM</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://www.swisstph.ch/kvarq">KvarQ</a></strong>
<ul>
<li>Description: in silico genotyping for selected loci in bacterial genome, written in Python and C</li>
<li>Input: FASTQ</li>
<li>reference genome or de novo assembly not needed</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://sourceforge.net/projects/lofreq/files/">LoFreq</a></strong>
<ul>
<li>Description: SNV caller, Python language, standalone program, uncovers cell-population heterogeneity from high-throughput sequencing datasets; calls variants found in &lt;.05% of the population</li>
<li>Input: BAM file input&rarr; suggest running through GATK</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="https://github.com/Illumina/manta">Manta</a></strong>
<ul>
<li>Description: Calls indels and SVs from paired end reads; standalone, command line program; Written in C++ and Python</li>
<li>Input: BAM (can tolerate non-paired-end reads); a matched tumor sample may be provided as well</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="https://github.com/benedictpaten/marginAlign">MarginAlign</a></strong>
<ul>
<li>Description: SNV caller, specifically tailored to Oxford Nanopore Reads, written in Python; Package comes with 3 programs, marginAlign, marginCaller (calls SNVs), marginStats (computes qc stats on sam files)</li>
<li>Input: SAM</li>
<li>Output: SAM</li>
</ul>
</li>
<li><strong><a href="http://gmt.genome.wustl.edu/packages/mendelscan/">MendelScan</a></strong>
<ul>
<li>Description: Last release March 2014; for analyzing sequencing data in family studies of inherited diseases; variant calls for a family in VCF file; still in alpha-testing on github, example data uses 1000 genomes dataset</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="https://github.com/mitenjain/nanopore">nanopore</a></strong>
<ul>
<li>Description: UCSC Nanopore group (group at UCSC studying using ion channels for analysis of single RNA/DNA structures) software pipeline; tailored to Oxford Nanopore Reads; command line program</li>
<li>Input: FASTQ</li>
<li>Reference files: FASTA</li>
<li>Output: &ldquo;For each possible pair of read file, reference genome and mapping algorithm an experiment directory will be created in the nanopore/output directory.&rdquo;</li>
</ul>
</li>
<li><strong><a href="http://omictools.com/platypus-s1989.html">Platypus</a></strong>
<ul>
<li>Description: Package program, written in C, Python, Cython; Can identify SNPs, MNPs, short indels, and larger variants; has been tested on very large datasets (1000 genomes)</li>
<li>Input: BAM</li>
<li>Reference Genome: FASTA (files must be indexed using Samtools or similar program</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://www.bioinformatics.nl/QualitySNPng/">QualitySNPng</a></strong>
<ul>
<li>Description: detection of SNPs; &ldquo;can be used as a standalone application with graphical user interface as part of pipeline system&rdquo;; does not require fully sequenced reference genome; haplotype strategy</li>
<li>Input:SAM, ACE</li>
<li>Output: GUI</li>
</ul>
</li>
<li><strong><a href="http://revister.sourceforge.net/">ReviSTER</a></strong>
<ul>
<li>Description: command line program; automated pipeline; utilizes BWA, BLAT, and SAMTools; utilizes BWA mapping program;</li>
<li>Input: FASTQ,</li>
<li>Reference sequence file and list file containing STR locations as inputs</li>
<li>Output: SAM</li>
</ul>
</li>
<li><strong><a href="http://dna-discovery.stanford.edu/software/rvd/">RVD</a></strong>
<ul>
<li>Description: command-line program, detection of rare SNVs, relies upon Samtools, can be run in MATLAB</li>
<li>Input: BAM</li>
<li>Reference Genome: FASTA</li>
<li>Output: &ldquo;The algorithm output is a call table -- a comma-separated file with one line for each base position and each line in the following format:</li>
<li>AlginmentReferencePosition, AlignmentBase, Call ,SecondBase, CenteredErrorPrc, ReferenceErrorPrc, SecondBasePrc&rdquo;</li>
</ul>
</li>
<li><strong><a href="http://snver.sourceforge.net/">SNVer</a></strong>
<ul>
<li>Description: calls common and rare variants in pool or individual NGS data, reports overall p-value, operating system independent statistical tool, identifies SNPs and INDELs, written in Java, no dependencies, straightforward command-line</li>
<li>(SNVerGUI=GUI version) --SNVerGUI: desktop tool for variant detection</li>
<li>Input: chrX annotation, sam.zip, bam.zip</li>
<li>reference file must be aligned to the data file</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://compbio.bccrc.ca/software/snvmix/">SNVMix</a></strong>
<ul>
<li>Description: detects SNVs from NGS, post-alignment tool</li>
<li>Input: pileupformat (Maq or Samtools)</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://www.bsse.ethz.ch/mlcb/research/bioinformatics-and-computational-biology/structural-variant-machine--sv-m-.html">SV-M</a></strong>
<ul>
<li>Description: Structural Variant Machine - predicts indels, uses split read alignment profiles, validated by Sanger Sequencng</li>
<li>Input:paired-end Illumina reads from 1001 genomes project (uses ref plant- 1001genomes.org)</li>
<li>Ouptut:</li>
</ul>
</li>
<li><strong><a href="https://github.com/slindgreen/SNPest">SNPest</a></strong>
<ul>
<li>Description: Standalone program, language C++, Perl</li>
<li>Input: mpileup (SAMtools)</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://genome.sph.umich.edu/wiki/TrioCaller">TrioCaller</a></strong>
<ul>
<li>Description:Command line program, relies on BWA and samtools; genotype calling for unrelated individuals and parent-offspring trios</li>
<li>Input: BAM (that has been aligned in BWA and Samtools</li>
<li>Output: BCF that can be formatted to VCF using bcftools</li>
</ul>
</li>
<li><strong><a href="http://www.vicbioinformatics.com/software.snippy.shtml">Snippy</a></strong>
<ul>
<li>Description: finds indels between haploid reference genome and NGS sequence reads</li>
<li>Input:read files- FASTQ or FASTA (can be .gz compressed), output- .aln, .tab, .txt</li>
<li>Reference genome in FASTA or GENBANK</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://orca.bu.edu/vntrseek/">VntrSeek</a></strong>
<ul>
<li>Description: pipeline for discovering microsatellite tandem repeats with high-throughput sequencing data</li>
<li>Input: gzip-compressed FASTA or FASTQ</li>
<li>Output: VCF files; one for TRs and observed alleles, another file contains link to viewer</li>
</ul>
</li>
</ol><h3><a href="https://github.com/NCBI-Hackathons/Community_Software_Tools_for_NGS/blob/master/NGS_Tools_List.md#somatic-callers"></a>Somatic Callers</h3><ol>
<li><strong><a href="http://cakesomatic.sourceforge.net/">Cake</a></strong>
<ul>
<li>Description: standalone program, &ldquo;pipeline for the integrated analysis of somatic variants in cancer genomes&rdquo;; integrates four algorithms; written in Perl; required tools: samtools, tabix, vcftools, VarScan2, bambino, cmake, somaticsniper (User guide; workflow page)</li>
<li>Input: tumor and normal reads in BAM files, run through variant calling programs to generate intermediate VCF</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://www.broadinstitute.org/cancer/cga/mutect">MuTect</a></strong>
<ul>
<li>Description: Broad Institute, identification of somatic point mutations in cancer genomes; requires preprocessing of reads (GATK)</li>
<li>Input: same as GATK (FASTA reference genome, SAM read files)</li>
<li>Output: call-stats, VCF, wiggle files</li>
</ul>
</li>
<li><strong><a href="http://genome.sph.umich.edu/wiki/Polymutt">Polymutt</a></strong>
<ul>
<li>Description: calls SNVs and detects de novo point mutations in families</li>
<li>Input: GLF or BAM or VCF (must have identical chromosome orders)</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://tvap.genome.wustl.edu/tools/bassovac/">Bassovac</a></strong>
<ul>
<li>Description: Improved Bayesian inversion somatic caller; unlike other software packages, treats effects fully probabilisticallys instead of using ad-hoc modeling; effects are integrated at the atomic level and standard probability theory integrates read tallies to the sample level and to the tumor-normal pair level; "pending public release"</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://bioinformatics.ustc.edu.cn/CLImAT/">CLImAT</a></strong>
<ul>
<li>Description: standalone program; &ldquo;accurate detection of copy number alteration and loss of heterozygosity in impure and aneuploid tumor samples using whole genome sequencing data&rdquo;</li>
<li>Input: depth file generated by DFExtract and a config file</li>
<li>Output: .results file, .Gtype, LOG.txt, also generates visualization</li>
</ul>
</li>
<li><strong><a href="http://denovogear.sourceforge.net/">DeNovoGear</a></strong>
<ul>
<li>Description: de-novo variant calling and interpretation; standalone program; dependencies C++ compiler, CMake, HTSlib, Eigen, Boost</li>
<li>Input: PED and BCF</li>
<li>Output: &ldquo;The output format is a single row for each putative de novo mutation (DNM), with the following fields&rdquo;</li>
</ul>
</li>
<li><strong><a href="https://github.com/friend1ws/EBCall">EBCall</a></strong>
<ul>
<li>Description: Empirical Baysian Mutation Calling; standalone program; uses tumor/normal paired reads and non-paired normal reference samples; dependent on samtools, R and VGAM pack for R</li>
<li>Input: BAM</li>
<li>Output: not sure what exact type of file- &ldquo;The format of the result is suitable for adding annotation by annovar.&rdquo;</li>
</ul>
</li>
<li><strong><a href="https://github.com/usuyama/hapmuc">HapMuc</a></strong>
<ul>
<li>Description: standalone program; &ldquo;utilizes the information of heterozygous germline variants near candidate mutations&rdquo;; Dependent upon- Boost, SAMtools, BEDtools; 3 step workflow</li>
<li>Input: BAM</li>
<li>Output: BED</li>
</ul>
</li>
<li><strong><a href="https://github.com/cui-lab/multigems">MultiGeMS</a></strong>
<ul>
<li>Description: Multi-sample Genotype Model Selection</li>
<li>Input: .txt, pileup (SAM/BAM converted to pileup format)</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="https://bitbucket.org/joseph07/multisnv/wiki/Home">MultiSNV</a></strong>
<ul>
<li>Description: command-line program; calls SNVs from NGS data from multiple samples from the same patient; dependent on R, Git, cmake, Boost and compile libraries</li>
<li>Input: BAM or pileup</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://compbio.bccrc.ca/software/mutationseq/">MutationSeq</a></strong>
<ul>
<li>Description: standalone program, somatic SNV detection in tumor/normal samples; dependent on python, bamtools, boost, and LAPACK</li>
<li>Input: BAM</li>
<li>Output: VCF4.1 consisting of two parts (meta information &amp; data lines)</li>
</ul>
</li>
<li><strong><a href="http://www.qcmg.org/bioinformatics/tiki-index.php">qSNP</a></strong>
<ul>
<li>Description: standalone program; SNV caller for somatic variants in &ldquo;low cellularity cancer samples&rdquo;</li>
<li>Input: BAM, dbSNP data, Illumina data, chrConv</li>
<li>Output: &ldquo;qSNP output files are named using a 4-element pattern: ...&rdquo;</li>
</ul>
</li>
<li><strong><a href="https://github.com/aradenbaugh/radia/">RADIA</a></strong>
<ul>
<li>Description: RNA and DNA Integrated Analysis for Somatic Mutation Detection; DNA only Method(tumor/normal pair, ignores RNA) or Triple BAM Method (uses all three datasets from same patient); dependent upon python, samtoools, pysam API, BLAT, SnpEff</li>
<li>Input: BAM</li>
<li>Reference Genome: FASTA indexed with SAMtools faidx</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://genomics.wpi.edu/rvd2/">RVD2</a></strong>
<ul>
<li>Description: sensitive, variant detection for low-depth targeted NGS data; python module or command- line program;</li>
<li>Input: tab- deliminted depth chart format (converted from pileup files)</li>
<li>Output: three hdf5 files and a vcf file</li>
</ul>
</li>
<li><strong><a href="https://github.com/nhansen/Shimmer">Shimmer</a></strong>
<ul>
<li>Description: standalone program; detects somatic SNVs with multiple testing correction, uses Fisher&rsquo;s exact test; dependent on git, samtools, R, R statmod package; for tumor/normal matched samples</li>
<li>Input: BAM</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://www.cs.helsinki.fi/en/gsa/snv-ppilp/">SNV-PPILP</a></strong>
<ul>
<li>Description: Refines GATK&rsquo;s Unified Genotyper SNV calls for &ldquo;multiple samples assumed to form a phylogeny&rdquo;</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://gmt.genome.wustl.edu/packages/somatic-sniper/">SomaticSniper</a></strong>
<ul>
<li>Description: command-line application to identify SNPs between tumor/normal pairs- predicts probability of difference between two</li>
<li>Input: BAM</li>
<li>Reference Genome in FASTA</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="https://sites.google.com/site/strelkasomaticvariantcaller/">Strelka</a></strong>
<ul>
<li>Description: somatic variant calling workflow for matched tumor-normal samples; detects indels; runs on *nux-like platform</li>
<li>Input: BAM (must be sorted and indexed)- Strelka does own realignment around indels-- don&rsquo;t need to do this type of pre-processing</li>
<li>Output: pair of VCF files</li>
</ul>
</li>
<li><strong><a href="http://www.pitt.edu/~wec47/triodenovo.html">Triodenovo</a></strong>
<ul>
<li>Description: Bayesian framework for calling de novo mutations in trios</li>
<li>Input: VCF file with PL or GL fields (recommend using GATK or samtools to generate)</li>
<li>Output: out_vcf</li>
</ul>
</li>
<li><strong><a href="http://lbg.med.unc.edu/~mwilkers/unceqr_dist/">UNCeqr</a></strong>
<ul>
<li>Description: finds somatic mutations using integration of DNA and RNA seq data-- boosts sensitivity for low purity tumors and rare mutations;</li>
<li>Input:&rdquo;can accept a variety of sequencing inputs and configurations&rdquo;</li>
<li>Output: &ldquo;table of somatically mutated sites and associated information. These somatic mutations can be annotated with predicted transcript and protein effects using third party tools, such as Annovar&rdquo;</li>
</ul>
</li>
<li><strong><a href="http://sourceforge.net/projects/virmid/">Virmid</a></strong>
<ul>
<li>Description: Virtual Microdissection for SNP calling; Java based; for disease-control matched samples; uncovers SNPs with low allele frequency by considering alpha contamination</li>
<li>Input: BAM (must be sorted and indexed- samtools sort)</li>
<li>Output: VCF and report file</li>
</ul>
</li>
</ol><h3><a href="https://github.com/NCBI-Hackathons/Community_Software_Tools_for_NGS/blob/master/NGS_Tools_List.md#germline--somatic--callers"></a>Germline + Somatic Callers</h3><ol>
<li><strong><a href="http://massgenomics.org/varscan">VarScan 2</a></strong>
<ul>
<li>Description: identify germline variants, private and shared variants, somatic mutations, and somatic CNVs; detects indels</li>
<li>Input: SAMtools pileup</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://genformatic.com/baysic/">BAYSIC</a></strong>
<ul>
<li>Description: Bayesian method; combines variant calls from different methods (GATK, FreeBayes, Atlas, Samtools, etc)</li>
<li>Input: VCF format from one or more variant calling programs</li>
<li>Output: VCF file containing integrated set of variant calls</li>
</ul>
</li>
<li><strong><a href="https://github.com/ding-lab/msisensor">MSIsensor</a></strong>
<ul>
<li>Description: Microsatellite instability detection; C++ program, detects somatic and germline variants in tumor-normal paired data</li>
<li>Input: BAM index files (normal and tumor)</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://faculty.washington.edu/browning/beagle/beagle.html">Beagle version 4</a></strong>
<ul>
<li>Description: software package: genotype calling, phasing, imputation of ungenotyped markers, and identity-by-descent segment detection:unsure if this one is in the right category; genotype calling, phasing, imputation of ungenotyped markers, and identity-by-descent segment detection;</li>
<li>Input: VCF</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://www.iro.umontreal.ca/~csuros/quadgt/">QuadGT</a></strong>
<ul>
<li>Description: software package, SNV calling from normal-tumor pair and two parent genomes; quantifies descent-by-modification relationships; Written in Java</li>
<li>Input: BAM files (parsed by Picard/Samtools API)</li>
<li>Reference Genome; FASTA</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="http://sourceforge.net/projects/rarevator/">RAREVATOR</a></strong>
<ul>
<li>Description: RAre REference VAriant annotaTOR; command line; &ldquo;identification and annotation of germline and somatic variants in rare reference allele loci from second generation sequencing data&rdquo;; Bayesian genotype likelihood model</li>
<li>Input: BED or VCF files from GATK</li>
<li>Output: two VCF files (one for SNVs, one for Indels)</li>
</ul>
</li>
<li><strong><a href="http://scalpel.sourceforge.net/">Scalpel</a></strong>
<ul>
<li>Description: Used for detecting indels in a reference genome; performs localized micro-assembly of specific regions of interest; can do single, de novo, somatic reads; requires that raw reads are aligned with BWA</li>
<li>Input: BAM</li>
<li>Output: either VCF or ANNOVAR</li>
</ul>
</li>
<li><strong><a href="http://soap.genomics.org.cn/soapsnp.html">SOAPsnp</a></strong>
<ul>
<li>Description: based on Baye&rsquo;s theorem; calls consensus genotype</li>
<li>Input:SOAP short read alignment results</li>
<li>Output: GLF, option of flat tabular format</li>
</ul>
</li>
<li><strong><a href="http://sourceforge.net/projects/variantmaster/">VariantMaster</a></strong>
<ul>
<li>Description: &ldquo;extract causative variants for monogenic and sporadic genetic diseases&rdquo;; uses ANNOVAR;</li>
<li>Input: BAM or VCF files (from SAMtools, GATK)</li>
<li>Output:</li>
</ul>
</li>
</ol><h2><a href="https://github.com/NCBI-Hackathons/Community_Software_Tools_for_NGS/blob/master/NGS_Tools_List.md#downstream-analysis-of-variants"></a>Downstream Analysis of Variants</h2><ol>
<li><strong><a href="https://github.com/hakyimlab/PrediXcan%20https://github.com/hriordan/PrediXcan/">PrediXcan</a></strong>
<ul>
<li>Description: command-line, standalone package program; available in Perl, Python, and R versions; predicts liklihood of a gene being related to a certain phenotype- &ldquo;that directly tests the molecular mechanisms through which genetic variation affects phenotype.&rdquo;; no actual expression data used, only in silico expression; &ldquo;PrediXcan can detect known and novel genes associated with disease traits and provide insights into the mechanism of these associations.&rdquo;</li>
<li>Input: genotype and phenotype file (doesn&rsquo;t specify file type)</li>
<li>Output:default values: genelist, dosages (file format: snpid rsid) , dosage_prefix, weights, output</li>
</ul>
</li>
<li><strong><a href="http://ritchielab.psu.edu/software/athena-downloads">ATHENA</a></strong>
<ul>
<li>Description: Analysis Tool for Heritable and Environmental Network Associations; software package, combines machine learning model with biology and statistics to predict non-linear interactions</li>
<li>Input: Configuration file, Data file, Map file (includes rsID)</li>
<li>Output: Summary file, Best model file, dot file, individual score file, cross-validation file</li>
</ul>
</li>
<li><strong><a href="http://www.sanger.ac.uk/resources/software/rarevariant/#t_2">CCRaVAT and QuTie</a></strong>
<ul>
<li>Description: (Wellcome Trust Sanger) Case-Control Rare Variant Analysis Tool and Quantitative Trait; software packages for large-scale analysis of rare variants</li>
<li>Input: PED file and MAP file</li>
<li>Output: Five tab-delimited txt files</li>
</ul>
</li>
<li><strong><a href="http://cnsgenomics.com/software/gcta/">GCTA</a></strong>
<ul>
<li>Description: Genome Wide Complex Trait Analysis; package program, command line interface; estimates variance by all SNPs; 5 main functions: &ldquo;data management, estimation of the genetic relationships from SNPs, mixed linear model analysis of variance explained by the SNPs, estimation of the linkage disequilibrium structure, and GWAS simulation&rdquo;</li>
<li>Input: PLINK binary PED files, MACH output format</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://genomecomb.sourceforge.net/">GenomeComb</a></strong>
<ul>
<li>Description: package for analysis of complete genome data; annotation using public data or custom tracks, automated primer desing for Sanger or Sequenom validation; &ldquo;The cg process_illumina command can be used to generate annotated multisample data starting from fastq files, using tools such as bwa for alignment and GATK and samtools for variant calling. Sequencing data can also be imported from Complete Genomics (cg_process_sample command), Real Time Genomics (cg_process_rtgsample command) and VariantCallFormat (VCF) variant files (vcf2sft command).&rdquo;</li>
<li>Input: Sequencing data from Complete Genomics, Illumina, SOLiD and VCF;</li>
<li>Output: standard file format used is a simple tab delimited file (.sft, .tsv)</li>
</ul>
</li>
<li><strong><a href="http://ancorr.eimb.ru/">Genome Track Analyzer</a></strong>
<ul>
<li>Description: compares genome tracks; allows user to compare DNA expression/binding;</li>
<li>Input: multiple: SGR/TXT, BED, BED6, GFF; if using prealigned sequence data- use MACS peak caller: BAM, BED, SAM, ELAND</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://animalgene.umn.edu/gvcblub">GVCBLUP</a></strong>
<ul>
<li>Description: animal gene mapping; &ldquo;genomic prediction and variance component estimation of additive and dominance effects&rdquo;; standalone program, command line interface, writting in C++ and Java</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://www.jurgott.org/linkage/homog.htm">HOMOG</a></strong>
<ul>
<li>Description: Analyzes heterogeneity with respect to single marker loci or known maps of markers; Carries out homogeneity test for alternative hypothesis &ldquo;Two family types, one with linkage betweeen a trait to a marker or map of markers, the other without linkage&rdquo;</li>
<li>Input: HOMOG.DAT - described on website</li>
<li>Output: HOMOG.OUT</li>
</ul>
</li>
<li><strong><a href="http://intersnp.meb.uni-bonn.de/">INTERSNP</a></strong>
<ul>
<li>Description: GWIA for case-control SNP and quantitative traits; selected for joint analysis using priori information; Provides linear regression framework, Pathway Association Analysis, Genome-wide Haplotype Analysis,</li>
<li>Input: PLINK input formats (ped/map, tped/tfam, bed/bim/fam) Compatible with SetID files</li>
<li>Gene reference file: Ensembl Release 75</li>
<li>Output: covariance matrix for regression models</li>
</ul>
</li>
<li><strong><a href="https://github.com/PMBio/mtSet">mtSet</a></strong>
<ul>
<li>Description: Currently only the standalone version available, but moving to LIMIX software suite; offers set tests- allows for testing between variants and traits; accounts for confounding factors ex. relatedness</li>
<li>Input: sample-to-sample genetic covariance matrix needs to be computed; multiple types of input; simulator requires input genotype and relatedness component;</li>
<li>Output: resdir (result file of analysis), outfile (test statistics and p-values), manhattan_plot (flag)</li>
</ul>
</li>
<li><strong><a href="http://dougspeed.com/multiblup/">MultiBLUP</a></strong>
<ul>
<li>Description: Package program, command line interface; constructs linear prediction models; Best Linear Unbiased Prediction; improves upon BLUP involving kinship matrices; options: pre-specified kinships, regional kinships, adaptive multiblups, LD weightings</li>
<li>Input: PLINK format</li>
<li>Output:.reml, .indi.blp</li>
</ul>
</li>
</ol><h2><a href="https://github.com/NCBI-Hackathons/Community_Software_Tools_for_NGS/blob/master/NGS_Tools_List.md#variant-annotation"></a>Variant Annotation</h2><ol>
<li><strong><a href="http://annovar.openbioinformatics.org/en/latest/">ANNOVAR</a></strong>
<ul>
<li>Description: command-line tool, supports SNPs, INDELs, CNVs and block substitutions, provides wide variety of annotation techniques, depends upon multiple databases (each needing to be downloaded); annotates genetic variants; utilizes RefSeq, UCSC Genes, and the Ensembl gene annotation systems; can compare mutations detected in dpSNP or 1000 Genomes Project; Very popular *&ldquo;The final command run TABLE_ANNOVAR, using dbSNP version 138, 1000 Genomes Project 2014 Oct version, NIH-NHLBI 6500 exome database version 2 (referred to as esp6400siv2), dbNFSP version 2.6 (referred to as ljb26), dbSNP version 138 (referred to as snp138) databases and remove all temporary files, and generates the output file called myanno.hg19_multianno.txt&rdquo;</li>
<li>Input: VCF, ANNOVAR input format (simple text-based format); can convert other formats into ANNOVAR input format</li>
<li>Output: VCF (if input VCF), output file with multiple columns, tab-delimited output file</li>
</ul>
</li>
<li><strong><a href="http://wannovar.usc.edu/">wANNOVAR</a></strong>
<ul>
<li>provides web-based access to ANNOVAR software</li>
</ul>
</li>
<li><strong><a href="http://genetics.bwh.harvard.edu/pph2/">PolyPhen-2</a></strong>
<ul>
<li>Description: Very popular; Polymorphism Phenotyping; Web application; predicts impact of amino acid substitution on protein; Calculates Bayes posterior probability (Last update July 2015)</li>
<li>Input: FASTA</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://sift.jcvi.org/">SIFT</a></strong>
<ul>
<li>Description: predicts how an amino acid substitution will affect protein function; Based on degree of conservation of amino acid residues- collected though PSI-BLAST; can be applied to nonsynonymous polymorphisms or laboratory-induced missense mutations; links to dbSNP 132, GRCh37; Standalone or web app program; Very popular</li>
<li>Input: Uniprot ID or Accession, Go term ID, Function name, Species Name or ID, etc</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://snpeff.sourceforge.net/">snpEff</a></strong>
<ul>
<li>Description: Genetic variant annotation and effect prediction toolbox; integrated with Galaxy, GATK, and GNKO; can annotate SNPs, INDELs, and multiple-nucleotide polymorphisms; categorizes effects into classes by functionality; Very popular; Standalone or Web app; Claims to calculate all SNPs in 1000 genomes (EMBI) in less than 15 minutes; can annotate SNPs, MNPs, and insertions and deletions; Provides assessment of impact of the variant ( low, medium or high)</li>
<li>Input: VCF, BED</li>
<li>Output: VCF (with new ANN field, also used in ANNOVAR and VEP), HTML summary files</li>
</ul>
</li>
<li><strong><a href="http://snpeff.sourceforge.net/SnpSift.html">SnpSIFT</a></strong>
<ul>
<li>Description: Filter and manipulate annotated files; Part of SnpEff main distribution; one variants have been annotated, this can be used to filter your data to find relevant variants</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://www.yandell-lab.org/software/vaast.html">VAAST 2</a></strong>
<ul>
<li>Description: Variant Annotation, Analysis, and Search Tool; probabilistic search tool for identifying damage genes and the disease causing variants; can score both coding and non-coding variants; Four tools: VAT (Variant annotation tool), VST (Variant Selection Tool), VAAST, pVAAST (for pedigree data); updated April 2015</li>
<li>Input: FASTA, GFF3, GVF</li>
<li>Output: CDR (condenser file), VAAST file (both unique to VAAST)</li>
</ul>
</li>
<li><strong><a href="http://useast.ensembl.org/info/docs/tools/vep/index.html?redirect=no">VEP</a></strong>
<ul>
<li>Description: (Ensembl) Variant Effect Predictor; determines effect of variants on genes, transcripts, and protein sequence; uses SIFT and PolyPhen</li>
<li>Input: Coordinates of variants and nucleotide changes; whitespace- separated format, VCF, pileup, HGVS</li>
<li>Output: VCF, JSON, Statistics</li>
</ul>
</li>
<li><strong><a href="http://www.broadinstitute.org/cancer/cga/absolute">ABSOLUTE</a></strong>
<ul>
<li>Description: (Broad Institute); can estimate purity and ploidy to compute absolute copy number and mutation multiplicitie; reextracts data from the mixed DNA population</li>
<li>Input: HAPSEQ segdat or segmentation file</li>
<li>Output: per-sample output directory and subdirectory providing per-sample text files containing standard out being emitted from R</li>
</ul>
</li>
<li><strong><a href="http://www.interactive-biosoftware.com/alamut-batch/">Alamut Batch</a></strong>
<ul>
<li>Description: high-throughput annotation software for NGS analysis; for &ldquo;intensive variant analysis workflows&rdquo;; &ldquo;enriches raw NGS variants with dozens of attributes&rdquo;; based on clinically oriented Alamut database; Supports human genes; easy to integrate into pipeline (Latest Release- July 2015)</li>
<li>Input:VCF, tab-delimted file</li>
<li>Output: tab-separated file of annotations</li>
</ul>
</li>
<li><strong><a href="http://avia.abcc.ncifcrf.gov/apps/site/index">AVIA</a></strong>
<ul>
<li>Description: Annotation, Visualization, and Impact Analysis; &ldquo;The tool is based on coupling a comprehensive annotation pipeline with a flexible visualization method. We leveraged the ANNOVAR (Wang et. al, 2010) framework for assigning functional impact to genomic variations by extending its list of reference annotation databases (RefSeq, UCSC, SIFT, Polyphen etc.) with additional in-house developed sources (Non-B DB, PolyBrowse).&rdquo;</li>
<li>Input: BED</li>
<li>Output: Table of annotations with gene annotation features</li>
</ul>
</li>
<li><strong><a href="http://bioinformaticstools.mayo.edu/research/bior/">BioR</a></strong>
<ul>
<li>Description: (Mayo Clinic) (Page last updated June 2015) Biological Reference Repository; &ldquo;data integration tool that enables coordinate based searches and joins based on strings&rdquo;; &ldquo;BioR consists of two parts 1) the BioR toolkit which depends on Java&hellip;. 2) the BioR catalogs which are the data files used by the system&rdquo;</li>
<li>Input: VCF</li>
<li>BioR-Supported Catalogs (tar-gzip files): dbSNP, 1000 genomes, HapMap, OMIM, NCBIGene</li>
<li>Output: VCF + JSON</li>
</ul>
</li>
<li><strong><a href="http://cadd.gs.washington.edu/">CADD</a></strong>
<ul>
<li>Description: Combined Annotation Dependent Depletion; tool for scoring SNV deletions/insertions; &ldquo;integrates multiple annotations into one metric&rdquo;; Score strongly correlates with allelic diversity and pathogenicity; links to 1000 Genome variants; uses Ensembl Variant Effect Predictor</li>
<li>Input: VCF</li>
<li>Output: CADD score</li>
</ul>
</li>
<li><strong><a href="http://www2.hu-berlin.de/wikizbnutztier/software/CandiSNPer/">CandiSNPer</a></strong>
<ul>
<li>Description: web application, characterizes SNPs located in vicinity of SNP of interest;</li>
<li>Input: enter SNP ID (rsID), choose population, region, measure for LD, threshold plot format, color of SNPs, and chose to show genes</li>
<li>Output: Imagefile</li>
</ul>
</li>
<li><strong><a href="https://github.com/UppsalaGenomeCenter/CanvasDB">CanvasDB</a></strong>
<ul>
<li>Description: &ldquo;local database infrastructure for analysis of targeted- and whole genome re-sequencing projects&rdquo;; dependent on MySQL, R, and ANNOVAR</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://www.sanger.ac.uk/resources/software/carol/">CAROL</a></strong>
<ul>
<li>Description: (Wellcome Trust Sanger); Combined Annotation scoRing toOL; Combined functional annotation score of nonsynonymous coding variants; Combines information from PolyPhen-2 and SIFT</li>
<li>Input: tab-delimited with columns obtained from PolyPhen-2 and SIFT output</li>
<li>Output: tab-delimited file</li>
</ul>
</li>
<li><strong><a href="http://wiki.chasmsoftware.org/index.php/Main_Page">CHASM</a></strong>
<ul>
<li>Description: Cancer-specific High-throughput Annotation of Somatic Mutations; Last updated May 2014; uses Random Forest Method to &ldquo;distinguish between driver and passenger somatic mutations&rdquo;; Positive driver class curated from COSMIC database; packed together with SNVBox (database)</li>
<li>Input:Passenger mutation rates, Transcript and amino acid change, Genomic coordinates</li>
<li>Output: CHASM score, p-value, FDR</li>
</ul>
</li>
<li><strong><a href="http://www.cravat.us/">CRAVAT</a></strong>
<ul>
<li>Description: Cancer-Related Analysis of Variants Toolkit; Web application; Uses CHASM, VEST, SNVGet; &ldquo;CRAVAT provides predictive scores for germline variants, somatic mutations and relative gene importance, as well as annotations from published literature and databases&rdquo; Latest Release May 2015;</li>
<li>Input: VCF, CRAVAT format</li>
<li>Output: CRAVAT report- MS Excel spreadsheet or tab-separated file (emailed)</li>
</ul>
</li>
<li><strong><a href="http://cupsat.tu-bs.de/">CUPSAT</a></strong>
<ul>
<li>Description: Cologne University Protein Stability Analysis Tool; &ldquo;tool to predict changes in protein stability upon point mutations&rdquo;; web service program; Can predict mutant stability from existing PDB structures or custom protein structures</li>
<li>Input:for PDB- provide PDB ID and Amino Acid Residue Number; for custom- PDB file format</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="https://cbcl.ics.uci.edu/public_data/DANN/">DANN</a></strong>
<ul>
<li>Description: Deleterious Annotation of genetic variants; standalone program, uses &ldquo;the same feature set and training data as CADD to train a deep neural network&rdquo;; can catch nonlinear relationships; &ldquo;There are four different datasets: training, validation, testing, and ClinVar_ESP...The ClinVar_ESP dataset is also a testing set containing a set of &ldquo;gold standard&rdquo; pathogenic and benign variants&rdquo;</li>
<li>Input:</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://rulai.cshl.edu/cgi-bin/tools/ESE3/esefinder.cgi?process=matrices">ESEfinder</a></strong>
<ul>
<li>Description: Exonic Splicing Enhancer; useful for interpretation of point mutations/polymorphisms that are disease-associated; GUI interface; web app program</li>
<li>Input: FASTA</li>
<li>Output: html or plain text format, graphical display of results</li>
</ul>
</li>
<li><strong><a href="http://www.sanger.ac.uk/resources/software/exomiser/">Exomiser</a></strong>
<ul>
<li>Description: Wellcome Trust Sanger; functionally annotates variants from whole-exome sequencing data; Based on Jannovar and uses UCSC KnownGene; Java program; web app program (Page last modified Feb 2015)</li>
<li>Input: VCF</li>
<li>Output: TSV, VCF</li>
</ul>
</li>
<li><strong><a href="https://sites.google.com/site/famannotation/home">FamAn</a></strong>
<ul>
<li>Description: Automated variant annotation pipeline for family-based sequencing studies; Annotaties SNVs and INDELs; 4 models- autosomal dominant, autosomal recessive, de novo mutations and a general model; &ldquo;A variety of annotations are provided for each segregating variant: number of family (and family ID) each variant hits, variant genomic location and coding effect (based on snpEff), loss-of-function mutation annotation, selected ENCODE annotation, allele frequency in the 1000 Genomes Project, allele frequency in the Exome Variant Server (ESP6500), segmental duplication annotation, SIFT, PolyPhen2, LRT, MutationTaster, GERP++, PhyloP, SiPhy, etc.&rdquo; (Last updated May 2014)</li>
<li>Input: VCF</li>
<li>Output: two excel compatible outputs</li>
</ul>
</li>
<li><strong><a href="http://www.gene-talk.de/">GeneTalk</a></strong>
<ul>
<li>Description: Combines tool for filtering and data analysis with an online network for genetic professionals; Different degrees- basic license, premium license, in-house solution (the last ones are paid for- Commercial tool?)</li>
<li>Input: VCF</li>
<li>Output: GeneTalk Annotation- includes clinical data, medical relevance, scientific relevance (<a href="http://www.gene-talk.de/public/GeneTalk_Whitepaper_Annotations.pdf">http://www.gene-talk.de/public/GeneTalk_Whitepaper_Annotations.pdf</a>)</li>
</ul>
</li>
<li><strong><a href="http://genevetter.kidneyomics.org/">GeneVetter</a></strong>
<ul>
<li>Description: &ldquo;GeneVetter is a tool designed for investigation of the background prevalence of exonic variation in the Phase 3 1000 Genomes data under user defined filtering criteria&rdquo;; web app program; GeneVetter uses GRch37p4 (hs37d5.fa.gz), dbSNP build 138, 1000G Phase 3, clinvar_2014072</li>
<li>Input: VCF</li>
<li>Output: TIMS score, summary table, PCA plot</li>
</ul>
</li>
<li><strong><a href="http://www.broadinstitute.org/software/cprg/?q=node/31">GSITIC</a></strong>
<ul>
<li>Description: (Broad Institute) Last update- July 2014; Identifies genomic regions that are significantly &ldquo;amplified or deleted&rdquo;; Each is given a G score; gives genomic locations and q-values from aberrant regions</li>
<li>Input: segmentation file -seg, markers file -mk (required); -array file list -alf, CNV file -cnv</li>
<li>Reference genome: -refgene (created in MATLAB, GISITIC provides four reference genomes: hg16.mat, hg17.mat, hg18.mat, hg19.mat</li>
<li>Output: All lesions file (text file), amplifications file (text file), deletion genes file (text file), Gistic Scores file, Segmented copy number (pdf file), amplification score GISTIC plot (pdf file), Deletion score/q-vale GISTIC plot (pdf file)</li>
</ul>
</li>
<li><strong><a href="http://www.cmbi.ru.nl/hope/about">HOPE</a></strong>
<ul>
<li>Description: Have yOur Protein Explained; Web app program; Automatic mutant analysis server that provides structural effects of a mutation; Uses BLAST against UniProt and PDB along with homology modeling</li>
<li>Input: FASTA protein sequence, or accession code of protein of interest</li>
<li>Output: a report containing information from a &ldquo;decision tree&rdquo; and illustrated figures and animations</li>
</ul>
</li>
<li><strong><a href="http://umd.be/HSF/">Human Splicing Finder</a></strong>
<ul>
<li>Description: Last update: May 2013; aimed to help study pre-mRNA splicing; combines 12 algorithms to identify mutations&rsquo; effect on splicing motifs; uses ensembl database 70</li>
<li>Input: Gene Name, Ensembl transcript ID, Ensembl Gene ID, Consensus CDS, RefSeq Peptide ID, or own sequence (looks like you can enter FASTA)</li>
<li>Output: Chart with columns for predicted signal, predicted algorithm, cDNA position and interpretation</li>
</ul>
</li>
<li><strong><a href="http://larva.gersteinlab.org/">LARVA</a></strong>
<ul>
<li>Description: Large-scale Analysis of Variants in noncoding Annotations; New version released July 2015; Command-line program; used for studying noncoding variants; integrates comprehensive set of noncoding elements, modeling their mutation count; Dependent on C++ and BEDtools</li>
<li>Input: multiple</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://www.jurgott.org/linkage/LinkagePC.html">LINKAGE</a></strong>
<ul>
<li>Description:three main programs: mlink (calculates lod scores at fixed values for the recombination fraction in one interval of a genetic map), linkmap (calculates location scores for positions of a disease locus along a marker), and ilink (estimates parameters including recombination fractions, allele frequencies, penetrances, etc)</li>
<li>Input: pedfile (processed by MAKEPED) and datafile (reflects loci for each individual; set in PREPLINK)</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://sourceforge.net/projects/mnvannotationcorrector/">MAC</a></strong>
<ul>
<li>Description: MNV Annotation Corrector; Ad hoc software, fixes incorrect amino acid predictions that are caused by multiple nucleotide variations; Uses existing annotators ANNOVAR, SnpEff, VEP (last update April 2015) (only 1 download this week &rarr; not popular)</li>
<li>Input: List of called SNVs and corresponding BAM</li>
<li>Output: Report identifying block of mutation within codon (BMCs)</li>
</ul>
</li>
<li><strong><a href="http://genome.igib.res.in/mitomatic/">mit-o-matic</a></strong>
<ul>
<li>Description: focuses on mtDNA, provides clinically relevant information from different resources; two component pipeline: command link for alignment of NGS reads and online version that provides genetic report on mitocondrial variants</li>
<li>Input:FASTQ, pileup</li>
<li>Reference sequence: rCRSm</li>
<li>Output: Online version gives comprehensive genetic report</li>
</ul>
</li>
<li><strong><a href="http://krauthammerlab.med.yale.edu/mutadelic/index.html">Mutadelic</a></strong>
<ul>
<li>Description: Web App program; &ldquo;This application generates reports on inherited mutations in five genes (ANK1, SLC4A1, SPTA1, SPTB and EPB42) associated with the following rare Mendelian blood disorders: Hereditary Spherocytosis (HS), Hereditary Elliptocytosis (HE) and Hereditary Pyropoikilocytosis&rdquo;; Newer program- recently validated on omictools</li>
<li>Input: Can upload coordinates of DNA variants or VEP</li>
<li>Output: Displayed on web or can be downloaded in Excel or RDF format</li>
</ul>
</li>
<li><strong><a href="http://www.mutationtaster.org/">MutationTaster</a></strong>
<ul>
<li>Description: (Last post on site 2014) Web app program; Rapid evaluation of disease causing alterations; uses NCBI 37 and Ensembl 69</li>
<li>Input: HGNC symbol, NCBI GeneID, or Ensembl ID,</li>
<li>Output: Report containing prediction, summary, name of alteration, etc</li>
</ul>
</li>
<li><strong><a href="http://mutpred.mutdb.org/">MutPred</a></strong>
<ul>
<li>Description: web app tool; Classifies amino acids substituation as disease associated or neutral in humans; Last modified Feb. 2014; Based on SIFT, trained using Human Gene Mutation Database</li>
<li>Input:</li>
<li>Output: &ldquo;The output of MutPred contains a general score (g), i.e., the probability that the amino acid substitution is deleterious/disease-associated, and top 5 property scores (p), where p is the P-value that certain structural and functional properties are impacted.&rdquo;</li>
</ul>
</li>
<li><strong><a href="http://www.broadinstitute.org/cancer/cga/mutsig">MutSigCV</a></strong>
<ul>
<li>Description: (Broad Institute) Mutation Significance (CV= covariates); Analyzes mutations discovered in DNA sequencing to identify genes that were mutated more often than expected</li>
<li>Input: mutations.maf, coverage.txt, covariates.txt</li>
<li>Output: output.txt</li>
</ul>
</li>
<li><strong><a href="http://stothard.afns.ualberta.ca/downloads/NGS-SNP/">NGS-SNP</a></strong>
<ul>
<li>Description: Collection of command-line scripts for providing rich SNP annotations; &ldquo;NCBI, Ensembl, and Uniprot IDs are provided for genes, transcripts and proteins when applicable&rdquo;;</li>
<li>Input: Samtools consensus pileup, Maq, diBayes, Genetic format, VCF</li>
<li>Output: File containing annotated SNPs is copied from SNP list and some classes are added</li>
</ul>
</li>
<li><strong><a href="http://www.broadinstitute.org/oncotator">Oncotator</a></strong>
<ul>
<li>Description: (Broad Institute) &ldquo;Tool for annotating human genomic point mutations and data relevant to cancer researchers&rdquo;; Web app; Supports annotation of data from ClinVar, dbSNP, 1000 genomes (plus many other external sites); Only GRCh27 coordinates supported; Last update: April 2015</li>
<li>Input: tal-delimited file</li>
<li>Output: tab-delimited MAF</li>
</ul>
</li>
<li><strong><a href="http://omictools.com/panther-s649.html">PANTHER</a></strong>
<ul>
<li>Description: Protein ANalysis THrough Evolutionary Relationships; Web app program, also has its own database; Classification system used to classify proteins and their genes; Also, &ldquo;Estimates the likelihood of a particular nonsynonymous (amino-acid changing) coding SNP to cause a functional impact on the protein&rdquo;; Updated in 2015</li>
<li>Input: Data from PANTHER, IDs from Ensembl, EntrezGene, NCBI GI numbers, NCBI UniGene IDs HUGO, UniProt; if ID type is not one of the above, can input txt file or excel format</li>
<li>Output: Analysis results displayed online</li>
</ul>
</li>
<li><strong><a href="http://cubio.biology.columbia.edu/pesx/pesx/">PESX</a></strong>
<ul>
<li>Description: Putative Exonic Splicing Enhancers/Silencers; (Can&rsquo;t tell if this is outdated or not)</li>
<li>Input: FASTA or plain text</li>
<li>Output: Excel spread sheet</li>
</ul>
</li>
<li><strong><a href="http://phen-gen.org/index.html">Phen-Gen</a></strong>
<ul>
<li>Description: Combines patient's&rsquo; disease symptoms with sequencing data; Standalone or Web app version; Only excepts 1 family per run, in order to evaluate unrelated individuals, each sample needs to be run individually</li>
<li>Input: Variant- VCF; Pheotype- HPO; Pedigree- PED</li>
<li>Output: Combined scores file, variants for top genes file</li>
</ul>
</li>
<li><strong><a href="http://mmb.pcb.ub.es/PMut/">PMUT</a></strong>
<ul>
<li>Description: Aimed at annotation and prediction of pathological mutations; based on different kinds of sequence info and neural networks to process information</li>
<li>Input: FASTA</li>
<li>Output; Simple yes/no and reliability index</li>
</ul>
</li>
<li><strong><a href="http://provean.jcvi.org/index.php">PROVEAN</a></strong>
<ul>
<li>Description: Protein Variation Effect Analyzer; predicts whether an amino acid substitution or indel has impact on biological function of the protein; &ldquo;comparable to SIFT or Polyphen-2&rdquo;; Standalone, Web app, Command line or GUI; Last update May 2014</li>
<li>Input: FASTA, list of variants;</li>
<li>Output: tab-separated columns including Variant, Provean Score and prediciton</li>
</ul>
</li>
<li><strong><a href="http://genes.mit.edu/burgelab/rescue-ese/">Rescue-ESE</a></strong>
<ul>
<li>Description: &ldquo;An online tool for identifying candidate ESEs in vertebrate exons&rdquo;; Web application; For human, mouse, zebrafish, pufferfish</li>
<li>Input: multi-FASTA or plain text</li>
<li>Output:</li>
</ul>
</li>
<li><strong><a href="http://scandb.org/newinterface/index_v1.html">SCAN</a></strong>
<ul>
<li>Description: Web application program, includes a database as well; Database contains physical-based SNP annotations and functional annotations; &ldquo;Information on physical, functional, and LD annotation served on the SCAN database comes directly from public resources, including the HapMap (release 23a), NCBI (dbSNP 129), or is information created by us using data downloaded from these public resources&rdquo;; &ldquo;SCAN can be utilized in several ways including: (i) queries of the SNP and gene databases; (ii) analysis using the attached tools and algorithms; (iii) downloading files with SNP annotation for various GWA platforms&rdquo;</li>
<li>Input:</li>
<li>Output: HTML, comma-delimited, tab-delimited</li>
</ul>
</li>
<li><strong><a href="http://snp.gs.washington.edu/SeattleSeqAnnotation137/">SeattleSeq Annotation</a></strong>
<ul>
<li>Description: &ldquo;SeattleSeqAnnotation137 was most recently updated October 13, 2013. The current version is 8.08. The most recent site, based on dbSNP build 141, and hg38/NCBI 38&rdquo;; Provides annotations for SNVs and Indels- includes dbSNP rsID, gene names and accession numbers, variation functions, protein positions and amino acid changes, conservation scores, HapMap frequencies, PolyPhen predictions and clinical association.</li>
<li>Input: Maq, gff, CASAVA, VCF, GATK bed, custom</li>
<li>Output: &ldquo;default output file format is a header line (starting with "#") followed by tab-separated annotations&rdquo;; VCF</li>
</ul>
</li>
<li><strong><a href="https://cran.r-project.org/web/packages/seqminer/">seqminer 3.7</a></strong>
<ul>
<li>Description: &ldquo;Efficiently Read Sequence Data (VCF Format, BCF Format and METAL Format) into R&rdquo;; Command line package program; Published August 2015</li>
<li>Input: VCF, BCF</li>
<li>Output: VCF</li>
</ul>
</li>
<li><strong><a href="https://genomics.scripps.edu/ADVISER/Home.jsp">SG Adviser</a></strong>
<ul>
<li>Description: Scripps Genome Annotation and Distributed Variant Interpretation Server, web developed applications for variant annotation, &ldquo;Downstream applications of variant annotation include: Clinical sequencing applications including: carrier testing, or identification of causal variants in molecular diagnosis, tumor sequencing, or diagnostic odyssey. Prioritization of variants prior to statistical analysis of sequence based disease association studies, especially for automated set-generation and enrichment of likely functional variants within sets. Identification of causal variants in post-GWAS/linkage sequencing studies. Identification of causal variants in forward genetic screens (stay tuned for non-human annotation)&rdquo;</li>
<li>Input: SNV- VCF, BED, and a few others; CNV- BED, CNVator, plus others</li>
<li>Output: tab-delimited file</li>
</ul>
</li>
<li><strong><a href="https://rostlab.org/services/snap/">SNAP-2</a></strong>
<ul>
<li>Descriptio</li></ul></li></ol>]]></description>
	<dc:creator>Jitendra Prajapati</dc:creator>
</item>
<item>
	<guid isPermaLink="true">https://bioinformaticsonline.com/bookmarks/view/26925/reapr-a-universal-tool-for-genome-assembly-evaluation</guid>
	<pubDate>Wed, 06 Apr 2016 18:26:31 -0500</pubDate>
	<link>https://bioinformaticsonline.com/bookmarks/view/26925/reapr-a-universal-tool-for-genome-assembly-evaluation</link>
	<title><![CDATA[REAPR: a universal tool for genome assembly evaluation]]></title>
	<description><![CDATA[<p>REAPR is a tool that evaluates the accuracy of a genome assembly using mapped paired end reads, without the use of a reference genome for comparison. It can be used in any stage of an assembly pipeline to automatically break incorrect scaffolds and flag other errors in an assembly for manual inspection. It reports mis-assemblies and other warnings, and produces a new broken assembly based on the error calls.</p>
<p>The software requires as input an assembly in FASTA format and paired reads mapped to the assembly in a BAM file. Mapping information such as the fragment coverage and insert size distribution is analysed to locate mis-assemblies. REAPR works best using mapped read pairs from a large insert library (at least 1000bp). Additionally, if a short insert Illumina library is also available, REAPR can combine this with the large insert library in order to score each base of the assembly.</p>
<p>http://www.sanger.ac.uk/science/tools/reapr</p><p>Address of the bookmark: <a href="https://genomebiology.biomedcentral.com/articles/10.1186/gb-2013-14-5-r47" rel="nofollow">https://genomebiology.biomedcentral.com/articles/10.1186/gb-2013-14-5-r47</a></p>]]></description>
	<dc:creator>Jitendra Prajapati</dc:creator>
</item>

</channel>
</rss>