Sponsored Content
Top Forums Shell Programming and Scripting Change file content based on data Post 302446172 by varunrbs on Wednesday 18th of August 2010 02:54:34 AM
Old 08-18-2010
Your understanding is totally corect

Yes. This is exactly what is required.

Also there are around 1 million records in the file and the command/script should check all records.

And there are 15 similar conditions.
 

10 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Need help to change the content for remote located file

Hi All, I have one file that sits on 4 diffrent servers, those servers are diffrent region based and they are authentication protected and that file has a diff port numbers, so when run the script it must ask my login details,region of server and port no for that file once it took from me... (1 Reply)
Discussion started by: tmarjuna
1 Replies

2. Shell Programming and Scripting

How to change a file's content by row?

Greetings. So the question is basically the same as it's in the title. I'd like to write a program that changes a file by rows. So to clarify it. (i know i shouldn't use code,/code here but i would like to separate it) So for example a text file looks like something like this: Happy... (5 Replies)
Discussion started by: buddhist
5 Replies

3. Shell Programming and Scripting

Scan and change file data content problem

Input file >Read_1 XXXXXXXXXXSDFXXXXXDS (condition 1: After the last "X" per line, if the distance is less than or equal to 3 letter, replace those not "X" letter with "X") TREXXXXXXXSDFXXXXXDS (condition 2: Before the first "X" per line, if the distance is less than or equal to 3 letter,... (12 Replies)
Discussion started by: patrick87
12 Replies

4. Shell Programming and Scripting

Execution Problems with scan and change file data content

Input file >Read_1 XXXXXXXXXXSDFXXXXXDS ASDRXXXXXTGAGTXXXXXT TGTGATXXXXXAXXXXGXXA . . Desired output file >Read_1 XXXXXXXXXXXXXXXXXXDS ASDRXXXXXTGAGTXXXXXT TGTGATXXXXXXXXXXXXXA . . (5 Replies)
Discussion started by: patrick87
5 Replies

5. Linux

when SCP, does file content change?

Good day to you all, Just want to check here, i know when scping a file, size might change due to space issue. it might sound silly, but does file content get change too? if so, what kind of situation that might be? (1 Reply)
Discussion started by: ahtat99
1 Replies

6. Shell Programming and Scripting

Split the file based on the content

Arun kumar something somehting Enterting in to the line . . . . Some text text Finshing the sentence Some other text . . . . Again something somehting Enterting in to the line . . . . . . Again text text Finshing the sentence (6 Replies)
Discussion started by: arukuku
6 Replies

7. Shell Programming and Scripting

Help with analysis data based on particular column content

Input file: Total_counts 1306726155 100% Number_of_count_true 855020282 Number_of_count_true_1 160014283 Number_of_count_true_2 44002825 Number_of_count_true_3 18098424 Number_of_count_true_4 24693745 Number_of_count_false 115421870 Number_of_count_true 51048447 Total_number_of_false ... (2 Replies)
Discussion started by: perl_beginner
2 Replies

8. Shell Programming and Scripting

Help with data rearrangement based on share same content

Input file data_2 USA data_2 JAPAN data_3 UK data_4 Brazil data_5 Singapore data_5 Indo data_5 Thailand data_6 China Desired output file data_2 USA/JAPAN data_3 UK data_4 Brazil data_5 Singapore/Indo/Thailand data_6 China I would like to merge all data content that share same... (2 Replies)
Discussion started by: perl_beginner
2 Replies

9. Shell Programming and Scripting

Change a file content format using awk

Hi, i have a file input.txt Continent North America Country USA Capital Washington D.C. Country Canada Capital Ottawa Continent South America Country Argentina Capital Buenos Aires Country Brazil Capital Brasília Coutry Colombia Capital Bogotá and i want to get an output.txt ... (3 Replies)
Discussion started by: fastlane3000
3 Replies

10. Shell Programming and Scripting

Script to change the file content using some conditions

Hello, I would like to change the content of the file that has few blocks starts with 10 and ends with ";" File1.txt 10 bonuses D 20 MATCHED 30 UPD COL 40 (SOL=30) 20 NOT MATCHED 30 INS COL 40 (SOL=30) ; 10 bonuses D 20 MATCHED 30 UPD COL 40... (5 Replies)
Discussion started by: Mannu2525
5 Replies
Bio::Map::Relative(3pm) 				User Contributed Perl Documentation				   Bio::Map::Relative(3pm)

NAME
Bio::Map::Relative - Represents what a Position's coordiantes are relative to. SYNOPSIS
# Get a Bio::Map::PositionI somehow my $pos = Bio::Map::Position->new(-value => 100); # its co-ordinates are implicitly relative to the start of its map my $implicit_relative = $pos->relative; my $type = $implicit_relative->type; # $type eq 'map' my $value = $implicit_relative->$type(); # $value == 0 # make its co-ordinates relative to another Position my $pos_we_are_relative_to = Bio::Map::Position->new(-value => 200); my $relative = Bio::Map::Relative->new(-position => $pos_we_are_relative_to); $pos->relative($relative); # Get the start co-ordinate of $pos relative to $pos_we_are_relative_to my $start = $pos->start; # $start == 100 # Get the start co-ordinate of $pos relative to the start of the map my $abs_start = $relative->absolute_conversion($pos); # $abs_start == 300 # - or - $pos->absolute(1); my $abs_start = $pos->start; # $abs_start == 300 $pos->absolute(0); # Get the start co-ordinate of $pos relative to a third Position my $pos_frame_of_reference = Bio::Map::Position->new(-value => 10); my $relative2 = Bio::Map::Relative->new(-position => $pos_frame_of_reference); my $start = $pos->start($relative2); # $start == 290 DESCRIPTION
A Relative object is used to describe what the co-ordinates (numerical(), start(), end()) of a Position are relative to. By default they are implicitly assumed to be relative to the start of the map the Position is on. But setting the relative() of a Position to one of these objects lets us define otherwise. 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 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 of the bugs and their resolution. Bug reports can be submitted via the web: https://redmine.open-bio.org/projects/bioperl/ AUTHOR - Sendu Bala Email bix@sendu.me.uk APPENDIX
The rest of the documentation details each of the object methods. Internal methods are usually preceded with a _ new Title : new Usage : my $relative = Bio::Map::Relative->new(); Function: Build a new Bio::Map::Relative object. Returns : Bio::Map::Relative object Args : -map => int : coordinates are relative to this point on the Position's map [default is map => 0, ie. relative to the start of the map], -element => Mappable : or relative to this element's (a Bio::Map::MappableI) position in the map (only works if the given element has only one position in the map the Position belongs to), -position => Position : or relative to this other Position (a Bio::Map::PositionI, fails if the other Position is on a different map to this map) -description => string: Free text description of what this relative describes (To say a Position is relative to something and upstream of it, the Position's start() co-ordinate should be set negative) absolute_conversion Title : absolute_conversion Usage : my $absolute_coord = $relative->absolute_conversion($pos); Function: Convert the start co-ordinate of the supplied position into a number relative to the start of its map. Returns : scalar number Args : Bio::Map::PositionI object type Title : type Usage : my $type = $relative->type(); Function: Get the type of thing we are relative to. The types correspond to a method name, so the value of what we are relative to can subsequently be found by $value = $relative->$type; Note that type is set by the last method that was set, or during new(). Returns : the string 'map', 'element' or 'position', or undef Args : none map Title : map Usage : my $int = $relative->map(); $relative->map($int); Function: Get/set the distance from the start of the map that the Position's co-ordiantes are relative to. Returns : int Args : none to get, OR int to set; a value of 0 means relative to the start of the map. element Title : element Usage : my $element = $relative->element(); $relative->element($element); Function: Get/set the map element (Mappable) the Position is relative to. If the Mappable has more than one Position on the Position's map, we will be relative to the Mappable's first Position on the map. Returns : Bio::Map::MappableI Args : none to get, OR Bio::Map::MappableI to set position Title : position Usage : my $position = $relative->position(); $relative->position($position); Function: Get/set the Position your Position is relative to. Your Position will be made relative to the start of this supplied Position. It makes no difference what maps the Positions are on. Returns : Bio::Map::PositionI Args : none to get, OR Bio::Map::PositionI to set description Title : description Usage : my $description = $relative->description(); $relative->description($description); Function: Get/set a textual description of what this relative describes. Returns : string Args : none to get, OR string to set perl v5.14.2 2012-03-02 Bio::Map::Relative(3pm)
All times are GMT -4. The time now is 05:09 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy