/usr/share/staden/scripts/fasta-split is in staden-common 2.0.0+b11-2.
This file is owned by root:root, with mode 0o755.
The actual contents of the file can be viewed below.
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 | #!/usr/bin/awk -f
BEGIN {
file="";
}
/^;/ {
next;
}
/^>/ {
gsub(">", "");
if (file != "") {
close(file);
}
file=$1;
print "Creating", $1;
next;
}
{
print $0 >> file;
}
END {
close(file);
}
|