Genome Annotation:
| Filename | Description | Feature | GEO-ID | |
| 1 | sgdGenes.sga | TSS from SGD | TSS | - |
awk '
BEGIN{
FS=OFS="\t";
while( (getline < "/db/genome/sacCer3/chr_NC_gi") > 0 ){
chr["chr" $1] = $2
}
}
$12 != "n/a" && $1 !~ "bin" {
if ($4 == "+"){
start = $5
}else{
start = $6
};
if (chr[$3] != "") print chr[$3], "TSS", start, $4, 1, $2
}' sacCer3_SDGgenes.txt | sort -k1,1 -k3,3n -k4,4 > sgdGenes.sga