Posted by vito on 07/27/06 04:25
I'm processing the following sequence with length more than 100k
1 cagatgctga taaaaaagtg tgttcctcat agcatttatt taattgaaat atttcaagaa
61 cttgaatgta ctaaaaattg agacaaacag tagcaaatca taaaaaaaaa ttgaagtgaa
121 ttttacaact ggattcatgt gcctaatatt ttcattggga agtggattca tgtttaacat
181 ttccattggg <snippet>
i wrote a program
<?php
session_start();
if (isset ($_POST['seq']) )
$seq = $_POST['seq'];
else
$seq= $_GET['seq'];
$seq = preg_replace("/[\s\r\n0-9]/", "", $seq);
echo $seq;
?>
but it generates an output of fragmented sequences (i.e. partially processed
result), what is the problem?
Navigation:
[Reply to this message]
|