source: trunk/lib/import/fasta_wacc_wgap.ift

Last change on this file was 16564, checked in by westram, 7 years ago
File size: 757 bytes
Line 
1# HM May 2009
2
3AUTODETECT      ">*ARB_GENE"
4
5DESCRIPTION     "Imports sequences in FASTA format (does not remove gaps)"
6DESCRIPTION     "Expected header: '>id fullname|...'"
7DESCRIPTION     "If header contains 'ARB_GENE...' that will be used as 'acc'"
8
9KEYWIDTH        1
10
11BEGIN           ">??*"
12
13MATCH           ">*"
14                SRT "* *=*1:*\t*=*1"
15                WRITE "name"
16
17MATCH           ">*"
18                SRT "*|*=*1:*\t*=*1"
19                WRITE "full_name"
20
21MATCH           ">*"
22                SRT "* ARB_GENE*=ARB_GENE*2"
23                WRITE "acc"
24
25
26SEQUENCEAFTER   "*"
27SEQUENCESRT     ""
28SEQUENCEACI     "remove("0123456789 /")"
29SEQUENCECOLUMN  0
30SEQUENCEEND     ">*"
31
32DONT_GEN_NAMES
33# CREATE_ACC_FROM_SEQUENCE
34
35END             "//"
Note: See TracBrowser for help on using the repository browser.