-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathextract_DNA_string_from_genbank.awk
More file actions
executable file
·45 lines (34 loc) · 1.66 KB
/
Copy pathextract_DNA_string_from_genbank.awk
File metadata and controls
executable file
·45 lines (34 loc) · 1.66 KB
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
34
35
36
37
38
39
40
41
42
43
44
45
#!/usr/bin/gawk -f
#: AUTHOR: Pablo Vinuesa, @pvinmex, https://www.ccg.unam.mx/~vinuesa/
#: source: https://github.com/vinuesa/intro2linux
#: USAGE: extract_DNA_string_from_genbank.awk genbank_file.gbk
#: AIM: extracts the DNA string from a GenBank file and prints to STDOUT
#: NOTE: the program assumes that the input GenBank file contains a single sequence record or LOCUS
BEGIN {
progname="extract_DNA_string_from_genbank.awk"
VERSION=0.2 # Nov 28, 2020
if(ARGC < 2) # needs the genbank file to process as single argument on the command line
Usage_Exit(progname, VERSION)
# print the gbk basename as the FASTA header
input_gbk=ARGV[1]
gsub(/\..*$/, "", input_gbk)
#print ">"input_gbk
}
# capture the locus ID on the first line to add to the FASTA header
# skip all lines, from the first record (line) to the ORIGIN flag,
# which precede the sequnce string to be extracted
# Note the use of an expr-REGEXP range: expr, /regexp/
NR == 1 { locus_id = $2; print ">"locus_id"|"input_gbk }
NR == 1, /^ORIGIN/ { next }
# remove spaces and digits preceding sequence strings
# remove also the single spaces between 10 bp sequence strings
{ sub(/^\s+[[:digit:]]+\s+/, ""); gsub(/\/\//, ""); gsub(/[[:space:]]/, "") }
# skip any empty lines and convert sequence strings to uppercase
NF > 0 { print toupper($0)}
function Usage_Exit(prog, vers) {
print "# AIM: extracts the DNA string from a GenBank file and prints to STDOUT"
print "# NOTE", prog, "v"vers, "assumes that the input GenBank file contains a single sequence record or LOCUS"
print "# USAGE of", prog, "v"vers":"
printf "\t%s %s\n\n", prog, "genbank_file.gbk"
exit 0
}