大家好,我是超級boy,由於網站維護和文章管理的方便性,我決定改用 hexo + git page 來發布部落格,新部落格的網址為 5uperb0y.com,終於有了自己專屬的ID了。
本站將不再更新與維護,舊文章也會逐漸搬到新網站,順便更新內容。
感謝大家對盛夏不等式的支持😌
大家好,我是超級boy,由於網站維護和文章管理的方便性,我決定改用 hexo + git page 來發布部落格,新部落格的網址為 5uperb0y.com,終於有了自己專屬的ID了。
本站將不再更新與維護,舊文章也會逐漸搬到新網站,順便更新內容。
感謝大家對盛夏不等式的支持😌
裁切序列是 NGS 品質控管重要的一環,諸如建庫時添加的人工序列和序列末端品質低落的片段等都是要移除的目標。Trimmomatic 是專門用於 Illumina 定序資料的品管軟體,它可以發揮以下功能:
從 3' 端切除建庫時添加的人工序列
依照四種不同的模式裁切品質不佳的序列
依照平均定序品質分數篩選序列
假設兔子性成熟需一個月,性成熟後每對兔子每個月必繁殖一對子代,若兔子的壽命為 m 月,求第 n 月兔子對數。
Given: Positive integers n≤100 and m≤20.
Return: The total number of pairs of rabbits that will remain after the n-th month if all rabbits live for m months.
# input
6 3
# output
4
給定數條等長DNA序列(存於 FASTA 檔),求其 consensus string 及各位置的鹼基統計量
Given: A collection of at most 10 DNA strings of equal length (at most 1 kbp) in FASTA format.
Return: A consensus string and profile matrix for the collection. (If several possible consensus strings exist, then you may return any one of them.)
示範數據
# input
>Rosalind_1
ATCCAGCT
>Rosalind_2
GGGCAACT
>Rosalind_3
ATGGATCT
>Rosalind_4
AAGCAACC
>Rosalind_5
TTGGAACT
>Rosalind_6
ATGCCATT
>Rosalind_7
ATGGCACT
# output
ATGCAACT
A: 5 1 0 0 5 5 0 0
C: 0 0 1 4 2 0 6 1
G: 1 1 6 3 0 1 0 0
T: 1 5 0 0 0 1 1 6