File Coverage

lib/App/Sandy/Role/Template/Fastq.pm
Criterion Covered Total %
statement 6 6 100.0
branch n/a
condition n/a
subroutine 2 2 100.0
pod 0 1 0.0
total 8 9 88.8


line stmt bran cond sub pod time code
1             package App::Sandy::Role::Template::Fastq;
2             # ABSTRACT: Fastq template role
3              
4 6     6   3435 use App::Sandy::Base 'role';
  6         18  
  6         38  
5              
6             our $VERSION = '0.22'; # VERSION
7              
8             sub with_fastq_template {
9 2325     2325 0 5307 my ($self, $seqid_ref, $read_ref, $quality_ref) = @_;
10 2325         7958 my $fastq = "\@$$seqid_ref\n$$read_ref\n+\n$$quality_ref\n";
11 2325         17538 return \$fastq;
12             }
13              
14             __END__
15              
16             =pod
17              
18             =encoding UTF-8
19              
20             =head1 NAME
21              
22             App::Sandy::Role::Template::Fastq - Fastq template role
23              
24             =head1 VERSION
25              
26             version 0.22
27              
28             =head1 AUTHORS
29              
30             =over 4
31              
32             =item *
33              
34             Thiago L. A. Miller <tmiller@mochsl.org.br>
35              
36             =item *
37              
38             J. Leonel Buzzo <lbuzzo@mochsl.org.br>
39              
40             =item *
41              
42             Felipe R. C. dos Santos <fsantos@mochsl.org.br>
43              
44             =item *
45              
46             Helena B. Conceição <hconceicao@mochsl.org.br>
47              
48             =item *
49              
50             Gabriela Guardia <gguardia@mochsl.org.br>
51              
52             =item *
53              
54             Fernanda Orpinelli <forpinelli@mochsl.org.br>
55              
56             =item *
57              
58             Pedro A. F. Galante <pgalante@mochsl.org.br>
59              
60             =back
61              
62             =head1 COPYRIGHT AND LICENSE
63              
64             This software is Copyright (c) 2018 by Teaching and Research Institute from Sírio-Libanês Hospital.
65              
66             This is free software, licensed under:
67              
68             The GNU General Public License, Version 3, June 2007
69              
70             =cut