hal
文件大小: unknow
源码售价: 5 个金币 积分规则     积分充值
资源说明:Hierarchical Alignment Format
[![Build Status](https://api.travis-ci.org/ComparativeGenomicsToolkit/hal.svg?branch=master)]

Hierarchical Alignment (HAL) Format API (v2.2)
=====
Copyright (C) 2012 - 2014 by Glenn Hickey (hickey@soe.ucsc.edu)
Copyright (C) 2012-2022 by UCSC Computational Genomics Lab
Released under the MIT license, see LICENSE.txt

HAL is a structure to efficiently store and index multiple genome alignments and ancestral reconstructions.  HAL is a graph-based representation which provides several advantages over matrix/block-based formats such as MAF, such as improved scalability and the ability to perform queries with respect to an arbitrary reference or subtree.

This package includes the HAL API and several analysis and  conversion tools which are described below.  HAL files are presently stored in either [HDF5](http://www.hdfgroup.org/HDF5/) or `mmap` format, but we note that the tools and most of the API are format-independent, so other databases could be implemented in the future.

Citing
-----
Glenn Hickey, Benedict Paten, Dent Earl, Daniel Zerbino, and David
Haussler.  HAL: A Hierarchical Format for Storing and Analyzing
Multiple Genome Alignments. Bioinformatics. 2013. [Advance Online Access](http://bioinformatics.oxfordjournals.org/content/early/2013/03/16/bioinformatics.btt128.abstract)

Code Contributors
-----
* Glenn Hickey (UCSC)
* Joel Armstrong (UCSC)
* Ngan Nguyen (UCSC)
* Benedict Paten (UCSC)
* Melissa Jane Hubisz (Cornell)
* Mark Diekhans (UCSC)

Installation
-----

### Requirements
* gcc 4.2 or newer
* git

### Downloading HAL

From the parent directory of where you want HAL installed:

	 git clone https://github.com/ComparativeGenomicsToolkit/hal.git

### Installing Dependencies

#### HDF5 1.10.1 with C++ API enabled

* Using apt (Ubuntu 18.04)

    sudo apt install libhdf5-dev

* Using [MacPorts](http://www.macports.org/):

    sudo port install hdf5 @1.10.1 +cxx

* From [Source](http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/hdf5-1.10.1/src/):

     `wget http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/hdf5-1.10.1/src/hdf5-1.10.1.tar.gz`
	  `tar xzf  hdf5-1.10.1.tar.gz`
     `cd hdf5-1.10.1`
	  `./configure --enable-cxx`
	  `make && make install`

* Local install from source into DIR (do not need root password)

     `mkdir DIR/hdf5`
     `wget http://www.hdfgroup.org/ftp/HDF5/releases/hdf5-1.10/hdf5-1.10.1/src/hdf5-1.10.1.tar.gz`
	  `tar xzf  hdf5-1.10.1.tar.gz`
     `cd hdf5-1.10.1`
     `./configure --enable-cxx --prefix DIR/hdf5`
     `make && make install`

     Before building HAL, update the following environment variables:

     `export PATH=DIR/hdf5/bin:${PATH}`
     `export h5prefix=-prefix=DIR/hdf5`

     or set these in include.local.mk.

    If you are using older version of HDF5, such as installed on Centos,
    you may need to set

    `export CXX_ABI_DEF=-D_GLIBCXX_USE_CXX11_ABI=1`

    If you get undefined functions base on string type with errors about
    `std::__cxx11::basic_string` vs `std::basic_string`.

#### sonLib

From the same parent directory where you downloaded HAL:

	  git clone https://github.com/ComparativeGenomicsToolkit/sonLib.git
	  pushd sonLib && make && popd

If sonLib and HAL are not sister directories, set the sonLibRootDir `make` variable to reflect the absolute pathname of the directory where you installed sonLib:

    sonLibRootDir=/path/to/sonLib

either in an include.local.mk file top level hal/ directory, or as a `make` command argument, e.g.:

    pushd sonLib && make sonLibRootDir=/path/to/sonLib && popd

#### Optional support of reading HAL files over HTTP via UCSC's URL Data Cache (UDC)

Define ENABLE_UDC before making, and specify the path of the Kent source tree using KENTSRC.  When built with this enabled, all HAL files opened read-only will be accessed using UDC which supports both local files and URLs.

	  export  ENABLE_UDC=1
	  export  KENTSRC=

Those without the UCSC genome browser already installed locally will probably find it simpler to first mount URLs with [HTTPFS](http://httpfs.sourceforge.net/) before opening with HAL.

#### Optional support of PhyloP evolutionary constraint annotation

PhyloP is part of the [Phast Package](http://compgen.bscb.cornell.edu/phast/), and can be used to test for genomic positions that are under selective pressure.  We are working on prototype support for running PhyloP on HAL files.  In order to enable this support, Phast must be installed.  We recommend downloading the latest source using Subversion.

From the same parent directory where you downloaded HAL:

* First install CLAPACK (Linux only)

    `wget http://www.netlib.org/clapack/clapack.tgz`
    `tar -xvzf clapack.tgz`
    `mv CLAPACK-3.2.1 clapack`
    `cd clapack`
    `cp make.inc.example make.inc && make f2clib && make blaslib && make lib`
    `export CLAPACKPATH=$(pwd)` `
    `cd ..`

*  Install Phast (Mac or Linux)

     `git clone https://github.com/CshlSiepelLab/phast.git`
     `cd phast`
     `git checkout 85f7ed179dd097a86ba4added22d571785cc3e1d`
     `cd src && make`
     `cd ../..`

* Before building HAL

     `export ENABLE_PHYLOP=1`

Special thanks to Melissa Jane Hubiz and Adam Siepel from Cornell University for their work on extending their tools to work with HAL.

### Building HAL

From the hal/ directory:

	  make

Before using HAL, add it to your path:

	  export PATH=/bin:${PATH}

The parent directory of hal/ should be in your PYTHONPATH in order to use any of the Python functionality.  This includes running `make test`
	
	  export PYTHONPATH=:${PYTHONPATH}

HAL Tools
-----

### General Options

*Detailed command line options can be obtained by running each tool with the `--help` option.*


Two stored formats are included with HAL: `HDF5` and `mmap`.  HDF5 is standard container format for larger data sets with good compression characteristics .  The `mmap` format stores the raw data structures in a file, which is access by mapping in into memory using the `mmap` system call.  HAL files in the `mmap` format a considerably bigger but often much faster to access.  The `halExtract` command can be used to copy between formats.


All HAL tools compiled with HDF5 support expose some caching parameters.  Tools that create HAL files also include chunking and compression parameters.  In most cases, the default values of these options will suffice.

`--cacheBytes :`    The maximum size of each array cache.  3 such caches can be allocated per genome in the alignment.

`--cacheRDC :`    The number of slots in each cache.  This number should be set to a prime number that is roughly 50 x [cacheBytes / chunk].

`--cacheMDC :`    Size of the metadata cache.  There is presently no reason to touch this.

`--chunk :`   The chunk size for the hdf5 arrays.  Unreasonable chunk sizes can adversely affect cache performance.  Larger chunks can lead to better compression. [default = 1000]

`--deflate :`   Compression level.  Higher levels tend to not significantly decrease file sizes but do increase run time.  [0:none - 9:max] [default = 2]

`--inMemory:`   Load all data in memory (and disable hdf5 cache). [default = False]

### Importing from other formats

#### MAF Import

[MAF](http://genome.ucsc.edu/FAQ/FAQformat.html#format5) is a text format used at UCSC to store genome alignments.  MAFs are typically stored with respect to a reference genome.  MAFs can be imported into HAL as subtrees using the `maf2hal` command.

To import primates.maf as a star tree where the first alignment row specifies the root, and all others the leaves:

     maf2hal primates.maf primates.hal

To import primates.maf using "chimp" has the root

     maf2hal primates.maf primates.hal --refGenome chimp

The more the underlying tree looks like a star tree, the less efficient HAL is as all genomes will be fragmented with respect to each other.  If ancestral (or multiple reference) sequences are available, or if it is acceptable to use a non-reference species as a reference proxy, then trees of arbitrary typologies can be constructed using the `--append` option.

     maf2hal mammals.maf mammals.hal --refGenome mouse --targetGenomes human,rat,chimp,dog
	  maf2hal mammals.maf mammals.hal --append --refGenome human --targetGenomes chimp,gorilla,orang
	  maf2hal mammals.maf mammals.hal --append --refGenome dog --targetGenomes cow,horse

This will create a tree that looks like

	 ((chimp, gorilla,orang)human, rat,(cow,horse)dog)mouse;

#### Cactus Import

HAL is most beneficial when consensus reference or ancestral sequences are available at the internal nodes of the tree.  This is the type of information generated by progressive alignment pipelines.  Cactus is our implementation of such a pipeline.

### Exporting to other formats

#### MAF Export

MAF files can be generated from HAL alignments or sub-alignments.  The reference genome and alignment scope (subsequence of the reference and/or phylogenetic distance) are chosen through command-line options.

Export the HAL alignment as a MAF referenced at the root

		 hal2maf mammals.hal mammals.maf

Export a MAF with referenced at sequence *chr6* in the human genome

		 hal2maf mammals.hal mammals.maf --refGenome human --refSequence chr6

Export a MAF consisting of the alignment of human with respect to *chr2* in chimp

		 hal2maf mammals.hal mammals.maf --refGenome chimp --refSequence chr2 --targetGenomes human

Export a MAF consisting of the alignment of all apes referenced on gorilla

		 hal2maf mammals.hal mammals.maf --rootGenome ape_ancestor --refGenome gorilla

By default, no gaps are written to the reference sequence.  The `--maxRefGap` can be specified to allow gaps up to a certain size in the reference.  This is achieved by recursively following indels in the graph that could correspond to reference gaps.

Mafs can be generated in parallel using the hal2mafMP.py wrapper

		 hal2mafMP.py mammals.hal mammals.maf --numProc 10

#### FASTA Export

DNA sequences (without any alignment information) can be extracted from HAL files in FASTA format using `hal2fasta`.

#### Pangenome Graph Export (GFA and VG)

A HAL file can be converted into a pangenome using [hal2vg](https://github.com/ComparativeGenomicsToolkit/hal2vg), which can be downloaded as a standalone binary [here](https://github.com/ekg/seqwish/issues/60).

It is also possible to go through PAF and [seqwish](https://github.com/ekg/seqwish) as follows.  **But beware:**  [This approach will currently miss alignments between snps](https://github.com/ekg/seqwish/issues/60):

```
hal2fasta mammals.hal $(halStats --root mammals.hal) --subtree --upper --ucscSequenceNames > mammals.fa
hal2paf mammals.hal --inMemory > mammals.paf
seqwish -p mammals.paf -s mammals.fa -g mammals.gfa

# Note, in the above, genome names are prepended to fasta sequence names when exporting paths to the graph.
# To turn this off, remove --ucscSequenceNames from hal2fasta and add --onlySequenceNames to hal2paf
```

This graph can then be imported into a compressed format to work with [vg](https://github.com/vgteam/vg)
```
vg convert -g mammals.gfa -p > mammals.pg
```

### Displaying in the UCSC Genome Browser using Assembly Hubs

HAL alignments can be displayed as Assembly Hubs in the Genome Browser.  To create an assembly hub, use the [Comparative Annotation Toolkit](https://github.com/ComparativeGenomicsToolkit/Comparative-Annotation-Toolkit) or run

	hal2assemblyHub.py mammals.hal outputDirectory

Larger alignments require the use of the `--lod` option to generate precomputed levels of detail.

Note that this process is presently dependent on having UCSC's faToTwoBit installed.  The `outputDirectory` must be accessible as a URL in order to load the hub. More details are available at [hal2assemblyHub Manual](assemblyHub#comparative-assembly-hub-manual).

### Summary Information

#### halValidate

It is a good idea to check if a hal file is valid after creating it.

	halValidate mammals.hal

#### halStats

Some global information from a HAL file can be quickly obtained using `halStats`.  It will return the number of genomes, their phylogenetic tree, and the size of each array in each genome.

	  halStats mammals.hal

The `--tree`, `--sequences`, and `--genomes` options can be used to print out only specific information to simplify iterating over the alignment in shell or Python scripts.

#### halSummarizeMtuations

A count of each type of mutation (Insertions, Deletions, Inversions, Duplications, Transpositions, Gap Insertions, Gap Deletions) in each branch of the alignment can be printed out in a table.

     halSummarizeMutations mammals.hal

Subtrees can be specified using the `--targetGenomes` or `--rootGenome` option.  The `--maxGap` option is used to distinguish from small, 'gap' indels and larger indels.  This distinction is somewhat arbitrary (but conventional).  HAL allows gap indels to be nested within larger rearrangements:  ex. an inversion with a gap deletion inside would be counted as a single inversion, but an inversion containing a non-gap event would be identified as multiple independent inversions.

     halSummarizeMutations mammals.hal --maxNFraction 0

will prevent rearrangements with missing data as being identified as such.  More generally, if an insertion of length 50 contains c N-characters, it will be labeled as missing data (rather than an insertion) if c/N > `maxNFraction`.

#### Levels of Detail

Some applications such as genome browsers my need to quickly access high-level information about the alignment without scanning every segment.  We provide tools to resample a HAL graph to compute a coarser-grained levels of detail to speed up subsequent analysis at different scales.  To generate an output hal file based on a sampling of every `100` bases:

     halLodExtract mammals.hal mammals_100.hal 100

To generate a series of levels of details, such that each level of detail is 5x coarser than the previous, and that there are at most (approx.) 100 segments at the lowest level, use the following script:

     halLodInterpolate.py mammals.hal lod_summary.txt --scale 5 --maxBlock 100

Note that both tools have a `--keepSequences` option to specify whether or not the DNA sequences are stored in the output files.

### Analysis

#### Liftover

Annotations in [BED](http://genome.ucsc.edu/FAQ/FAQformat.html#format1), ie tab-delimited files whose first three columns are

     SequenceName     StartPosition    LastPosition+1

can be lifted over between genomes using `halLiftover`.  halLiftover does a base-by-base mapping between any two sequences in the alignment (following paralogy relations as well).  The output is written in BED (default) or PSL format.

	 halLiftover mammals.hal human human_annotation.bed dog dog_annotation.bed

will map all annotations in human_annotation.bed, which must refer to sequences in the human genome, to their corresponding locations in dog (if they exist), outputting the resulting annotations in dog_annotation.bed

halLiftover attempts to autodetect the BED version of the input.  This can be overried with the `--inVedVersion` option.   Columns that are not described in the official BED specs can be optionally mapped as-is using the `--keepExtra` option.

By default, halLiftover uses spaces and/or tabs to separate columns. To use only tabs (ie to allow spaces within names), use the `--tab` option.

Annotations in [Wiggle](http://genome.ucsc.edu/goldenPath/help/wiggle.html) format can likewise be mapped using `halWiggleLiftover`

See also the [Comparative Annotation Toolkit](https://github.com/ComparativeGenomicsToolkit/Comparative-Annotation-Toolkit) for generating and working with HAL annotations.

#### Alignment Depth

The number of distinct genomes different bases of a set of target genomes align to can be computed using the `halAlignmentDepth` tool.  The output is in `.wig` format.

#### Mutation Annotation

### SNPs

To compute the point mutations (SNPs) between a given pair of genomes in the HAL graph, `halSnps` can be used:

     halSnps mammals.hal human duck --bed human_duck_snps.bed

will produce a BED files listing the SNPs in human coordinates between human and duck.  A count of the number of snps and the total aligned columns are printed to stdout.

### General mutations along branches

Annotation files, as described above, can be generated from the alignment to provide the locations of substitutions and rearrangements.  Annotations are done on a branch-by-branch basis, but can be mapped back to arbitrary references using `halLiftover` if so desired.  The produced annotation files have the format

     SequenceName     StartPosition    LastPosition+1  MutationID  ParentGenome ChildGenome

The ID's refer to the types of mutations described above, and are explained in the header of each generated file.   To generate tables of rearrangement mutations between human and its most recent ancestor in the alignment, run

	 halBranchMutations mammals.hal human --refFile ins.bed --parFile del.bed

Two bed files must be specified because the coordinates of inserted (and by convention inverted and transposed) segments are with respect to bases in the human genome (reference), where as deleted bases are in ancestral coordinates (parent).

Point mutations can optionally be written using the `--snpFile ` option.  The '--maxGap' and '--maxNFraction' options can specify the gap indel threshold and missing data threshold, respectively, as described above in the *halSummarizeMtuations* section.

### Constrained Element Prediction

(Under development)

PhyloP is part of the [Phast Package](http://compgen.bscb.cornell.edu/phast/), and can be used to test for genomic positions that are under selective pressure.  We are working on prototype support for running PhyloP on HAL files.

* Train a neutral model

     See `halPhyloPTrain.py`

* Detect constrained elements

     See `halPhyloPMP.py`

* Examples:

	 `halPhyloPTrain.py mammals.hal human neutralRegions.bed neutralModel.mod --numProc 12`
	 `halTreePhyloP.py mammals.hal neutralModel.mod outdir --bigWig --numProc 12`

Special thanks to Melissa Jane Hubiz and Adam Siepel from Cornell University for their work on extending their tools to work with HAL.


Example of HAL Genome Representation
-----

The following is obtained by running h5ls -v -r (included with hdf5) on an ancestral genome, in this case a small simulated human-chimp ancestor named sHuman-sChimp.  The genome itself is stored as a group.  It contains four important 1-dimensional arrays:

* BOTTOM_ARRAY: The bottom segments of the genome (containing alignment mapping to the descendants).  The size of each entry is dependent on the number of descendants.
* DNA_ARRAY: The DNA bases, stored as two bases / byte
* SEQUENCE_ARRAY: The names and lengths of subsequences (ie chromosomes or scaffolds in the genome)
* TOP_ARRAY: The top segments in the genome (containing alignment mapping to the parent).  Paralogous top segments are presently stored in a circular linked list.

More information can be found in the manuscript:

Glenn Hickey, Benedict Paten, Dent Earl, Daniel Zerbino, and David
Haussler.  HAL: A Hierarchical Format for Storing and Analyzing
Multiple Genome Alignments. Bioinformatics, Volume 29, Issue 10, 15 May 2013, Pages 1341–1342,
[https://doi.org/10.1093/bioinformatics/btt128](https://doi.org/10.1093/bioinformatics/btt128)

本源码包内暂不包含可直接显示的源代码文件,请下载源码包。