473,699 Members | 2,300 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Reg using hash of arrays in foreach loop

23 New Member
Hi all,
I have defined some array variables a
*************** *************** ***********
Expand|Select|Wrap|Line Numbers
  1. @L=('CTT','CTC','CTA','CTG','TTA','TTG');
  2.  
  3. @S=('TCT','TCC','TCA','TCG','AGT','AGC');
  4.  
  5. @R=('CGT','CGC','CGA','CGG','AGA','AGG');
  6.  
  7. @V=('GTT','GTC','GTA','GTG');
  8.  
  9. @A=('GCT','GCC','GCA','GCG');
  10.  
  11. @G=('GGT','GGC','GGA','GGG');
  12.  
  13. @P=('CCT','CCC','CCA','CCG');
  14.  
  15. @T=('ACT','ACC','ACA','ACG');
  16.  
  17. @I=('ATT','ATC','ATA');
  18.  
  19. @F=('TTT','TTC');
  20.  
  21. @C=('TGT','TGC');
  22.  
  23. @Y=('TAT','TAC');
  24.  
  25. @Q=('CAA','CAG');
  26.  
  27. @N=('AAT','AAC');
  28.  
  29. @H=('CAT','CAC');
  30.  
  31. @E=('GAA','GAG');
  32.  
  33. @D=('GAT','GAC');
  34.  
  35. @K=('AAA','AAG');
  36.  
  37. @M=('ATG');
  38.  
  39. @W=('TGG');
  40.  
*************** *************** *************** **********
and also created a hash to store the arrays in it and finally I wanted to do a foreach loop over the desired input say for example input=VEFCDAMP and to create all possible permutation of the word taken from the definition from dictionary as defined in the array.

The following is the perl script that I conceived to do the job but I am confused here how to use the forloop here to iterate through this and make permutation,
*************** *************** *************** ***************
Expand|Select|Wrap|Line Numbers
  1. print "\n\n\t\#################### AA 2 PROTEIN #################### \n\n";
  2.  
  3. print "This script will convert your amino acid sequence to DNA Sequence\n\n";
  4.  
  5. print "ENTER THE FILENAME OF THE Amino acid SEQUENCE:= ";
  6.  
  7. $aafilename = <STDIN>;
  8.  
  9. chomp $aafilename;
  10.  
  11. unless ( open(aaFILE, $aafilename) ) {
  12.  
  13. print "Cannot open file \"$aafilename\"\n\n";
  14.  
  15. }
  16.  
  17. @aa = <aaFILE>;
  18.  
  19. close aaFILE;
  20.  
  21. $aa = join( '', @aa);
  22.  
  23. print " \nThe original AA file is:\n$aa \n";
  24.  
  25. $aa =~ s/\s//g;
  26.  
  27. @aa=$aa;
  28.  
  29. my $protein='';
  30.  
  31. my $codon;
  32.  
  33. @L=('CTT','CTC','CTA','CTG','TTA','TTG');
  34.  
  35. @S=('TCT','TCC','TCA','TCG','AGT','AGC');
  36.  
  37. @R=('CGT','CGC','CGA','CGG','AGA','AGG');
  38.  
  39. @V=('GTT','GTC','GTA','GTG');
  40.  
  41. @A=('GCT','GCC','GCA','GCG');
  42.  
  43. @G=('GGT','GGC','GGA','GGG');
  44.  
  45. @P=('CCT','CCC','CCA','CCG');
  46.  
  47. @T=('ACT','ACC','ACA','ACG');
  48.  
  49. @I=('ATT','ATC','ATA');
  50.  
  51. @F=('TTT','TTC');
  52.  
  53. @C=('TGT','TGC');
  54.  
  55. @Y=('TAT','TAC');
  56.  
  57. @Q=('CAA','CAG');
  58.  
  59. @N=('AAT','AAC');
  60.  
  61. @H=('CAT','CAC');
  62.  
  63. @E=('GAA','GAG');
  64.  
  65. @D=('GAT','GAC');
  66.  
  67. @K=('AAA','AAG');
  68.  
  69. @M=('ATG');
  70.  
  71. @W=('TGG');
  72.  
  73.  
  74.  
  75. $L=\@L;
  76.  
  77. $S=\@S;
  78.  
  79. $R=\@R;
  80.  
  81. $V=\@V;
  82.  
  83. $A=\@A;
  84.  
  85. $G=\@G;
  86.  
  87. $P=\@P;
  88.  
  89. $T=\@T;
  90.  
  91. $I=\@I;
  92.  
  93. $F=\@F;
  94.  
  95. $C=\@C;
  96.  
  97. $Y=\@Y;
  98.  
  99. $Q=\@Q;
  100.  
  101. $N=\@N;
  102.  
  103. $H=\@H;
  104.  
  105. $E=\@E;
  106.  
  107. $D=\@D;
  108.  
  109. $K=\@K;
  110.  
  111. $M=\@M;
  112.  
  113. $W=\@W;
  114.  
  115.  
  116.  
  117. %hash = (L=>$L,S=>$S,R=>$R,V=>$V,A=>$A,G=>$G,P=>$P,T=>$T,I=>$I,F=>$F,C=>$C,Y=>$Y,Q=>$Q,N=>$N,H=>$H,E=>$E,D=>$D,K=>$K,M=>$M,W=>$W);
  118.  
  119.  
  120.  
  121. $hash_ref=\%hash;
  122.  
  123.  
  124. my @aa_split = split //, $aa;
  125.  
  126.  
  127.  
  128. foreach my $val (@{hash{@aa_split}})
  129.  
  130. {
  131. print "@{$val} ";
  132.  
  133. }
  134. print " \n";
  135.  
