File: 18-amplicon-multiple.t

package info (click to toggle)
grinder 0.5.4-6
  • links: PTS, VCS
  • area: main
  • in suites: bookworm, bullseye, sid, trixie
  • size: 1,180 kB
  • sloc: perl: 8,080; xml: 368; makefile: 59; python: 27
file content (135 lines) | stat: -rw-r--r-- 4,555 bytes parent folder | download | duplicates (2)
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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
#! perl

use strict;
use warnings;
use Test::More;
use lib '.';
use t::TestUtils;
use Grinder;


my ($factory, $read, $nof_reads, %got_amplicons, %expected_amplicons);


# Template with several matching amplicons and forward primer only

ok $factory = Grinder->new(
   -reference_file  => data('multiple_amplicon_database.fa'),
   -forward_reverse => data('forward_primer.fa')            ,
   -length_bias     => 0                                    ,
   -unidirectional  => 1                                    ,
   -read_dist       => 100                                  ,
   -total_reads     => 100                                  ,
), 'Forward primer only';

$nof_reads = 0;
while ( $read = $factory->next_read ) {
   $nof_reads++;
   $got_amplicons{$read->seq} = undef;
   ok_read_forward_only($read, 1, $nof_reads);
};
is $nof_reads, 100;

%expected_amplicons = (
   'AAACTTAAAGGAATTGRCGGttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttGTACACACCGCCCGT'      => undef,
   'AAACTUAAAGGAATTGACGGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGTACACACCGCCCGTccccc' => undef,
   'AAACTTAAAGGAATTGACGGaaaaaaaaaaaaaaaaaaaaaaaggggggggaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGTACACACCGCCCGTggggg' => undef,
);

is_deeply( \%got_amplicons, \%expected_amplicons );
undef %got_amplicons;


# Template with several matching amplicons and forward and reverse primers

ok $factory = Grinder->new(
   -reference_file  => data('multiple_amplicon_database.fa'),
   -forward_reverse => data('forward_reverse_primers.fa')   ,
   -length_bias     => 0                                    ,
   -unidirectional  => 1                                    ,
   -read_dist       => 100                                  ,
   -total_reads     => 100                                  ,
), 'Forward and reverse primers';

$nof_reads = 0;
while ( $read = $factory->next_read ) {
   $nof_reads++;
   $got_amplicons{$read->seq} = undef;
   ok_read_forward_reverse($read, 1, $nof_reads);
};
is $nof_reads, 100;

%expected_amplicons = (
   'AAACTTAAAGGAATTGACGGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGTACACACCGCCCGT' => undef,
   'AAACTTAAAGGAATTGACGGaaaaaaaaaaaaaaaaaaaaaaaggggggggaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGTACACACCGCCCGT' => undef,
   'AAACTTAAAGGAATTGRCGGttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttGTACACACCGCCCGT' => undef,
   'AAACTUAAAGGAATTGACGGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGTACACACCGCCCGT' => undef,
);
is_deeply( \%got_amplicons, \%expected_amplicons );
undef %got_amplicons;


# Template with several nested amplicons and forward and reverse primers

ok $factory = Grinder->new(
   -reference_file  => data('nested_amplicon_database.fa'),
   -forward_reverse => data('forward_reverse_primers.fa')   ,
   -length_bias     => 0                                    ,
   -unidirectional  => 1                                    ,
   -read_dist       => 100                                  ,
   -total_reads     => 100                                  ,
), 'Forward and reverse primers, nested amplicons';

$nof_reads = 0;
while ( $read = $factory->next_read ) {
   $nof_reads++;
   $got_amplicons{$read->seq} = undef;
   ok_read_forward_reverse($read, 1, $nof_reads);
};
is $nof_reads, 100;

%expected_amplicons = (
   'AAACTUAAAGGAATTGACGGaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaGTACACACCGCCCGT' => undef,
   'AAACTTAAAGGAATTGRCGGttttttttttttttttttttttttttttttttttttttttttttttttttttttttttttGTACACACCGCCCGT' => undef,
   'AAACTTAAAGGAATTGACGGggggggggggggggggggggggggggggggggggggggggggggggggggggggggggggGTACACACCGCCCGT' => undef,
);

is_deeply( \%got_amplicons, \%expected_amplicons );
undef %got_amplicons;


done_testing();




sub ok_read_forward_reverse {
   my ($read, $req_strand, $nof_reads) = @_;
   isa_ok $read, 'Bio::Seq::SimulatedRead';
   like $read->reference->id, qr/^seq\d+$/;
   my $strand = $read->strand;
   if (not defined $req_strand) {
      $req_strand = $strand;
   } else {
      is $strand, $req_strand;
   }
   my $readseq = $read->seq;
   is $read->id, $nof_reads;
   is $read->length, 95;
}

sub ok_read_forward_only {
   my ($read, $req_strand, $nof_reads) = @_;
   isa_ok $read, 'Bio::Seq::SimulatedRead';
   like $read->reference->id, qr/^seq\d+$/;
   my $strand = $read->strand;
   if (not defined $req_strand) {
      $req_strand = $strand;
   } else {
      is $strand, $req_strand;
   }
   my $readseq = $read->seq;
   is $read->id, $nof_reads;
   my $readlength = $read->length;
   ok ( ($readlength == 95) or ($readlength == 100) );
}