Bedtools2.18: Difference between revisions

From HPCwiki
Jump to navigation Jump to search
(Created page with "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,...")
 
m (<source> to <pre> to fix code blocks)
 
(One intermediate revision by one other user not shown)
Line 5: Line 5:
== Module file ==
== Module file ==
The module file can be found in this location:
The module file can be found in this location:
   /cm/shared/apps/WUR/ABGC/modulefiles
   /cm/shared/modulefiles/SHARED/


<source lang='tcl'>
<pre>
#%Module1.0#######################################################################
#%Module1.0#######################################################################
## bedtools 2.18.0 modulefile
## bedtools 2.18.0 modulefile
Line 18: Line 18:
module-whatis  "Adds bedtools v2.18.0 to your environment"
module-whatis  "Adds bedtools v2.18.0 to your environment"


set            bedtools_2180_root        /cm/shared/apps/WUR/ABGC/bedtools/bedtools2.18.0/bin/
set            bedtools_2180_root        /cm/shared/apps/SHARED/bedtools/bedtools2.18.0/bin/


prepend-path    PATH            $bedtools_2180_root
prepend-path    PATH            $bedtools_2180_root


</source>
</pre>
 
== Installation details ==
== Installation details ==
Compiled from source using gcc 4.4.
Compiled from source using gcc 4.4.

Latest revision as of 15:38, 15 June 2023

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.

Module file

The module file can be found in this location:

 /cm/shared/modulefiles/SHARED/
#%Module1.0#######################################################################
## bedtools 2.18.0 modulefile
##
proc ModulesHelp { } {

        puts stderr "\tAdds bedtools v2.18.0 to your environment"
}

module-whatis   "Adds bedtools v2.18.0 to your environment"

set             bedtools_2180_root        /cm/shared/apps/SHARED/bedtools/bedtools2.18.0/bin/

prepend-path     PATH             $bedtools_2180_root

Installation details

Compiled from source using gcc 4.4.

See also

External links