Beefy Boxes and Bandwidth Generously Provided by pair Networks
Syntactic Confectionery Delight
 
PerlMonks  

Re: Bioinformatics - Scoring DNA mutations

by graff (Chancellor)
on Apr 30, 2016 at 15:44 UTC ( [id://1161956]=note: print w/replies, xml ) Need Help??


in reply to Bioinformatics - Scoring DNA mutations

Also, I think part of the problem (as you described it) may be due to the lack of suitable formatting (spaces and/or tabs and/or newlines, plus maybe some descriptive labels) when you print things. Note the difference between these two snippets:
my @arr = ( -10, -5, -1, 0, 2, 6, 11 ); # mimicking to the OP code: for my $n ( @arr ) { print $n; } # being more detail-oriented: for my $n ( @arr ) { print "$n\n"; # include a newline after the value }

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://1161956]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others wandering the Monastery: (5)
As of 2024-03-29 10:54 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found