[241]Find genes exercise

一、Find genes(FindGeneWhile.java)

  • 1.在while loop 中,要解決一找尋stopIndex,但是整段gene 要能整除3,可是不只找1次,可能2,3,5,10,50次,所以要用while loop下去尋找。

二、Three stop codon:(AllCodons,java)

  • 與上一個Find gene來比,差在stopcodon變為三種,從原先只有一種TAA,後變成TAA,TAG,TGA,因此為了代碼簡潔,又設立一個method

findStopCodon(String dnaStr, int startIndex, String stopCodon)

  • 第二點是,多了startIndex判斷、求minIndex、還有找不到stopcodon就返回dna.string的長度

代碼截圖

[241]Find genes exercise_第1张图片
螢幕快照 2017-08-16 下午10.19.11.png

你可能感兴趣的:([241]Find genes exercise)