1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
# Global variables:
DATA = LSU
# ---------------
# Input sequences
# ---------------
# The alphabet to use:
# [DNA|RNA|Protein|Generic]
alphabet=DNA
# The sequence file to use (sequences must be aligned!)
input.sequence.file=../Data/$(DATA).phy
# The file format:
input.sequence.format=Phylip(order=sequential, type=extended)
# ----------------
# Output sequences
# ----------------
output.sequence.file=$(DATA).fas
# The file format:
output.sequence.format=Fasta()
# -----------------------
# Sequences manipulations
# -----------------------
#For example (see manual for a detailed list of available options):
sequence.manip = Switch,Transcript,CoerceToAlignment,KeepComplete(maxGapAllowed=30%),GapToUnknown
|