• Home
  • History
  • Annotate
Name Date Size #Lines LOC

..03-May-2022-

Docs/H03-May-2022-355246

test_files/H07-May-2022-2120

.travis.ymlH A D19-Nov-20191 KiB3127

Changelog.mdH A D19-Nov-201919.3 KiB241153

LICENSEH A D19-Nov-201934.3 KiB675553

README.mdH A D19-Nov-20191.7 KiB3023

trim_galoreH A D03-May-2022122.5 KiB3,1202,314

README.md

1# Trim Galore
2_Trim Galore_ is a wrapper around [Cutadapt](https://github.com/marcelm/cutadapt) and [FastQC](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/) to consistently apply adapter and quality trimming to FastQ files, with extra functionality for RRBS data.
3
4[![Build Status](https://travis-ci.org/FelixKrueger/TrimGalore.svg?branch=master)](https://travis-ci.org/FelixKrueger/TrimGalore)
5[![install with bioconda](https://img.shields.io/badge/install%20with-bioconda-brightgreen.svg)](https://bioconda.github.io/recipes/trim-galore/README.html)
6[![container ready](https://quay.io/repository/biocontainers/trim-galore/status)](https://quay.io/repository/biocontainers/trim-galore)
7
8
9## Installation
10_Trim Galore_ is a a Perl wrapper around two tools: [Cutadapt](https://github.com/marcelm/cutadapt) and [FastQC](http://www.bioinformatics.babraham.ac.uk/projects/fastqc/). To use, ensure that these two pieces of software are available and copy the `trim_galore` script to a location available on the `PATH`.
11
12For example:
13```bash
14# Check that cutadapt is installed
15cutadapt --version
16# Check that FastQC is installed
17fastqc -v
18# Install Trim Galore
19curl -fsSL https://github.com/FelixKrueger/TrimGalore/archive/0.6.5.tar.gz -o trim_galore.tar.gz
20tar xvzf trim_galore.tar.gz
21# Run Trim Galore
22~/TrimGalore-0.6.5/trim_galore
23```
24
25## Documentation
26For instructions on how to use _Trim Galore_, please see the [User Guide](Docs/Trim_Galore_User_Guide.md).
27
28## Credits
29_Trim Galore_ was developed at The Babraham Institute by [@FelixKrueger](https://github.com/FelixKrueger/). You can find it's project page here: [bioinformatics.babraham.ac.uk](http://www.bioinformatics.babraham.ac.uk/projects/trim_galore/)
30