You are reading the name of the file you wish to process from STDIN but you have not chomped the newline from the string so your open will fail. BTW, it is now recommended to use lexical filehandles and the three argument form of open.

use strict; use warnings; my $inputFile = <>; open my $inputFH, q{<}, $inputFile or die qq{open: < $inputFile: $!\n};

This produces

$ cat spw718152.dat SNPSTER2_50_3_1_119_588 10 SNPSTER2_50_3_1_121_522 16 SNPSTER2_50_3_1_119_260 27 $ ./spw718152 spw718152.dat Unsuccessful open on filename containing newline at ./spw718152 line 8 +, <> line 1. open: < spw718152.dat : No such file or directory $

Adding the chomp will allow the file to open. Using map and taking advantage of the default behaviour of split, which is to operate on $_ splitting on whitespace (including newlines) and discarding empty trailing fields, gives us this.

use strict; use warnings; use Data::Dumper; chomp( my $inputFile = <> ); open my $inputFH, q{<}, $inputFile or die qq{open: < $inputFile: $!\n}; my %dataItems = map { split } <$inputFH>; close $inputFH or die qq{close: < $inputFile: $!\n}; print Data::Dumper->Dumpxs( [ \ %dataItems ], [ q{*dataItems} ] );

Which produces.

$ ./spw718152 spw718152.dat %dataItems = ( 'SNPSTER2_50_3_1_121_522' => '16', 'SNPSTER2_50_3_1_119_588' => '10', 'SNPSTER2_50_3_1_119_260' => '27' ); $

I hope this is of interest.

Cheers,

JohnGG


In reply to Re: Creating hash Array by johngg
in thread Creating hash Array by ashnator

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.