-
-
13 Jan 2022 10:02:18 UTC
- Distribution: Bio-RNA-BarMap
- Module version: 0.02
- Source (raw)
- Browse (raw)
- Changes
- How to Contribute
- Issues
- Testers (260 / 0 / 0)
- Kwalitee
Bus factor: 1- 81.35% Coverage
- License: gpl_3
- Activity
24 month- Tools
- Download (26.36KB)
- MetaCPAN Explorer
- Permissions
- Subscribe to distribution
- Permalinks
- This version
- Latest version
and 1 contributors-
Felix Kuehnl
- Dependencies
- File::Spec
- IPC::System::Simple
- List::Util
- Moose
- MooseX::StrictConstructor
- Scalar::Util
- autodie
- namespace::autoclean
- and possibly others
- Reverse dependencies
- CPAN Testers List
- Dependency graph
NAME
Bio::RNA::BarMap::Mapping::Set - Internally used class to store sets
SYNOPSIS
use v5.12; # for 'say()' and '//' a.k.a. logical defined-or use Bio::RNA::BarMap; # Construct new, empty set. my $set = Bio::RNA::BarMap::Mapping::Set->new(); # Insert elements. $set->insert( qw(hello there foo) ); # Retrieve elements. say "Elements in set: ", join q{, }, $set->elements;
DESCRIPTION
A simple, pure-Perl implementation of a set data structure. It is significantly faster than Set::Scalar, which became a bottleneck during the implementation of this module. It supports storing references, but no deep equality checks are performed.
METHODS
Bio::RNA::BarMap::Mapping::Set->new()
Returns a new, empty set. Adding elements during construction is currently not supported (for no specific reason), use the
insert()
method instead.$set->elements()
Return all items contained in this set.
$set->insert(@elements)
Insert one or more
@elements
into the set. Supports references.AUTHOR
Felix Kuehnl,
<felix at bioinf.uni-leipzig.de>
BUGS
Please report any bugs or feature requests by raising an issue at https://github.com/xileF1337/Bio-RNA-BarMap/issues.
You can also do so by mailing to
bug-bio-rna-barmap at rt.cpan.org
, or through the web interface at https://rt.cpan.org/NoAuth/ReportBug.html?Queue=Bio-RNA-BarMap. I will be notified, and then you'll automatically be notified of progress on your bug as I make changes.SUPPORT
You can find documentation for this module with the perldoc command.
perldoc Bio::RNA::BarMap
You can also look for information at the official BarMap website:
https://www.tbi.univie.ac.at/RNA/bar_map/
Github: the official repository
RT: CPAN's request tracker (report bugs here)
AnnoCPAN: Annotated CPAN documentation
CPAN Ratings
Search CPAN
LICENSE AND COPYRIGHT
Copyright 2019-2021 Felix Kuehnl.
This program is free software: you can redistribute it and/or modify it under the terms of the GNU General Public License as published by the Free Software Foundation, either version 3 of the License, or (at your option) any later version.
This program is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for more details.
You should have received a copy of the GNU General Public License along with this program. If not, see http://www.gnu.org/licenses/.
Module Install Instructions
To install Bio::RNA::BarMap, copy and paste the appropriate command in to your terminal.
cpanm Bio::RNA::BarMap
perl -MCPAN -e shell install Bio::RNA::BarMap
For more information on module installation, please visit the detailed CPAN module installation guide.