Top "Dna-sequence" questions

A string representing the nucleotide sequence of the deoxyribonucleic acid, the molecule that holds the genes that constitute the genetic code.

How much storage would be required to store a human genome?

I'm looking for the amount of storage in bytes (MB, GB, TB, etc.) required to store a single human genome. …

storage bioinformatics dna-sequence genetics
Reverse complement of DNA strand using Python

I have a DNA sequence and would like to get reverse complement of it using Python. It is in one …

python list bioinformatics biopython dna-sequence
Translation DNA to Protein

I am a biology graduate student and I taught myself a very limited amount of python in the past few …

python dna-sequence
Search for string allowing for one mismatch in any location of the string

I am working with DNA sequences of length 25 (see examples below). I have a list of 230,000 and need to look …

python string pattern-matching string-matching dna-sequence
Reverse complement DNA

I have this equation for reverse complementing DNA in python: def complement(s): basecomplement = {'A': 'T', 'C': 'G', 'G': 'C', …

python bioinformatics dna-sequence
Generating random sequences of DNA

I am trying to generate random sequences of DNA in python using random numbers and random strings. But I am …

python dna-sequence
Finding matching strings when comparing two lists

I am trying to compare two lists to see if there are any matching strings within the lists. lets say …

python list dna-sequence