Sponsored Content
Top Forums Shell Programming and Scripting setter and getter functions for file manipulation with sed Post 302602885 by Toorop on Tuesday 28th of February 2012 03:01:09 PM
Old 02-28-2012
Hi there,
I got your point, but I don't think I made a mistake. I provided a small text file that resembles my actual real world case. I listed some numbers that may occur and can cause some trouble. And that's all. If the file that I tried to change is huge I would stressed that in the first place.

So to get it straight:
my real file is an OpenFOAM controlDict file like - cant post URL, forum engine wont allow, sorry
I just wanted to make some manipulation on it in an elegant way, without to much code duplication and overhead.
My shell is bash.

Thank you for your time!

unihub.ru/tools/ofservice/browser/trunk/2.0.1/OpenFOAM-2.0.1/tutorials/incompressible/simpleFoam/motorBike/system/controlDict

use https://, it is working here

Last edited by Toorop; 02-28-2012 at 04:22 PM.. Reason: url addition
 

9 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

file name Manipulation using sed

Hi, I have a file name, for which I want to strip out the first bit and leave the rest... So I want to take the file name .lockfile-filename.10001 ,strip it and have only filename.10001 ... Thanking you all inadvance, Zak (6 Replies)
Discussion started by: Zak
6 Replies

2. Shell Programming and Scripting

How to use sed for string manipulation

Hi, I would like to know How to use use sed for manipulating string for the following situation. Basically my objective is to check validity of the filename in my shell script. I am getting a parameter like this for my shell script. Check my folder is having some space. $1=/root/krishna... (2 Replies)
Discussion started by: hikrishn
2 Replies

3. Shell Programming and Scripting

File manipulation with AWK and SED

Hello How do i check that correct input files are used while using AWk and SED for file manipulation? e.g awk '/bin/ {print $0 }' shell.txt sed 's/hp/samsung/' printers.txt how do i ensure that the correct input files I am working with are used? (5 Replies)
Discussion started by: Pauline mugisha
5 Replies

4. Shell Programming and Scripting

SED/AWK file read & manipulation

I have large number of data files, close to 300 files, lets say all files are same kind and have extension .dat , each file have mulitple lines in it. There is a unique line in each file containing string 'SERVER'. Right after this line there is another line which contain a string 'DIGIT=0',... (4 Replies)
Discussion started by: sal_tx
4 Replies

5. Shell Programming and Scripting

Manipulation with the string using sed

hello All, When I run find command on certain directory I may get one of the following output depending on configuration A. ./rel/prod/libpam.a B. ./rel/fld/libpam.a C. ./deb/detail/libpam.a D. ./deb/err/libpam.a I want to get output as below A. rel/prod B.... (2 Replies)
Discussion started by: anand.shah
2 Replies

6. Shell Programming and Scripting

sed flat file manipulation

Hello, I have a large flat file where i need to change data in columns 131-133 based on what is in columns 172-173. I am not sure if I need to read the file line by line and make the change or if I can do this in a single statement. thank you (3 Replies)
Discussion started by: gblmin
3 Replies

7. Programming

Simplify setter and getter of java class

I am trying to verify my understanding on setter and getter on java class with this example: //MaximumFinder2.java import java.util.Scanner; public class MaximumFinder2 { public static void main (String args) { Scanner input = new Scanner(System.in); ... (6 Replies)
Discussion started by: yifangt
6 Replies

8. Shell Programming and Scripting

sed for string manipulation

I have a file which contains contents like below proxy.config.cluster.mc_group_addr 224.0.1.37 proxy.config.log.logging_enabled 3 proxy.config.log.squid_log_enabled 1 Need to modify to 'proxy.config.cluster.mc_group_addr': '224.0.1.37' 'proxy.config.log.logging_enabled': '3'... (10 Replies)
Discussion started by: esham
10 Replies

9. UNIX for Beginners Questions & Answers

File manipulation place 0 before the number using sed

I'm new with sed, and i am really confused with slashes, backslashes, parentheses, I've tried reading some beginner's guide, but still trouble fixing this problem, do you have any tips where or what to read to learn more about sed? can you also help me with my problem? Note: I was tasked to use... (4 Replies)
Discussion started by: akopocpoypoy
4 Replies
MAGE::BioAssayData(3pm) 				User Contributed Perl Documentation				   MAGE::BioAssayData(3pm)

