self.makeMatrix()transpose= Numeric.transpose(self.matrix) gaplist = []#any row with sum=0 in thetransposecorresponds to a column in the alignment#which is all gaps. So add the positions of these columns to the gaplistforxinrange(len(transpose)): line =transpose[x]ifNumeric.sum(line)=...