File Coverage

blib/lib/App/Anchr.pm
Criterion Covered Total %
statement 11 11 100.0
branch n/a
condition n/a
subroutine 4 4 100.0
pod n/a
total 15 15 100.0


line stmt bran cond sub pod time code
1             package App::Anchr;
2 24     24   1596518 use 5.010001;
  24         200  
3 24     24   123 use strict;
  24         81  
  24         480  
4 24     24   108 use warnings;
  24         39  
  24         766  
5 24     24   5986 use App::Cmd::Setup -app;
  24         481338  
  24         158  
6              
7             our $VERSION = "0.4.3";
8              
9             =pod
10              
11             =encoding utf-8
12              
13             =head1 NAME
14              
15             App::Anchr - B<A>ssembler of B<N>-free B<CHR>omosomes
16              
17             =head1 SYNOPSIS
18              
19             anchr <command> [-?h] [long options...]
20             -? -h --help show help
21              
22             Available commands:
23              
24             commands: list the application's commands
25             help: display a command's help screen
26              
27             anchors: selete anchors from k-unitigs or superreads
28             break: break long reads by anthors
29             contained: discard contained super-reads, k-unitigs, or anchors
30             cover: trusted regions in the first file covered by the second
31             dazzname: rename FASTA reads for dazz_db
32             dep: check or install dependances
33             group: group anthors by long reads
34             kunitigs: create k-unitigs from corrected reads
35             layout: layout anthor group
36             merge: merge overlapped super-reads, k-unitigs, or anchors
37             orient: orient overlapped sequences to the same strand
38             overlap: detect overlaps by daligner
39             overlap2: detect overlaps between two (large) files by daligner
40             quorum: Run quorum to discard bad reads
41             replace: replace IDs in .ovlp.tsv
42             restrict: restrict overlaps to known pairs
43             scaffold: scaffold anchors (k-unitigs/contigs) using paired-end reads
44             show2ovlp: LAshow outputs to ovelaps
45             trim: trim PE Illumina fastq files
46              
47             Run C<anchr help command-name> for usage information.
48              
49             =head1 DESCRIPTION
50              
51             App::Anchr is tend to be an Assembler of N-free CHRomosomes.
52              
53             =head1 INSTALLATION
54              
55             cpanm --installdeps https://github.com/wang-q/App-Anchr/archive/0.3.2.tar.gz
56             curl -fsSL https://raw.githubusercontent.com/wang-q/App-Anchr/master/share/install_dep.sh | bash
57             curl -fsSL https://raw.githubusercontent.com/wang-q/App-Anchr/master/share/check_dep.sh | bash
58             cpanm -nq https://github.com/wang-q/App-Anchr/archive/0.3.2.tar.gz
59             # cpanm -nq https://github.com/wang-q/App-Anchr.git
60              
61             =head1 AUTHOR
62              
63             Qiang Wang E<lt>wang-q@outlook.comE<gt>
64              
65             =head1 LICENSE
66              
67             This software is copyright (c) 2017 by Qiang Wang.
68              
69             This library is free software; you can redistribute it and/or modify
70             it under the same terms as Perl itself.
71              
72             =cut
73              
74             1;
75              
76             __END__