answersLogoWhite

0


Want this question answered?

Be notified when an answer is posted

Add your answer:

Earn +20 pts
Q: What type of DNA is extracted for STR analysis?
Write your answer...
Submit
Still have questions?
magnify glass
imp
Related questions

Why is STR analysis better then RFLP analysis?

because STR only requires small pieces of DNA (2-5 base pairs long). it is fast and automated wheres RFLP can take up to a month to accomplish. STR is also better because it allows the use of the Polymerase Chain Reaction (PCR). whereas RFLP requires large amounts of non-degraded DNA and automation is not possible.


What are short tandem repeats?

A short tandem repeat or STR is a type of polymorphism, where short sequences of DNA are repeated. It is a useful tool in forensics because the number of times a DNA sequence is repeated for a given STR varies between individuals.


How much DNA is needed to be collected at a scene to produce a DNA fingerprint?

it can be as little as a single cell if using low copy number (LCN) analysis however if you are looking for results that are a little more reliable its ussially over 1 nano gram, that's using STR (short tandom repeate) analysis. if using something like RFLP (ristriction fragment length polymorphism) it would be alot more then that, however that technique is hardly used anymore. visually repisented the smallest amount of DNA to produce an STR profile is the size of a full stop . i hope this helps thegreatmizuti


What causes the difference between different STR alleles?

A persons specific DNA type, the strands that separate them from others and determine their characteristics and traits such as hair color, eye color, height. The STR alleles are different in every person because no two people are alike and no two people have the same repeated patterns within their 13 strands of DNA.


How you can change data type in PHPwrite a script in PHP that change the string data type in numeric data type?

If you will read typecasting on php, you will know more on this. <?php $str = "10"; $num = (int)$str; ?>


Write a program to extract a portion of a character string and print the extracted string Assume that m?

#include<stdio.h> #include<string.h> void main() { char str[50]; char ext[50]; int pos,len,i,j=0; printf("\nenter the main string.....-\n"); gets(str); printf("\nenter the position and length of the string to be extracted...-\n"); scanf("%d%d",&pos,&len); for(i=pos-1;i<len+pos;i++) { ext[j++]=str[i]; } puts(ext); } /* this is a much easier solution by : ROHIT VERMA*/


How do you make a DNA fingerprint?

it can be as little as a single cell if using low copy number (LCN) analysis however if you are looking for results that are a little more reliable its ussially over 1 nano gram, that's using STR (short tandom repeate) analysis. if using something like RFLP (ristriction fragment length polymorphism) it would be alot more then that, however that technique is hardly used anymore. visually repisented the smallest amount of DNA to produce an STR profile is the size of a full stop . i hope this helps thegreatmizuti


To display string in a title case in c?

#include<stdio.h> #include<conio.h> #include<string.h> int main() { int tmp,i; char str[30]; printf("Enter any string: "); gets(str); for(i=0; str[i]!='\0'; i++) { if(str[i-1]==' ' i==0) { if(str[i]>='a' && str[i]<='z') str[i]=str[i]-32; else if(str[i]>='A' && str[i]<='Z') str[i]=str[i]+32; } printf("%c",str[i]); } getch(); return 0;}


A c program which will remove all the spaces from a given string?

RemoveSpaces (char *str) { char *new = str; while (*str != '\0') { if (*str != ' ') *(new++) = *str; str++; } *new = '\0'; }


How do you write a C program to input a string of lowercase alphabets and convert it to uppercase using a loop?

void to_uppercase (char* str) { if (str == 0) return; while (*str != '\0') { if (*str>='a' && *str<='z') *str-=32; ++str; } }


How do you toggle case of string in c code. Example is TogGle will turn into tOGgLE?

#include<stdio.h> int main() { char str[100]; int i; printf("Please enter a string: "); // gets(str); // fgets is a better option over gets to read multiword string . fgets(str, 100, stdin); // Following can be added for extra precaution for '\n' character // if(str[length(str)-1] == '\n') str[strlen(str)-1]=NULL; for(i=0;str[i]!=NULL;i++) { if(str[i]>='A'&&str[i]<='Z') str[i]+=32; else if(str[i]>='a'&&str[i]<='z') str[i]-=32; } printf("String in toggle case is: %s",str); return 0; }


What has the author Vernon S Ellingstad written?

Vernon S Ellingstad has written: 'Interim analysis of STR performance and effectiveness' -- subject(s): Alcoholics, Rehabilitation