File: SeqMan2.bpp

package info (click to toggle)
bppsuite 2.4.1-8
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 2,116 kB
  • sloc: cpp: 3,867; sh: 65; makefile: 5
file content (33 lines) | stat: -rw-r--r-- 759 bytes parent folder | download | duplicates (7)
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
33
# Global variables:
DATA = HIV1_REF_2010_gag

# ---------------
# Input sequences
# ---------------

# The alphabet to use:
# [DNA|RNA|Protein|Generic]
alphabet=Codon(code=Standard, letter=DNA)

# The sequence file to use (sequences must be aligned!)
input.sequence.file=../Data/$(DATA)_DNA.fasta

# The file format:
input.sequence.format=Fasta

# ----------------
# Output sequences
# ----------------

output.sequence.file=$(DATA)_AA.fasta

# The file format:
output.sequence.format=Fasta()

# -----------------------
# Sequences manipulations
# -----------------------
#For example (see manual for a detailed list of available options):
sequence.manip = CoerceToAlignment,RemoveStops,KeepComplete(maxGapAllowed=30%),Translate(code=StandardGeneticCode)