*************** *************** *************** *************** *****

to run this program please create and save a txt file with the content of word VEFCDAMP in it.

I want my program to perform simillar task what the following program does it for
*************** *************** *************** *************** ****
Expand|Select|Wrap|Line Numbers
  1. use strict;
  2. use warnings;
  3. my @V=('GTT','GTC','GTA','GTG');
  4. my @A=('GCT','GCC','GCA','GCG');
  5. my @E=('GAA','GAG');
  6. my @F=('TTT','TTC');
  7. my @G=('GGT','GGC','GGA','GGG');
  8. my @H=('CAT','CAC');
  9. my $i = 1;
  10. foreach my $v (@V) {
  11.    foreach my $a (@A) {
  12.       foreach my $e (@E) {
  13.          foreach my $f (@F) {
  14.             foreach my $g (@G) {
  15.                foreach my $h (@H) {
  16.                   print "$i $v$a$e$f$g$h\n";
  17.                   $i++;
  18.                }
  19.             }
  20.          }
  21.       }
  22.    }
  23. }
  24.  
*************** *************** *************** *************** **

Thanks in advance,
B.Nataraj
Oct 28 '08 #1
28 3182
Icecrack
174 Recognized Expert New Member
Please look in this thread and consider adding those items necessary to allow the Experts to give you an answer.
(POSTING GUIDELINES: Please read carefully before posting to a forum)

EXPERT
Oct 28 '08 #2
numberwhun
3,509 Recognized Expert Moderator Specialist
And PLEASE use code tags around any and all code you post in the forums. The link that my colleague provided show's their use as well.

Regards,

Moderator
Oct 28 '08 #3
KevinADC
4,059 Recognized Expert Specialist
Assuming everything else is good with your code:

Expand|Select|Wrap|Line Numbers
  1. open (OUT, ">>" , 'path/to/outfile.txt') or die "$!";
  2. my @aa_split = split //, $aa;
  3. foreach my $val (@{hash{@aa_split}}){
  4.    print OUT "@{$val} ";
  5. }
  6. print " \n";
  7. close OUT;
  8.  
Oct 28 '08 #4
natarajmtech
23 New Member
Assuming everything else is good with your code:

Expand|Select|Wrap|Line Numbers
  1. open (OUT, ">>" , 'path/to/outfile.txt') or die "$!";
  2. my @aa_split = split //, $aa;
  3. foreach my $val (@{hash{@aa_split}}){
  4.    print OUT "@{$val} ";
  5. }
  6. print " \n";
  7. close OUT;
  8.  
