Difference between revisions of "BEDTools"

From HPC users
Jump to navigationJump to search
Line 9: Line 9:
The currently installed version is 2.26.0.
The currently installed version is 2.26.0.


== Using BCFtools with the HPC Cluster ==
== Using BEDtools with the HPC Cluster ==


If you want to find out more about BCFtools on the HPC Cluster, you can use the command
If you want to find out more about BEDtools on the HPC Cluster, you can use the command


  module spider bcftools
  module spider bedtools


This will show you basic informations e.g. a short description and the currently installed version.
This will show you basic informations e.g. a short description and the currently installed version.
Line 19: Line 19:
To load the module, use the command
To load the module, use the command


  module load BCFtools
  module load BEDTools


Always remember: this command is case sensitive!
Always remember: this command is case sensitive!


After loadind the module, you can use the program with
After loading the module, you can use the program with


  bcftools <command> <argument>
  bedtools <subcommand> [options]


== Documentation ==
== Documentation ==


The full documentation can be found [http://bedtools.readthedocs.io/en/latest/index.html# here].
The full documentation can be found [http://bedtools.readthedocs.io/en/latest/index.html# here].

Revision as of 09:28, 17 January 2017

Introduction

Collectively, the bedtools utilities are a swiss-army knife of tools for a wide-range of genomics analysis tasks. The most widely-used tools enable genome arithmetic: that is, set theory on the genome. For example, bedtools allows one to intersect, merge, count, complement, and shuffle genomic intervals from multiple files in widely-used genomic file formats such as BAM, BED, GFF/GTF, VCF. While each individual tool is designed to do a relatively simple task (e.g., intersect two interval files), quite sophisticated analyses can be conducted by combining multiple bedtools operations on the UNIX command line.

bedtools is developed in the Quinlan laboratory at the University of Utah and benefits from fantastic contributions made by scientists worldwide.

Installed version

The currently installed version is 2.26.0.

Using BEDtools with the HPC Cluster

If you want to find out more about BEDtools on the HPC Cluster, you can use the command

module spider bedtools

This will show you basic informations e.g. a short description and the currently installed version.

To load the module, use the command

module load BEDTools

Always remember: this command is case sensitive!

After loading the module, you can use the program with

bedtools <subcommand> [options]

Documentation

The full documentation can be found here.