view README.html @ 15:a675b4534b19 draft

Uploaded
author petr-novak
date Fri, 24 Apr 2020 08:53:51 -0400
parents a4cd8608ef6b
children
line wrap: on
line source

<?xml version="1.0" encoding="UTF-8" ?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN"
	"http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">

<html xmlns="http://www.w3.org/1999/xhtml">

<head>
<title>README.html</title>

</head>

<body>

<h1>RepeatExplorer utilities</h1>
<p>This repository include utilities for preprocessing of NGS data to suitable format for RepeatExplorer  and TAREAN 
analysis. Each tool include also XML file which define tool interface for Galaxy environment</p>
<h2>Available tools</h2>
<h3>Paired fastq reads filtering and interlacing</h3>
<p>tool definition file: <code>paired_fastq_filtering.xml</code></p>
<p>This tool is designed to make memory efficient preprocessing of two fastq files. Output of this file can be used as input of RepeatExplorer clustering. Input files can be in GNU zipped archive (.gz extension). Reads are filtered based on the quality, presence of N bases and adapters. Two input fastq files are procesed in parallel. Only complete pair are kept. As the input files are process in chunks, it is required that pair reads are complete and in the same order in both input files. All reads which pass the quality filter fill be writen into output files. If sampling is specified, only sample of sequences will be returned. Cutadapt us run with this options:</p>
<p><code>--anywhere='AATGATACGGCGACCACCGAGATCTACACTCTTTCCCTACACGACGCTCTTCCGATCT'
--anywhere='AGATCGGAAGAGCGTCGTGTAGGGAAAGAGTGTAGATCTCGGTGGTCGCCGTATCATT'
--anywhere='GATCGGAAGAGCACACGTCTGAACTCCAGTCAC'
--anywhere='ATCTCGTATGCCGTCTTCTGCTTG'
--anywhere='CAAGCAGAAGACGGCATACGAGAT'
--anywhere='GTGACTGGAGTTCAGACGTGTGCTCTTCCGATC'
--error-rate=0.05
--times=1 --overlap=15 --discard</code></p>
<p>Order of fastq files processing</p>
<ol>
<li>Trimming (optional)</li>
<li>Filter by quality</li>
<li>Discard single reads, keep complete pairs</li>
<li>Cutadapt filtering</li>
<li>Discard single reads, keep complete pairs</li>
<li>Sampling (optional)</li>
<li>Interlacing two fasta files</li>
</ol>
<h3>single fastq reads filtering</h3>
<p>tool definition file: <code>single_fastq_filtering.xml</code></p>
<p>This tool is designed to perform preprocessing
of fastq file. Input files can be in GNU zipped archive (.gz extension). Reads
are filtered based on the quality, presence of N bases and adapters. All reads
which pass the quality filter fill be writen into output files. If sampling is
specified, only sample of sequences will be returned. </p>
<h3>fasta afixer</h3>
<p>tool definition file: <code>fasta_affixer.xml</code></p>
<p>Tool for appending prefix and suffix to sequences names in fasta formated sequences. This tool is useful
if you want to do comparative analysis with RepeatExplorer and need to
append sample codes to sequence identifiers</p>
<h2>Dependencies</h2>
<p>R programming environment with installed packages <em>optparse</em> and <em>ShortRead</em> (Bioconductor)
python3
cutadapt</p>
<h2>License</h2>
<p>Copyright (c) 2012 Petr Novak (petr@umbr.cas.cz), Jiri Macas and Pavel Neumann,
Laboratory of Molecular Cytogenetics(http://w3lamc.umbr.cas.cz/lamc/)
Institute of Plant Molecular Biology, Biology Centre AS CR, Ceske Budejovice, Czech Republic</p>
<p>This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.</p>
<p>This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program.  If not, see <a href="http://www.gnu.org/licenses/">http://www.gnu.org/licenses/</a>.</p>
</body>
</html>