로딩
요청 처리 중입니다...

Rosalind_8. Transcribing DNA into RNA

 Rosalind_8. Transcribing DNA into RNA

# 방법1. 기본함수 사용 with open ('rosalind_rna.txt','r') as handle: for line in handle: seq=line.strip() seq.replace('T','U') print(seq) # 방법2. biopython 사용 from Bio.Seq import Seq with open ('rosalind_rna.txt','r') as handle: for line in handle: seq=line.strip() bioseq=Seq(seq) print(bioseq.transcribe())...

Rosalind_8. Transcribing DNA into RNA에 대한 요약내용입니다.

자세한 내용은 아래에 원문링크를 확인해주시기 바랍니다.

# RNA