我想要这样的事情发生:
void a(){
b()
// if condition met in b(), exit out of this function also
}
void b(){
if(condition){
super return
// also returns out of function a
}
}
Run Code Online (Sandbox Code Playgroud)
我似乎无法想办法做到这一点.任何帮助,将不胜感激.谢谢!
有没有办法使用BioPython将FASTA文件转换为Genbank格式?关于如何从Genbank转换为FASTA的答案有很多,但不是相反.