rocketperl has asked for the wisdom of the Perl Monks concerning the following question:
Below is the code i used. #!/usr/bin/perl no warnings "all"; open (FILE, 'G0_Probe_Report.tsv'); while (<FILE>) { chomp; ($name, $ID, $chromosome, $start_location, $control_type, $IP_fore +ground, $IP_background, $WCE_foreground, $WCE_background, $IP_backgro +und_SD, $WCE_background_SD,$norm_IP_signal, $norm_WCE_signal, $normal +ized_log_ratio, $x, $p_value, $z, $xbar, $p_xbar, $in_bound_regoin, $ +exclude, $primary_annotation, $secondary_annotation, $accession_numbe +r, $primary_annotation_type) = split("\t"); open (OFILE, '>name.tsv'); print "$name\n OFILE"; } close (FILE); close (OFILE); exit;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: no output or error received
by marto (Cardinal) on Jun 28, 2013 at 09:49 UTC | |
by Loops (Curate) on Jun 28, 2013 at 09:55 UTC | |
|
Re: no output or error received
by kcott (Archbishop) on Jun 28, 2013 at 09:58 UTC | |
by rocketperl (Sexton) on Jun 28, 2013 at 10:50 UTC | |
|
Re: no output or error received
by ww (Archbishop) on Jun 28, 2013 at 10:07 UTC | |
|
Re: no output or error received
by Athanasius (Archbishop) on Jun 28, 2013 at 09:55 UTC |