Part 3. Converting a Swiss-prot protein entry into FASTA format

cat 1A68_HUMAN.sprot | gawk '{if ( $1 == "ID") { name = $2; print ">"name} else if ( substr($0,1,2) == "  ") { gsub(" ", "" ); print $0} }'