Sponsored Content
Top Forums Shell Programming and Scripting to print number one less than actual number Post 302135135 by Nidhi2177 on Thursday 6th of September 2007 05:15:42 AM
Old 09-06-2007
file_no's content are
34
45
56
77
55
66
54
67


tempfile=file_no
for number in `cat $tempfile`
do
number=$((number-1))
echo $number
done
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

How print number

Hi, I am using for loop as follow: for n in `ls` do echo "$n" done The code is running fine and aI am getting valid output as: jick zenny assi yogi But 1also want to print count in front of each output like this: 1 jick 2 zenny (4 Replies)
Discussion started by: bisla.yogender
4 Replies

2. Shell Programming and Scripting

print first number in each line

I have a file such as: .....12345......67890...xxx ....123456....78901...yyy ...1234567...89012...zzz ..12345678.90123...aaa Where the '.' character is a SPACE. I'm trying to print just the first number in each line. such as: 12345 123456 1234567 12345678 Both the number of... (1 Reply)
Discussion started by: dcfargo
1 Replies

3. UNIX for Dummies Questions & Answers

How to print number before argument?

Hey everyone, I need to write a script that will display the number of the argument before displaying the argument itself. Here's what I have so far: for arg in "$@" do echo $#:$arg done This returns the sum of all arguments preceding the arguments themselves. $(script) a b c 3:a... (1 Reply)
Discussion started by: unclepickle1
1 Replies

4. Shell Programming and Scripting

display the actual number of bash command interpreter

Hello everybody! I have a problem "Write script, which will display the actual number of bash command interpreter, working in the operating system." I used ps command to list all process running in the system but I don't know how to select only bash command interpreter. Pls give me some... (3 Replies)
Discussion started by: nguyendu0102
3 Replies

5. Shell Programming and Scripting

Perl : print the sequence number without missing number

Dear Perl users, I need your help to solve my problem below. I want to print the sequence number without missing number within the range. E.g. my sequence number : 1 2 3 4 5 6 7 8 11 12 13 14 my desired output: 1 -8 , 11-14 my code below but still problem with the result: 1 - 14 1 -... (2 Replies)
Discussion started by: mandai
2 Replies

6. Shell Programming and Scripting

AWK print number of records, divide this number

I would like to print the number of records of 2 files, and divide the two numbers awk '{print NR}' file1 > output1 awk '{print NR}' file2 > output2 paste output1 output2 > output awl '{print $1/$2}' output > output_2 is there a faster way? (8 Replies)
Discussion started by: programmerc
8 Replies

7. Shell Programming and Scripting

Print only word not number

Hi, Need to extract only words not numbers #cat test.txt 123456 oracle web 56789 s21adm Required output #grep <options> test.txt oracle web s21adm Note, in between integer "s21adm" is required but not with full integer "123456" and "56789" (6 Replies)
Discussion started by: ksgnathan
6 Replies

8. Shell Programming and Scripting

awk to find number in a field then print the line and the number

Hi I want to use awk to match where field 3 contains a number within string - then print the line and just the number as a new field. The source file is pipe delimited and looks something like 1|net|ABC Letr1|1530||| 1|net|EXP_1040 ABC|1121||| 1|net|EXP_TG1224|1122||| 1|net|R_North|1123|||... (5 Replies)
Discussion started by: Mudshark
5 Replies

9. Shell Programming and Scripting

Print occurence number

Hi folks, I have a file with lots of lines in a text file,i need to print the occurence number after sorting based on the first column as shown below, thanks in advance. sam,dallas,20174 sam,houston,20175 sam,atlanta,20176 jack,raleigh,457865 jack,dc,7845 john,sacramento,4567 ... (4 Replies)
Discussion started by: tech_frk
4 Replies

10. UNIX for Beginners Questions & Answers

Print number of lines for files in directory, also print number of unique lines

I have a directory of files, I can show the number of lines in each file and order them from lowest to highest with: wc -l *|sort 15263 Image.txt 16401 reference.txt 40459 richtexteditor.txt How can I also print the number of unique lines in each file? 15263 1401 Image.txt 16401... (15 Replies)
Discussion started by: spacegoose
15 Replies
Bio::Tools::Run::RNAMotif(3pm)				User Contributed Perl Documentation			    Bio::Tools::Run::RNAMotif(3pm)

NAME
Bio::Tools::Run::RNAMotif - Wrapper for local execution of rnamotif, rm2ct, rmfmt, rmprune SYNOPSIS
#run rnamotif|rmfmt|rm2ct my @params = ( descr => 'pyrR.descr', fmt => 'gb', setvar => 'ctx_maxlen=20', context => 1, sh => 1, ); my $factory = Bio::Tools::Run::RNAMotif->new(-program =>'rnamotif', -prune => 1, @params); # Pass the factory a Bio::Seq object or a file name # Returns a Bio::SearchIO object #my $searchio = $factory->run("B_sub.gb"); my $searchio = $factory->run($seq); while (my $result = $searchio->next_result){ while(my $hit = $result->next_hit){ while (my $hsp = $hit->next_hsp){ print join(" ", ( $r->query_name, $hit->name, $hsp->hit->start, $hsp->hit->end, $hsp->meta, $hsp->score, )), " "; } } } # Pass a finished report through rmfmt (-a format only) # Returns Bio::AlignIO object my $aio = Bio::AlignIO->new(-file=>"rna.msf",-format=>'msf'); my $factory = Bio::Tools::Run::RNAMotif->new('program'=>'rmfmt', 'a' => 1); my $alnin = $factory->run('trna.rnamotif'); my $aln = $alnin->next_aln; $aio->write_aln($aln); DESCRIPTION
Wrapper module for Tom Macke and David Cases's RNAMotif suite of programs. This allows running of rnamotif, rmprune, rm2ct, and rmfmt. Binaries are available at http://www.scripps.edu/mb/case/casegr-sh-3.5.html. This wrapper allows for one to save output to an optional named file or tempfile using the '-outfile_name' or '-tempfile' parameters; this is primarily for saving output from the rm2ct program, which currently does not have a parser available. If both a named output file and tempfile flag are set, the output file name is used. The default setting is piping output into a filehandle for parsing (or output to STDERR, for rm2ct which requires '-verbose' set to 1). WARNING: At this time, there is very little checking of parameter settings, so one could have an error if setting the worng parameter for a program. Future versions will likely add some error checking. NOTES ON PROGRAM PARAMETERS
All program parameters are currently supported. Of note, the 'D' parameter, used for setting the value of a variable to a value, is changed to 'set_var' to avoid name collisions with 'd' (used for dumping internal data structures). 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: http://redmine.open-bio.org/projects/bioperl/ AUTHOR - Chris Fields Email: cjfields-at-uiuc-dot-edu CONTRIBUTORS
cjfields-at-uiuc-dot-edu APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $wrapper = Bio::Tools::Run::RNAMotif->new(@params) Function: creates a new RNAMotif factory Returns: Bio::Tools::Run::RNAMotif Args : list of parameters -tempfile => set tempfile flag (default 0) -outfile_name => set file to send output to (default none) -prune => set rmprune postprocess flag (default 0) program_name Title : program_name Usage : $factory>program_name() Function: holds the program name Returns: string Args : None program_dir Title : program_dir Usage : $factory->program_dir(@params) Function: returns the program directory, obtained from ENV variable. Returns: string Args : version Title : version Usage : $v = $prog->version(); Function: Determine the version number of the program Example : Returns : float or undef Args : none run Title : run Usage : $obj->run($seqFile) Function: Runs RNAMotif programs, returns Bio::SearchIO/Bio::AlignIO Returns : Depends on program: 'rnamotif' - returns Bio::SearchIO 'rmfmt -a' - returns Bio::AlignIO all others - sends output to outfile, tempfile, STDERR Use search() (for Bio::SearchIO stream) or get_AlignIO() (for Bio::AlignIO stream) for a uniform Bioperl object interface. Args : A Bio::PrimarySeqI or file name Note : This runs any RNAMotif program set via program() search Title : search Usage : $searchio = $obj->search($seqFile) Function: Runs 'rnamotif' on seqs, returns Bio::SearchIO Returns : A Bio::SearchIO Args : A Bio::PrimarySeqI or file name Note : Runs 'rnamotif' only, regardless of program setting; all other parameters loaded get_AlignIO Title : get_AlignIO Usage : $aln = $obj->get_AlignIO($seqFile) Function: Runs 'rmfmt -a' on file, returns Bio::AlignIO Returns : A Bio::AlignIO Args : File name Note : Runs 'rmfmt -a' only, regardless of program setting; only file name and outfile (if any) are set tempfile Title : tempfile Usage : $obj->tempfile(1) Function: Set tempfile flag. When set, writes output to a tempfile; this is overridden by outfile_name() if set Returns : Boolean setting (or undef if not set) Args : [OPTIONAL] Boolean prune Title : prune Usage : $obj->prune(1) Function: Set rmprune flag. When set, follows any searches with a call to rmprune (this deletes some redundant sequence hits) Returns : Boolean setting (or undef if not set) Args : [OPTIONAL] Boolean _run Title : _run Usage : $obj->_run() Function: Internal(not to be used directly) Returns : Args : _setparams Title : _setparams Usage : Internal function, not to be called directly Function: creates a string of params to be used in the command string Example : Returns : string of params Args : _writeSeqFile Title : _writeSeqFile Usage : obj->_writeSeqFile($seq) Function: Internal(not to be used directly) Returns : writes passed Seq objects to tempfile, to be used as input for program Args : perl v5.12.3 2011-06-18 Bio::Tools::Run::RNAMotif(3pm)
All times are GMT -4. The time now is 11:06 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy