diff --git a/08-submission/gff-02-functional_annot.ipynb b/08-submission/gff-02-functional_annot.ipynb index 394b059099b80d5a02760e8cb2057a4297f700cf..590383ece54fcc4ebe7a66416a100342a1ad451e 100644 --- a/08-submission/gff-02-functional_annot.ipynb +++ b/08-submission/gff-02-functional_annot.ipynb @@ -206,7 +206,7 @@ " if description:\n", " line = f'{line};function={description}'\n", " if name != f'Uncharacterised protein {gene}' or description:\n", - " line = f'{line};note=source:EggNOG-mapper'\n", + " line = f'{line};note=function predicted by EggNOG-mapper'\n", "\n", " if feature_type == 'mRNA':\n", " mRNA = attributes['ID']\n", @@ -215,14 +215,14 @@ " if description:\n", " line = f'{line};function={description}'\n", " if name != f'Uncharacterised protein {gene}' or description:\n", - " line = f'{line};note=source:EggNOG-mapper'\n", + " line = f'{line};note=function predicted by EggNOG-mapper'\n", "\n", " if feature_type == 'CDS' or feature_type == 'exon':\n", - " line = f'{line};gene={name};product={name};'\n", + " line = f'{line};gene={name};product={name}'\n", " if description:\n", " line = f'{line};function={description}'\n", " if name != f'Uncharacterised protein {gene}' or description:\n", - " line = f'{line};note=source:EggNOG-mapper'\n", + " line = f'{line};note=function predicted by EggNOG-mapper'\n", " named.write(line + '\\n')" ] }