import edu.duke.*; import java.io.*; public class TagFinder{ public String findProtein(String dna){ int start = dna.indexOf("atg"); int stop = dna.indexOf("tag", start +3); if (start == -1){ return "no starton protein found"; } if ((stop-start)%3==0){ return dna.substring(start,stop+3); } else{ return"not not a protein because of Divisible factor"; } } public...