Re: What's the most unexpected hobby or interest you have outside of coding? Community Center Geeks' Lounge by toneewa A recent interest is the genome mapping of our DNA. The related pathways, vitamins, minerals, and 20 amino acids, associated … Re: Would you like to live for 1000 years? Community Center Geeks' Lounge by ddanbe DNA replication is like making a copy of a sheet of text. You then make a copy of the copy. After 1000000 or more of such copies, I guess you can't read the text anymore. Re: Would you like to live for 1000 years? Community Center Geeks' Lounge by Ketsuekiame > DNA replication is like making a copy of a sheet of text. You then make a copy of the copy. After 1000000 or more of such copies, I guess you can't read the text anymore. I think you need to get a better scanner... ;) DNA help Programming Software Development by babsbj Return True if the bases represented by the str parameters form a base pair and False otherwise. Each str is a single character: one of 'A', 'T', 'C', and 'G'. is_b_pair(letter,DNA): new_letter ="" new_DNA += new_letter if new_DNA in [GAATTC,AAGCTT]: return True else: return False please help DNA CHAIN Programming Software Development by Belfina … time please!): "); longDNA = readLine("-Insert the second DNA chain(correct this time please!): "); shortDNA= shortDNA.toUpperCase(); … time please!): "); longDNA = readLine("-Insert the second DNA chain(correct this time please!): "); shortDNA= shortDNA.toUpperCase();… DNA Questions Programming Software Development by mms6 … --------------------------------------------- def match_enzymes(str, list, list): The first parameter is a DNA strand; the second is a list of strings that are… --------------------------------------------------------- def one_cutters(str, list, list): The first parameter is a DNA strand; the second is a list of strings that are… Re: DNA CHAIN Programming Software Development by JamesCherrill I find that code very hard to read, but looking at the matching around line 78 it looks like you are testing if the chars from the two DNA strings are the same, not T matches A etc DNA sequence and Array Programming Software Development by Thomas_27 …size;i++) { //a switch to change the DNA to its complement switch(dnaArray[i]) { case …the arrays char displayResults() { cout << "DNA:" << endl; cout << '… = true) { cout << "The DNA strand is a palindrome." << endl; … DNA LIGATION PERL SCRIPT Programming Software Development by jimmyali … to find solution of following problem:- input a random **DNA sequence** , cut the DNA sequence randomly into three** fragmented sequence** ,from these… fragmented sequence** retrace the DNA sequence** back . for eg. input string=AGCTAACCTTCAG fragments= TAACC,AGCT… Binding DNA Programming Software Development by mms6 …, strB) My specifications The first parameter represents a strand of DNA. The second parameter is one strand from a recognition sequence… all the indices where the recognition sequence appears in the DNA strand. (These are the restriction sites.) ------------------------------------------------------- For example, if the… Re: Shuffle DNA file with FASTA sequence Programming Software Development by Anthony Cameron …G', 'T'); # Pick a random position in the DNA my($position) = randomposition($dna); #Pick a random nucleotide my ($newbase)=randomnucleotide(@nucleotides); substr… ($dna, $position, 1, $newbase); return $dna; } sub randomelement{ my(@array) = @_; return $… Re: Binding DNA Programming Software Development by mms6 so for example: strA is 'GGTACCCCTAGG' and basically strB is return C since that where the DNA Palindrome begin str.find() can be used if someone is wondering Thanks Pairwise Comparison Of DNA Sequences function- stuck and cant find why Programming Software Development by pwolf … exercise says the following: """ Pairwise comparision of DNA sequences is a popular technique used in Bioinformatics. It usually… the degree of similarity. Write a function that compares two DNA sequences based on the following scoring scheme: +1 for a… Security system uses database DNA Programming Databases by happygeek … to individual corporate databases, think of this as being database DNA if you like, which it does over time the appliance… Shuffle DNA file with FASTA sequence Programming Software Development by Anthony Cameron … need help to fix a perl script that obtains a DNA file with a FASTA sequence and randomly shuffle the sequence… Re: Shuffle DNA file with FASTA sequence Programming Software Development by Anthony Cameron … to use with my subroutines in order to mutate the DNA sequence and then perform the random shuffle and then calculate… Re: Shuffle DNA file with FASTA sequence Programming Software Development by d5e5 … to use with my subroutines in order to mutate the DNA sequence and then perform the random shuffle and then calculate… how to configure AJ MATRIX DNA script on wampserver or xammp Programming Web Development by sjparida Hi there, friends I have ajmatrix dna(multi level marketing) script written in php and MySQL, I … C Programming Help!!! Programming Software Development by derek123 … consider them. 5 Problem3. The deoxyribonucleic acid (DNA) is a molecule that contains the genetic instructions … interested in understanding the roles of the variuos DNA sequence patterns that are continuously being discovered worldwide.…type FILE *. • The function read DNA(charsequence[]) that reads a DNA sequence from input, stores it in … Help in multi source files,array and file i/o Programming Software Development by poopoowei …gt; #include <cstring> #include "dna.h" using namespace std; void reverse( char…); return 0; } This is my code for dna.cpp #include <iostream> #include <…;fstream> #include "dna.h" using namespace std; void reverse(char… array manipulation Programming Software Development by Cosa …i am writing is to convert strings of DNA. The DNA is in a text file and represented by…lt;iostream> #include <fstream> #include "dna.h" using namespace std; int main() { fstream ins;… std; const int MAX = 3000; struct ecoli { char dna[MAX]; }; int reverse(fstream&); int write(fstream&);… trying to implement code into a GUI program with QT Programming Software Development by jason007thomas … len=0; for(int i=0; i<=sizeof(DNA); i++){ if (DNA[i] == 'A') {cout<<"U";… RNA[i]='U'; len++; } if (DNA[i] == 'G') {cout<<"C"; RNA…lt;<"G"; RNA[i]='G'; len++; } if (DNA[i] == 'T') {cout<<"A"; RNA… problem with perl script Programming Software Development by biojet …[/CODE] [CODE]print "\n\n\t\#################### DNA 2 PROTEIN #################### \n\n"; print "…;This script will convert your DNA sequence to PROTEIN Sequence\n\n"; print… @DNA = <DNAFILE>; close DNAFILE; $DNA = join( '', @DNA); print " \nThe original DNA file is:\n$DNA \n"; $DNA =~… How to skip a line ! Programming Software Development by MojoS …;"; for($i=0; $i < length($dna); $i++){ $base =substr($dna, $i, 1); if($base eq "A"…, $i, 1); $rdna .= $base; } ) print "The DNA string is now reversed complemented: $rdna\n"; __END__ here… the file "dna.dat" containe the DNA sequence without the first line. hope u… Re: array manipulation Programming Software Development by Lerner …(fstream &); int write(fstream &); }; Then within dna.cpp preface the definition of reverse() and write() with the… declaration of the ecoli objects sequence an save from dna.cpp. In reverse, read the file contents into … like so: bug.reverse() and write the reversed dna sequence of bug to a file by calling bug … Problem with program using 'find' Programming Software Development by sindel … first ORF in a sequence from a position (findORF(DNA, position)). It must return the first ORF found. PS…: ORF(Open Reading Frame) is a sequence of DNA that is multiple of 3. PS2: The ORF begins…position + 1 return -1 def findORF(DNA): beginning = find(DNA,"ATA", 0) stop1 = find(DNA,"AGA", beginning + 3)… Re: Help in multi source files,array and file i/o Programming Software Development by poopoowei … but i have problems with the multi files like (dna.h and dna.cpp) , what kind of prototype and function i should… i know what should be the content of my dna.h and dna.cpp? Sample of codes would help. #include <iostream… how can i break them up into multiple files(dna.h and dna.cpp),im lacking experience as this is my first… About matching first and last part of the string Programming Software Development by ghosh22 … ($dna=<DNA>) { chomp ($dna); ### Check Starting not equals to '>' letter if ($dna=~/^[^>]/) { @dna=split ('', $dna); print "$dna"; } if (($dna=~/^ATG/) && ($dna Re: How to skip a line ! Programming Software Development by MojoS … dataset I have tried this: open(IN, '<',"dna.fsa") or die "Can't read file\n…= ""; for($i=0; $i < length($dna); $i++){ $base =substr($dna, $i, 1); if($base eq "A"){ $base… "$base\n"; } close OUT; print "The DNA in FASTA format is now reversed complemented: \n", "… very basic Programming Software Development by xanine …{ FileReader file = new FileReader("D:\\dna.txt"); BufferedReader fileInput = new BufferedReader(file…PrintStream outStream = new PrintStream(new FileOutputStream("D:\\dna.txt")); outStream.close(); } catch (IOException …