Skip to content

Commit

Permalink
cmbuild informat
Browse files Browse the repository at this point in the history
  • Loading branch information
cossio committed Mar 15, 2023
1 parent d025540 commit aa4721a
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion src/cmbuild.jl
Original file line number Diff line number Diff line change
@@ -1,10 +1,12 @@
function cmbuild(
msafile::AbstractString;
enone::Bool=false
enone::Bool=false,
informat::Opt{AbstractString} = nothing
)
exe = infernal_binary("cmbuild")
cmd = `$exe`
enone && (cmd = `$cmd --enone`)
isnothing(informat) || (cmd = `$cmd --informat $informat`)

stdout = tempname()
stderr = tempname()
Expand Down

0 comments on commit aa4721a

Please sign in to comment.