http://www.perlmonks.org?node_id=1089936


in reply to Re: It's all getting messy - remove whitespace
in thread It's all getting messy - remove whitespace

Thank you! I have modified the script and it now works!

my @splicejoin = join('', @spliceout); open (MYFILE, '>>fasta'); print MYFILE (">" . "$col_ID[$i]" , "@splicejoin" . "\n"); + close (MYFILE);

Many thanks for the quick responses and for pointing me in the direction about it not actually being whitespace; didn't realise I could do that. Thanks again.