Closed Czirion closed 1 year ago
Change | Exercise 1: Inspecting the GBK. Instead of doing it with the GBK use the GFF.
Consideration | Make a script with the Prokka 8 minutes run. Pros: save stdin and stdout, estimate run time and use nohup or screen just in case ;)
nano prokka.sh
echo "Job started at:" && date
while read line; do prokka agalactiae_$line/*.fna --kingdom Bacteria --genus Streptococcus --species agalactiae --strain $line --usegenus --addgenes --prefix Streptococcus_agalactiae_${line}_prokka --outdir ~/pan_workshop/results/annotated/Streptococcus_agalactiae_${line}_prokka; done < TettelinList.txt
echo "Job finished successfully at:" && date
./prokka.sh 2 > prokka.err 1 > prokka.out
I removed the part where we move the gbks and delete the rest.
I updated the exercise to use the gffs instead of the gbks.
The subsequent episodes should update the paths to the prokka outputs that they use. @solnavss @nselem @HaydeePeruyero @shadayguerrero
Instead of making a script with prokka, use Screen when running prokka DONE
Don't delete prokka outputs