-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfq_filter.pl
44 lines (40 loc) · 813 Bytes
/
fq_filter.pl
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
40
41
42
43
44
#!/usr/bin/perl
use strict;
use warings;
use Getopt::Long;
my($infile,$outfile);
Getoptions(
"infile:s" => \$infile,
"outfile" => \$outfile,
"h|?" => \&USAGE,
) or &USAGE;
&USAGE if(!defined $infile and !defined $outfile);
open(IN,"$infile") or die "$!";
open(OUT,">$outfile");
foreach my $line(<IN>){
chomp $line;
my $read_id=$line;
chomp(my $seq=<IN>);
chomp(my $mark=<IN>);
chomp(my $qua=<IN>);
my $length=length($seq);
if(60<=$length && $length<=80){
print OUT $read_id,"\n";
print OUT $seq,"\n";
print OUT $mark,"\n";
print OUT $qua,"\n";
}
}
close IN;
close OUT;
sub USAGE{
my $usage=<<"USAGE";
------------------------------
-infile fastq,forced
-outfile output file,forced
-h help
------------------------------
USAGE
print $usage;
exit;
}