1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39
|
#!/usr/bin/perl -w
if(@ARGV !=2){
print "format:remove_breakline.pl input.txt output.txt k\n";
print "Please specify the names of the input file and the output file\n";
exit 1;
}
$infile1=shift; #idio me $infile=$ARGV[0]
#idio me $outfile= $ARGV[1]
$outfile=shift;
$k=0;
open(IN, "$infile1") || die "Cannot open: $!\n";
open(OUT, ">$outfile") || die "Cannot open: $!\n";
$first=1;
while($line=<IN>){
if ($line=~m/^>(.*)/){
if($first==1){
$first=0;
}
else{
print OUT "\n";
}
print OUT $line;
}
else{
chomp( $line);
$k++;
#$line=~ s/\n//s;
print OUT $line;
next $line if($line=~m/^>(.*)/);
#print OUT " \n" ;
}
}
close(OUT);
close(IN);
|