-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Finalizing refactoring of 'replicate results'
- Loading branch information
1 parent
475514e
commit d7b14fa
Showing
12 changed files
with
133 additions
and
198 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
doc/README.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
File renamed without changes.
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
Efficient Implied Alignment | ||
============================= | ||
|
||
[![DOI:10.1186/s12859-020-03595-2](https://zenodo.org/badge/DOI/10.1186/s12859-020-03595-2.svg)](https://doi.org/10.1186/s12859-020-03595-2) | ||
|
||
This repository hosts the program `implied-align` implementing the algorithm described in the paper *Efficient Implied Alignment* and a script to replicate the results of the paper. | ||
|
||
### Installation of `implied-align` | ||
|
||
You can build and install `implied-align` from source using the Haskell build system `ghcup` via the supplied `makefile` from the source directory of this project: | ||
|
||
``` | ||
$ make install | ||
``` | ||
|
||
After the `make install` command has completed, the `implied-align` binary will be placed in this project's `bin` directory. | ||
|
||
### Running `implied-align` | ||
|
||
The `implied-align` program takes a number of command line arguments to specify inputs and outputs. For more information run the following command: | ||
|
||
``` | ||
$ implied-align --help | ||
``` | ||
|
||
### Replicating results of the paper | ||
|
||
For convience of replicating the results of the paper, a "replicate-results" script has been provided. All that is need to replicate the paper's results is to run the following command: | ||
|
||
``` | ||
$ make replicate | ||
``` | ||
|
||
This will create a `replicate-results` directory, with sub directories `csv`, `data`, `img`, `taxa`, and `tree`. | ||
|
||
- The `taxa` directory holds temporary files used in pruning the data-sets. | ||
- The `data` & `tree` directories hold the pruned input files for the data-sets. | ||
- The `csv` directory holds the timing information measured during the replication of the results. | ||
- The `img` directory holds the generted images from the results. | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -3,7 +3,7 @@ category: Algorithms | |
build-type: Simple | ||
|
||
name: efficient-implied-alignment | ||
version: 1.1.0 | ||
version: 1.1.1 | ||
|
||
author: Alex Washburn | ||
maintainer: [email protected] | ||
|
@@ -31,8 +31,8 @@ tested-with: | |
GHC == 9.2.1 | ||
|
||
extra-source-files: | ||
ChangeLog.md | ||
README.md | ||
doc/CHANGELOG.md | ||
doc/README.md | ||
|
||
source-repository head | ||
type: git | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.