NAME
Bio::MAGE::BioAssayData - Container module for classes in the MAGE package: BioAssayData SYNOPSIS
use Bio::MAGE::BioAssayData; DESCRIPTION
This is a package module that encapsulates a number of classes in the Bio::MAGE hierarchy. These classes belong to the BioAssayData package of the MAGE-OM object model. CLASSES
The Bio::MAGE::BioAssayData module contains the following Bio::MAGE classes: o BioAssayData o QuantitationTypeDimension o BioAssayMapping o DesignElementDimension o BioAssayDatum o DerivedBioAssayData o MeasuredBioAssayData o QuantitationTypeMapping o DesignElementMapping o BioDataCube o BioDataValues o BioDataTuples o BioAssayDimension o QuantitationTypeMap o Transformation o DesignElementMap o BioAssayMap o CompositeSequenceDimension o ReporterDimension o FeatureDimension CLASS METHODS
@class_list = Bio::MAGE::BioAssayData::classes(); This method returns a list of non-fully qualified class names (i.e. they do not have 'Bio::MAGE::' as a prefix) in this package. $obj = class->new(%parameters) The "new()" method is the class constructor. Parameters: if given a list of name/value parameters the corresponding slots, attributes, or associations will have their initial values set by the constructor. Return value: It returns a reference to an object of the class. Side effects: It invokes the "initialize()" method if it is defined by the class. @names = class->get_slot_names() The "get_slot_names()" method is used to retrieve the name of all slots defined in a given class. NOTE: the list of names does not include attribute or association names. Return value: A list of the names of all slots defined for this class. Side effects: none @name_list = get_attribute_names() returns the list of attribute data members for this class. @name_list = get_association_names() returns the list of association data members for this class. @class_list = get_superclasses() returns the list of superclasses for this class. @class_list = get_subclasses() returns the list of subclasses for this class. $name = class_name() Returns the full class name for this class. $package_name = package_name() Returns the base package name (i.e. no 'namespace::') of the package that contains this class. %assns = associations() returns the association meta-information in a hash where the keys are the association names and the values are "Association" objects that provide the meta-information for the association. INSTANCE METHODS
$obj_copy = $obj->new() When invoked with an existing object reference and not a class name, the "new()" method acts as a copy constructor - with the new object's initial values set to be those of the existing object. Parameters: No input parameters are used in the copy constructor, the initial values are taken directly from the object to be copied. Return value: It returns a reference to an object of the class. Side effects: It invokes the "initialize()" method if it is defined by the class. $obj->set_slots(%parameters) $obj->set_slots(@name_list, @value_list) The "set_slots()" method is used to set a number of slots at the same time. It has two different invocation methods. The first takes a named parameter list, and the second takes two array references. Return value: none Side effects: will call "croak()" if a slot_name is used that the class does not define. @obj_list = $obj->get_slots(@name_list) The "get_slots()" method is used to get the values of a number of slots at the same time. Return value: a list of instance objects Side effects: none $val = $obj->set_slot($name,$val) The "set_slot()" method sets the slot $name to the value $val Return value: the new value of the slot, i.e. $val Side effects: none $val = $obj->get_slot($name) The "get_slot()" method is used to get the values of a number of slots at the same time. Return value: a single slot value, or undef if the slot has not been initialized. Side effects: none $val = $bioassaydata->xml_lists() $inval = $bioassaydata->xml_lists($inval) This is the unified setter/getter method for the xml_lists slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the xml_lists slot Side effects: none Exceptions: none $val = $bioassaydata->tagname() $inval = $bioassaydata->tagname($inval) This is the unified setter/getter method for the tagname slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the tagname slot Side effects: none Exceptions: none $val = $bioassaydata->bioassaydimension_list() $inval = $bioassaydata->bioassaydimension_list($inval) This is the unified setter/getter method for the bioassaydimension_list slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the bioassaydimension_list slot Side effects: none Exceptions: none $val = $bioassaydata->designelementdimension_list() $inval = $bioassaydata->designelementdimension_list($inval) This is the unified setter/getter method for the designelementdimension_list slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the designelementdimension_list slot Side effects: none Exceptions: none $val = $bioassaydata->quantitationtypedimension_list() $inval = $bioassaydata->quantitationtypedimension_list($inval) This is the unified setter/getter method for the quantitationtypedimension_list slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the quantitationtypedimension_list slot Side effects: none Exceptions: none $val = $bioassaydata->bioassaymap_list() $inval = $bioassaydata->bioassaymap_list($inval) This is the unified setter/getter method for the bioassaymap_list slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the bioassaymap_list slot Side effects: none Exceptions: none $val = $bioassaydata->quantitationtypemap_list() $inval = $bioassaydata->quantitationtypemap_list($inval) This is the unified setter/getter method for the quantitationtypemap_list slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the quantitationtypemap_list slot Side effects: none Exceptions: none $val = $bioassaydata->bioassaydata_list() $inval = $bioassaydata->bioassaydata_list($inval) This is the unified setter/getter method for the bioassaydata_list slot. If $inval is specified, the setter method is invoked, with no parameters, the getter method is invoked. Input parameters: the optional $inval will invoke the setter method. Return value: for both setter and getter the current value of the bioassaydata_list slot Side effects: none Exceptions: none $array_ref = $bioassaydata->getBioAssayDimension_list() This method handles the list for the "Bio::MAGE::BioAssayData::BioAssayDimension" class. It returns a reference to an array of the class objects that have been associated with the package instance. This is useful when retrieving data from parsed MAGE-ML file. $bioassaydata->addBioAssayDimension(@vals) This method is an interface for adding "Bio::MAGE::BioAssayData::BioAssayDimension" objects to the "bioassaydimension_list" list. It is generally used by generic methods such as those in the XMLWriter. Input parameters: the list of values @vals to add to the owner association. NOTE: submitting a single value is permitted. Return value: none Side effects: none Exceptions: will call "croak()" if no input parameters are specified , or if any of the objects in @vals is not a subclass of class "Bio::MAGE::BioAssayData::BioAssayDimension" $array_ref = $bioassaydata->getDesignElementDimension_list() This method handles the list for the "Bio::MAGE::BioAssayData::DesignElementDimension" class. It returns a reference to an array of the class objects that have been associated with the package instance. This is useful when retrieving data from parsed MAGE-ML file. $bioassaydata->addDesignElementDimension(@vals) This method is an interface for adding "Bio::MAGE::BioAssayData::DesignElementDimension" objects to the "designelementdimension_list" list. It is generally used by generic methods such as those in the XMLWriter. Input parameters: the list of values @vals to add to the owner association. NOTE: submitting a single value is permitted. Return value: none Side effects: none Exceptions: will call "croak()" if no input parameters are specified , or if any of the objects in @vals is not a subclass of class "Bio::MAGE::BioAssayData::DesignElementDimension" $array_ref = $bioassaydata->getQuantitationTypeDimension_list() This method handles the list for the "Bio::MAGE::BioAssayData::QuantitationTypeDimension" class. It returns a reference to an array of the class objects that have been associated with the package instance. This is useful when retrieving data from parsed MAGE-ML file. $bioassaydata->addQuantitationTypeDimension(@vals) This method is an interface for adding "Bio::MAGE::BioAssayData::QuantitationTypeDimension" objects to the "quantitationtypedimension_list" list. It is generally used by generic methods such as those in the XMLWriter. Input parameters: the list of values @vals to add to the owner association. NOTE: submitting a single value is permitted. Return value: none Side effects: none Exceptions: will call "croak()" if no input parameters are specified , or if any of the objects in @vals is not a subclass of class "Bio::MAGE::BioAssayData::QuantitationTypeDimension" $array_ref = $bioassaydata->getBioAssayMap_list() This method handles the list for the "Bio::MAGE::BioAssayData::BioAssayMap" class. It returns a reference to an array of the class objects that have been associated with the package instance. This is useful when retrieving data from parsed MAGE-ML file. $bioassaydata->addBioAssayMap(@vals) This method is an interface for adding "Bio::MAGE::BioAssayData::BioAssayMap" objects to the "bioassaymap_list" list. It is generally used by generic methods such as those in the XMLWriter. Input parameters: the list of values @vals to add to the owner association. NOTE: submitting a single value is permitted. Return value: none Side effects: none Exceptions: will call "croak()" if no input parameters are specified , or if any of the objects in @vals is not a subclass of class "Bio::MAGE::BioAssayData::BioAssayMap" $array_ref = $bioassaydata->getQuantitationTypeMap_list() This method handles the list for the "Bio::MAGE::BioAssayData::QuantitationTypeMap" class. It returns a reference to an array of the class objects that have been associated with the package instance. This is useful when retrieving data from parsed MAGE-ML file. $bioassaydata->addQuantitationTypeMap(@vals) This method is an interface for adding "Bio::MAGE::BioAssayData::QuantitationTypeMap" objects to the "quantitationtypemap_list" list. It is generally used by generic methods such as those in the XMLWriter. Input parameters: the list of values @vals to add to the owner association. NOTE: submitting a single value is permitted. Return value: none Side effects: none Exceptions: will call "croak()" if no input parameters are specified , or if any of the objects in @vals is not a subclass of class "Bio::MAGE::BioAssayData::QuantitationTypeMap" $array_ref = $bioassaydata->getBioAssayData_list() This method handles the list for the "Bio::MAGE::BioAssayData::BioAssayData" class. It returns a reference to an array of the class objects that have been associated with the package instance. This is useful when retrieving data from parsed MAGE-ML file. $bioassaydata->addBioAssayData(@vals) This method is an interface for adding "Bio::MAGE::BioAssayData::BioAssayData" objects to the "bioassaydata_list" list. It is generally used by generic methods such as those in the XMLWriter. Input parameters: the list of values @vals to add to the owner association. NOTE: submitting a single value is permitted. Return value: none Side effects: none Exceptions: will call "croak()" if no input parameters are specified , or if any of the objects in @vals is not a subclass of class "Bio::MAGE::BioAssayData::BioAssayData" $bioassaydata->obj2xml($writer) Write out this object, and all sub-objects, as XML using the supplied $writer to actually do the XML formatting. Input parameters: $writer must be an XML writer, e.g. an instance of Bio::MAGE::XML::Writer. It must have methods: write_start_tag(), write_end_tag(), and obj2xml(). Return value: none Side effects: all writing is delegated to the $writer - it's write_start_tag() and write_end_tag() methods are invoked with the appropriate data, and all class sub-objects of the "Bio::MAGE::BioAssayData" instance will have their obj2xml() methods invoked in turn. By allowing the $writer to do the actual formatting of the output XML, it enables the user to precisely control the format. Exceptions: will call "croak()" if no identifier has been set for the "Bio::MAGE::BioAssayData" instance. $bioassaydata->register($obj) Store an object for later writing as XML. Input parameters: object to be added to the list of registered objects. Return value: none Side effects: if $obj needs to be stored by this class, a reference will be stored in the correct XML list for this class. Exceptions: none SLOTS, ATTRIBUTES, AND ASSOCIATIONS In the Perl implementation of MAGE-OM classes, there are three types of class data members: "slots", "attributes", and "associations". SLOTS This API uses the term "slot" to indicate a data member of the class that was not present in the UML model and is used for mainly internal purposes - use only if you understand the inner workings of the API. Most often slots are used by generic methods such as those in the XML writing and reading classes. Slots are implemented using unified getter/setter methods: $var = $obj->slot_name(); Retrieves the current value of the slot. $new_var = $obj->slot_name($new_var); Store $new_var in the slot - the return value is also $new_var. @names = $obj->get_slot_names() Returns the list of all slots in the class. DATA CHECKING: No data type checking is made for these methods. ATTRIBUTES AND ASSOCIATIONS The terms "attribute" and "association" indicate data members of the class that were specified directly from the UML model. In the Perl implementation of MAGE-OM classes, association and attribute accessors are implemented using three separate methods: get* Retrieves the current value. NOTE: For associations, if the association has list cardinality, an array reference is returned. DATA CHECKING: Ensure that no argument is provided. set* Sets the current value, replacing any existing value. NOTE: For associations, if the association has list cardinality, the argument must be an array reference. Because of this, you probably should be using the add* methods. DATA CHECKING: For attributes, ensure that a single value is provided as the argument. For associations, if the association has list cardinality, ensure that the argument is a reference to an array of instances of the correct MAGE-OM class, otherwise ensure that there is a single argument of the correct MAGE-OM class. add* NOTE: Only present in associations with list cardinality. Appends a list of objects to any values that may already be stored in the association. DATA CHECKING: Ensure that all arguments are of the correct MAGE-OM class. GENERIC METHODS The unified base class of all MAGE-OM classes, "Bio::MAGE::Base", provides a set of generic methods that will operate on slots, attributes, and associations: $val = $obj->get_slot($name) @list_ref = $obj->get_slots(@name_list); $val = $obj->set_slot($name,$val) $obj->set_slots(%parameters) $obj->set_slots(@name_list, @value_list) See elsewhere in this page for a detailed description of these methods. BUGS
Please send bug reports to the project mailing list: (mged-mage 'at' lists 'dot' sf 'dot' net) AUTHOR
Jason E. Stewart (jasons 'at' cpan 'dot' org) SEE ALSO
perl(1). perl v5.10.1 2006-08-23 MAGE::BioAssayData(3pm)
All times are GMT -4. The time now is 05:59 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy