Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

bp_oligo_count(1p) [debian man page]

BP_OLIGO_COUNT(1p)					User Contributed Perl Documentation					BP_OLIGO_COUNT(1p)

NAME
oligo_count - oligo count and frequency SYNOPSIS
Usage: oligo_count [-h/--help] [-l/--length OLIGOLENGTH] [-f/--format SEQFORMAT] [-i/--in/-s/--sequence SEQFILE] [-o/--out OUTFILE] DESCRIPTION
This scripts counts occurrence and frequency for all oligonucleotides of given length. It can be used to determine what primers are useful for frequent priming of nucleic acid for random labeling. Note that this script could be run by utilizing the compseq program which is part of EMBOSS. OPTIONS
The default sequence format is fasta. If no outfile is given, the results will be printed to standard out. All other options can entered interactively. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to the Bioperl mailing list. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Charles C. Kim Email cckim@stanford.edu HISTORY
Written July 2, 2001 Submitted to bioperl scripts project 2001/08/06 >> 100 x speed optimization by Heikki Lehvaslaiho perl v5.14.2 2012-03-02 BP_OLIGO_COUNT(1p)

Check Out this Related Man Page

Bio::Coordinate::Result::Gap(3pm)			User Contributed Perl Documentation			 Bio::Coordinate::Result::Gap(3pm)

NAME
Bio::Coordinate::Result::Gap - Another name for Bio::Location::Simple SYNOPSIS
$loc = Bio::Coordinate::Result::Gap->new(-start=>10, -end=>30, -strand=>1); DESCRIPTION
This is a location object for coordinate mapping results. FEEDBACK
Mailing Lists User feedback is an integral part of the evolution of this and other Bioperl modules. Send your comments and suggestions preferably to one of the Bioperl mailing lists. Your participation is much appreciated. bioperl-l@bioperl.org - General discussion http://bioperl.org/wiki/Mailing_lists - About the mailing lists Support Please direct usage questions or support issues to the mailing list: bioperl-l@bioperl.org rather than to the module maintainer directly. Many experienced and reponsive experts will be able look at the problem and quickly address it. Please include a thorough description of the problem with code and data examples if at all possible. Reporting Bugs Report bugs to the Bioperl bug tracking system to help us keep track the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Heikki Lehvaslaiho Email heikki-at-bioperl-dot-org APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ perl v5.14.2 2012-03-02 Bio::Coordinate::Result::Gap(3pm)
Man Page

8 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How to extract a sequence of n lines from a file

Hi I want to be able to extract a sequence of n lines from a file. ideas, commands and suggestions would be highly appreciated. Thanks (4 Replies)
Discussion started by: 0ktalmagik
4 Replies

2. Shell Programming and Scripting

Comparison of Mailing option

Hi, Can anyone tell which mailing option is more reliable, Java or Unix and in what way? Thanks, Vijay (1 Reply)
Discussion started by: snvijaysankar
1 Replies

3. UNIX for Dummies Questions & Answers

Just asking - Tips on how to maintain your scripts ..

Hi all, Just writing to ask if any one can advise on what tools to use best for maintaining your scripts ... preferably free/open source and portable if there is one, that is, one that can be placed and run on a USB stick ... At the moment, am having them in directories and files and no... (2 Replies)
Discussion started by: newbie_01
2 Replies

4. Shell Programming and Scripting

Parsing a fasta sequence with start and end coordinates

Hi.. I have a seperate chromosome sequences and i wanted to parse some regions of chromosome based on start site and end site.. how can i achieve this? For Example Chr 1 is in following format I need regions from 2 - 10 should give me AATTCCAAA and in a similar way 15- 25 should give... (8 Replies)
Discussion started by: empyrean
8 Replies

5. Shell Programming and Scripting

Summing numbers after specific word

Hi all, Looking for suggestions on a better way to sum numbers in a key value pair formated file. What I have works but seems really clunky to me. Any suggestions would be greatly appreciated. cat test.txt | perl -ne 'm/(M=)(\d+\.?\d?\d?)/ && print "$2\n"' | awk '{ sum+=$1} END {printf... (7 Replies)
Discussion started by: cgol
7 Replies

6. Shell Programming and Scripting

Perl- Finding average "frequency" of occurrence of duplicate lines

Hello, I am working with a perl script that tries to find the average "frequency" in which lines are duplicated. So far I've only managed to find the way to count how many times the lines are repeated, the code is as follows: perl -ae' my $filename= $ENV{'i'}; open (FILE, "$filename") or... (10 Replies)
Discussion started by: acsg
10 Replies

7. Shell Programming and Scripting

parse fasta file to tabular file

Hello, A bioperl problem I thought could be done with awk: convert the fasta format (Note: the length of each row is not the same for each entry as they were combined from different files!) to tabular format. input.fasta: >YAL069W-1.334 Putative promoter sequence... (6 Replies)
Discussion started by: yifangt
6 Replies

8. Shell Programming and Scripting

Find most and second most abundant value

I would like to convert the most frequent and second most frequent duplet in each row to 1 and -1 respectively ...and everything else to 0. please assist A duplet is only AA , CC, GG and TT - C1 C2 C3 C4 C5 R1 AA AA - - CC R2 AC AA AA CC CC R3 AT AT TT TT TT R5 AT TT AA AA AA ... (7 Replies)
Discussion started by: ritakadm
7 Replies