Hi! My code is to generate 100 sequences (width=8) and print
them on the screen. Now I want to write these sequences to a file and make sure each sequence per a line.
My code is :
*****************************
#!/usr/bin/perl
# randommotifs.pl
use strict;
use warnings;
my $N_Sequences = 100;
my @Motif = split(//,'AGGGGGAA');
my @Alphabet = split(//,'ACTG');
my $P_Consensus = 0.85;
# ====== Globals ==========================
my @Probabilities;
# ====== Program ==========================
for (my $i=0; $i < $N_Sequences; $i++) {
for (my $j=0; $j < scalar(@Motif); $j++) {
loadConsensusCharacter($Motif[$j]);
addNoiseToDistribution();
convertToIntervals();
print (getRandomCharacter(rand(1.0)));
}
print "\n";
}
exit();
*****************************
If I want to store the results in a file named "output.txt",
I should add a line
"open (OUT_NORM, "> output.txt");"
at the beginning of the code, right?
Then it seems that I should add another line
"print OUT_NORM "print OUT_NORM "$long[$x]\n";" into the
"for" loop to substitute
"print (getRandomCharacter(rand(1.0)));
}
print "\n";"
Is my guess right?
Thanks for help!
them on the screen. Now I want to write these sequences to a file and make sure each sequence per a line.
My code is :
*****************************
#!/usr/bin/perl
# randommotifs.pl
use strict;
use warnings;
my $N_Sequences = 100;
my @Motif = split(//,'AGGGGGAA');
my @Alphabet = split(//,'ACTG');
my $P_Consensus = 0.85;
# ====== Globals ==========================
my @Probabilities;
# ====== Program ==========================
for (my $i=0; $i < $N_Sequences; $i++) {
for (my $j=0; $j < scalar(@Motif); $j++) {
loadConsensusCharacter($Motif[$j]);
addNoiseToDistribution();
convertToIntervals();
print (getRandomCharacter(rand(1.0)));
}
print "\n";
}
exit();
*****************************
If I want to store the results in a file named "output.txt",
I should add a line
"open (OUT_NORM, "> output.txt");"
at the beginning of the code, right?
Then it seems that I should add another line
"print OUT_NORM "print OUT_NORM "$long[$x]\n";" into the
"for" loop to substitute
"print (getRandomCharacter(rand(1.0)));
}
print "\n";"
Is my guess right?
Thanks for help!