Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

comment on

( [id://3333]=superdoc: print w/replies, xml ) Need Help??
Hi, This is my first day working with perl, so I really dont know anything. It took me whole day to come up with some code, but still it doesn't work :( I have two text files which are tab delimited like this:
file 1 (test) chr1 30 chr2 20 chr2 50 chr3 80 file 2 (reference) chr1 40 chr1 50 chr2 60 chr2 80 chr3 100
I want to compare file1 which is the testfile agains file2 which is the reference file. When column 1 of both files is the same, I want to get the difference between the two files for column 2, and it must return the smallest value for that particular chr. So the output should look like this:
output chr1 10 chr2 40 chr2 10 chr3 20
My code looks like this now:
#!/usr/bin/env perl use strict; use warnings; my ( @cols, $p1, $p2, $p3, $p4, @sec, @cols2 ); @ARGV or die "No input file specified"; open my $first , '<',$ARGV[0] or die "Unable to open input file: $!"; open my $second,'<', $ARGV[1] or die "Unable to open input file: $!"; print scalar <$first>; <$second>; #...throw away first line... while (<$first>) { @cols = split /\s+/; $p1 = $cols[0]; $p2 = $cols[1]; #print $p1; while (<$second>) { @cols2 = split /\s+/; $p3 = $cols2[0]; $p4 = $cols2[1]; if ($p3 eq $p1) { print "yes"; } } }
But this doesn't work.. Could somebody please help me? Thanks!

In reply to compare text files by linseyr

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



  • Are you posting in the right place? Check out Where do I post X? to know for sure.
  • Posts may use any of the Perl Monks Approved HTML tags. Currently these include the following:
    <code> <a> <b> <big> <blockquote> <br /> <dd> <dl> <dt> <em> <font> <h1> <h2> <h3> <h4> <h5> <h6> <hr /> <i> <li> <nbsp> <ol> <p> <small> <strike> <strong> <sub> <sup> <table> <td> <th> <tr> <tt> <u> <ul>
  • Snippets of code should be wrapped in <code> tags not <pre> tags. In fact, <pre> tags should generally be avoided. If they must be used, extreme care should be taken to ensure that their contents do not have long lines (<70 chars), in order to prevent horizontal scrolling (and possible janitor intervention).
  • Want more info? How to link or How to display code and escape characters are good places to start.
Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others about the Monastery: (5)
As of 2024-04-16 09:06 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found