-
Notifications
You must be signed in to change notification settings - Fork 5
/
mononuc_shuffling_generator.py
39 lines (31 loc) · 1.13 KB
/
mononuc_shuffling_generator.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
"""
Generation of sequences using mono-nucleotide of input sequences.
Module allowing the generation of sequences by using a mono-nucleotide.
shuffling of the given sequences.
"""
from Bio.SeqRecord import SeqRecord
from Bio.Seq import Seq
from Bio.Alphabet import generic_dna
from utils import GC
import random
def generate_sequences(seqs, nfold):
"""
Generate sequences by shuffling input (mononucleotide).
return tuple containing %GC compo and length distrib of output.
"""
cpt = 1
bg_gc_list = []
bg_lengths = []
for record in seqs:
seq = record.seq.__str__()
descr = "Background sequence for {0:s}".format(record.name)
for _ in range(0, nfold):
new_sequence = ''.join(random.sample(seq, len(seq)))
new_seq = SeqRecord(Seq(new_sequence, generic_dna),
id="background_seq_{0:d}".format(cpt),
description=descr)
print new_seq.format("fasta"),
bg_gc_list.append(GC(new_sequence))
bg_lengths.append(len(new_sequence))
cpt += 1
return bg_gc_list, bg_lengths