Hi -- I'm working on writing code to check each string within an array. This is directed at checking that a DNA input contains only A, T, C, and G. I have written it such that you can input your DNA sequence on the command line. When I run this with an input such as "ATGTCAHCGT," I get nothing back where I should get a print statement of "Non-nucleotide at 6 position." What I am missing/ where am I going wrong? Any help much appreciated. Cheers, A

my $dna_input = $ARGV[0]; # turn command line input into a variable my @dna = split("", $dna_input); #split the variable into an array so +as to check each nucleotide my $count = 0; # keep track of position so as to report where there is + a non-nuceloetide character my $base; foreach $base (@dna) { if($base eq 'A' || 'T' || 'C' || 'G') { $count += 1; } else { print "Non-nucleotide at $count position\n"; } }

In reply to If/else within a foreach loop to check strings within an array by Anonymous Monk

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.