Hi Kevin,
The code that you added, does not give the desired output of all permutation of the word "VEFCDAMP". This particular code is the one that I wrote as an extention of your previous code given in the thread ( http://bytes.com/forum/thread847179.ht ml ) for fixed input like "VEFCDAMP" (your code is also pasted in this topic) . I tried here to extend the code for all possible input word (generalization ) and the number of possible letter is only 20 (for my case) and the maximum size of any word never going to exceed 10 letters, thats why I thought of iterating only the desired letter in foreach loop to save computational time, otherwise I tried for all possible foreach loop for 20 letters and it goes on and on in my system.

Hope you can understand my problem by reading the previous thread and also this thread.

Thanks in advance,
B.Nataraj
Oct 29 '08 #5
KevinADC
4,059 Recognized Expert Specialist
I'm sorry but your current requirements are out of my range of experience. Trying to make a list of all possible permutations from an arbitrarily deep list of arrays is something I have no experience with.
Oct 29 '08 #6
nithinpes
410 Recognized Expert Contributor
Nataraj,

When you are taking input dynamically, it would be difficult to get all permutations if the length of input string varies. But if it is fixed at 8 as in VEFCDAMP, then you should be able to do it using 8 foreach loops as you have done in the second script.
Oct 29 '08 #7
natarajmtech
23 New Member
Nataraj,

When you are taking input dynamically, it would be difficult to get all permutations if the length of input string varies. But if it is fixed at 8 as in VEFCDAMP, then you should be able to do it using 8 foreach loops as you have done in the second script.
Hi nithin & Kevin,
Ok then, Is there any other way to address this problem ? I mean otherthan using foreach loop.

Thanks ,
B.Nataraj
Oct 29 '08 #8
KevinADC
4,059 Recognized Expert Specialist
This is what I came up with although I am not sure its what you want and it means you will have to install the List::Permutor module and any of its dependencies.

This is a script with all extraneous code removed just so we can get the permutations given a list of letters.

Expand|Select|Wrap|Line Numbers
  1. use List::Permutor;
  2. my $seq = 'VF';
  3. my %hash = ( 
  4.    L => ['CTT','CTC','CTA','CTG','TTA','TTG'],
  5.    S => ['TCT','TCC','TCA','TCG','AGT','AGC'],
  6.    R => ['CGT','CGC','CGA','CGG','AGA','AGG'],
  7.    V => ['GTT','GTC','GTA','GTG'],
  8.    A => ['GCT','GCC','GCA','GCG'],
  9.    G => ['GGT','GGC','GGA','GGG'],
  10.    P => ['CCT','CCC','CCA','CCG'],
  11.    T => ['ACT','ACC','ACA','ACG'],
  12.    I => ['ATT','ATC','ATA'],
  13.    F => ['TTT','TTC'],
  14.    C => ['TGT','TGC'],
  15.    Y => ['TAT','TAC'],
  16.    Q => ['CAA','CAG'],
  17.    N => ['AAT','AAC'],
  18.    H => ['CAT','CAC'],
  19.    E => ['GAA','GAG'],
  20.    D => ['GAT','GAC'],
  21.    K => ['AAA','AAG'],
  22.    M => ['ATG'],
  23.    W => ['TGG'],
  24. );
  25.  
  26. my @loops = split '', $seq;
  27. my @AoA;
  28. foreach my $letter (@loops) {
  29.    push @AoA, @{$hash{$letter}};
  30. }
  31. my $p = List::Permutor->new(@AoA);
  32. {
  33.    local $";
  34.    while(my @set = $p->next) {
  35.       print "@set\n";
  36.    }
  37. }
  38.  
I used a very small list of letters (VF) because for a long string of letters all the possible premutations is a large number and takes a little while to run. Basically 'VF' has 6 unique codons, so there is a possible 720 unique permutations (UP) just for those:

UP = 1*2*3*4*5*6 = 720

if you add one more unique codon the number obviously grows exponentially to 5,040. You will probably be OK until you get into the range of 10 unique codons in which case the UP is 3,628,800. A fast computer could figure out the permutations quickly, but writing them all to a file is what will take time.
Oct 29 '08 #9
natarajmtech
23 New Member
This is what I came up with although I am not sure its what you want and it means you will have to install the List::Permutor module and any of its dependencies.

This is a script with all extraneous code removed just so we can get the permutations given a list of letters.

Expand|Select|Wrap|Line Numbers
  1. use List::Permutor;
  2. my $seq = 'VF';
  3. my %hash = ( 
  4.    L => ['CTT','CTC','CTA','CTG','TTA','TTG'],
  5.    S => ['TCT','TCC','TCA','TCG','AGT','AGC'],
  6.    R => ['CGT','CGC','CGA','CGG','AGA','AGG'],
  7.    V => ['GTT','GTC','GTA','GTG'],
  8.    A => ['GCT','GCC','GCA','GCG'],
  9.    G => ['GGT','GGC','GGA','GGG'],
  10.    P => ['CCT','CCC','CCA','CCG'],
  11.    T => ['ACT','ACC','ACA','ACG'],
  12.    I => ['ATT','ATC','ATA'],
  13.    F => ['TTT','TTC'],
  14.    C => ['TGT','TGC'],
  15.    Y => ['TAT','TAC'],
  16.    Q => ['CAA','CAG'],
  17.    N => ['AAT','AAC'],
  18.    H => ['CAT','CAC'],
  19.    E => ['GAA','GAG'],
  20.    D => ['GAT','GAC'],
  21.    K => ['AAA','AAG'],
  22.    M => ['ATG'],
  23.    W => ['TGG'],
  24. );
  25.  
  26. my @loops = split '', $seq;
  27. my @AoA;
  28. foreach my $letter (@loops) {
  29.    push @AoA, @{$hash{$letter}};
  30. }
  31. my $p = List::Permutor->new(@AoA);
  32. {
  33.    local $";
  34.    while(my @set = $p->next) {
  35.       print "@set\n";
  36.    }
  37. }
  38.  
I used a very small list of letters (VF) because for a long string of letters all the possible premutations is a large number and takes a little while to run. Basically 'VF' has 6 unique codons, so there is a possible 720 unique permutations (UP) just for those:

UP = 1*2*3*4*5*6 = 720

if you add one more unique codon the number obviously grows exponentially to 5,040. You will probably be OK until you get into the range of 10 unique codons in which case the UP is 3,628,800. A fast computer could figure out the permutations quickly, but writing them all to a file is what will take time.
Hi Kevin,
Thanks once again for your help. It took some time for me to install the List::Permutor module into my system and so a delay in replying you, now your code is working fine but as you said it goes on exponential time for a larger size input. I have not much gone in detail of your code, Hope I soon understand it and will come back to you.

With Thanks,
B.Nataraj
Oct 30 '08 #10

Sign in to post your reply or Sign up for a free account.

Similar topics

6
2253
by: Bart Nessux | last post by:
How is this done in php? I've tried several variations of the following: contact_array = ($_POST, $_POST, $_POST, $_POST, $_POST); The ultimate goal is to insert the array into a table in a Mysql db.
7
5655
by: Gary | last post by:
I haver a table of students - Say 100 students that I need to be able to update/delete and amend. I know I can do this one student at a time which is simple but lets say I want to see all the students on the screen at the same time, modify some, mark some for deletion and even have blank fields at the end to add a new record. In HTML which is generated I label each row and input field with a name/number combination i.e <input type=text...
4
2564
by: Sjoerd | last post by:
Summary: Use foreach(..) instead of while(list(..)=each(..)). --==-- Foreach is a language construct, meant for looping through arrays. There are two syntaxes; the second is a minor but useful extension of the first: foreach (array_expression as $value) statement
1
4334
khalidbaloch
by: khalidbaloch | last post by:
hi every one, how are you folf , hope fine dear Friends i want to get values of multi-dimensional arrays using foreach loop and after that print out the html using an other while loop , i tried alot but did not successed accutly i want to create an yahoo api websearch application i got a sample from developer.yahoo.com for this purpose ,this sample uses unserialize/serialize php here is the code exapmle <?php // Parsing Yahoo! REST...
3
33361
by: Akira | last post by:
I noticed that using foreach is much slower than using for-loop, so I want to change our current code from foreach to for-loop. But I can't figure out how. Could someone help me please? Current code is here: foreach ( string propertyName in ht.Keys ) { this.setProperty( propertyName, ht );
2
5430
by: cheesecaker | last post by:
Okay well, let's say you have a script that evaluates exam questions. Arrays are used for both the answer key and the test taker's provided answers. Repeated comparison is required, so obviously, a loop fits the bill. I have the following (VERY basic) for loop set up. I'm supplying only a snippet, because the rest doesn't really matter. Two arrays have been filled, one with the answer key, one with the user's answers, with eight array...
5
2579
by: nirmal1349 | last post by:
Hi, I have a hash in hash file in perl which looks some thing like this: $FIELDS = { 'abc' => { 'Description' => { 'Purpose' => 'some data is present', 'Background' => 'something', } 'Run Instructions' => { 'Data' => 'something',
110
6995
by: fjm | last post by:
For some reason, I have always had a hard time understanding arrays as they pertain to php and databases. I understand associative arrays just fine but when there are multidimensional arrays, I kinda don't. I have gone over a few different examples but they were limited. I was able to find one piece of code that I would like to disect and ask questions about so I can gain a better understanding. $characters = array ( array (...
5
2142
Dheeraj Joshi
by: Dheeraj Joshi | last post by:
Hi.. I wrote following code. iindex = 0; foreach (XmlNode Labelnodes1 in Labelnode) { countlab = Labelnodes1.Attributes.Count; for (int i = 0; i < countlab; i++) {
0
8692
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
8620
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
9181
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
9040
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
0
7756
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing, and deployment—without human intervention. Imagine an AI that can take a project description, break it down, write the code, debug it, and then launch it, all on its own.... Now, this would greatly impact the work of software developers. The idea...
0
5877
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
4633
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
2
2353
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
3
2012
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.