Skip to content

Commit

Permalink
updated mafft documentary
Browse files Browse the repository at this point in the history
  • Loading branch information
hng committed Mar 27, 2015
1 parent 9f44821 commit 0cc07b1
Showing 1 changed file with 22 additions and 1 deletion.
23 changes: 22 additions & 1 deletion docs/mafft.md
Original file line number Diff line number Diff line change
Expand Up @@ -26,9 +26,30 @@ mafft("examples/fasta/il4.fasta", ["--localpair", "--maxiterate", "1000"])
Calling mafft with custom arguments. Arguments have to be a array of strings. This call is also equivalent to calling:

```julia
mafft_linsi("examples/fasta/il4.fasta")
mafft("examples/fasta/il4.fasta", :linsi)
```

## Exported functions

```julia
mafft(fasta_in::String, args=:default)
```

Runs mafft with the provided fasta file and returns the alignment in FastaIO dataformat. By default mafft is called with the `--auto` option.

```julia
mafft_from_string(fasta_in::String, args=:default)
```

```julia
mafft_from_fasta(fasta_in::String, args=:default)
```

```julia
mafft_profile(group1::String, group2::String)
```


## References
<ul>
<li>
Expand Down

0 comments on commit 0cc07b1

Please sign in to comment.