Sponsored Content
Top Forums Shell Programming and Scripting Perl, open multiple files with wildcards Post 302429041 by drewk on Friday 11th of June 2010 07:45:12 PM
Old 06-11-2010
Quote:
Originally Posted by japaneseguitars
i have a file that contains information about genes and I need to obtain the sequences upstream and downstream these genes and do analysis on that. These 19 files are the chromosome sequences. I have sorted the gene file based on chromosome location so I can essentially use 1 chromosome file at a time since I just tried to open all of them and perl ran out of memory =/
So why do all 19 files need to be open if you are processing 1 file at a time?

Do you have simple logic and maybe the Perl experts here can help? ie, present pseudo code of what you want to do, size of files, output desired, intermediate processing needed, platform.
 

10 More Discussions You Might Find Interesting

1. Shell Programming and Scripting

using wildcards in this perl command

Hi there, is it possible to use wild cards in this statement ssh $remote_server 'perl -pi -e "s,EXP_SERIAL_19b8be67=\"\",EXP_SERIAL_`hostid`=\"UNKNOWN\"," /var/myfile' This command works fine but the bit in bold (the 8 character hostid) will not always be 19b8be67 so I was hoping I could... (2 Replies)
Discussion started by: hcclnoodles
2 Replies

2. Shell Programming and Scripting

Grepping using multiple wildcards

Is there anyway you can grep using multiple wildcards? When I run the below line the results return fine; grep 12345 /usr/local/production/soccermatchplus/distributor/clients/*/out/fixtures.xml | awk -F/ '{print $8}' However ideally, I need it to grep for; grep 12345... (3 Replies)
Discussion started by: JayC89
3 Replies

3. Shell Programming and Scripting

Perl script to search and extract using wildcards.

Good evening All, I have a perl script to pull out all occurrences of a files beginning with xx and ending in .p. I will then loop through all 1K files in a directory. I can grep for xx*.p files but it gives me the entire line. I wish to output to a single colum with only the hits found. ... (3 Replies)
Discussion started by: CammyD
3 Replies

4. Shell Programming and Scripting

perl script on multiple files

I have a script that runs on one file (at a time). like this: $> perl myscript.pl filename > output How can I run it on >6000 files and have the output sent out into slightly modified file name $> perl myscript 6000files> output6000files.new extension Thanks in anticipation (4 Replies)
Discussion started by: aritakum
4 Replies

5. Shell Programming and Scripting

rename multiple files with wildcards

Hi All I am having hundred over file in the below pattern. AA050101.INI BB090101.INI . . ZX980101.INI Need to rename these files with an extension .bak AA050101.INI.bak BB090101.INI.bak . . ZX980101.INI.bak (5 Replies)
Discussion started by: karthikn7974
5 Replies

6. Programming

Control multiple program instances - open multiple files problem

Hello. This shouldn't be an unusual problem, but I cannot find anything about it at google or at other search machine. So, I've made an application using C++ and QtCreator. I 've made a new mime type for application's project files. My system (ubuntu 10.10), when I right click a file and I... (3 Replies)
Discussion started by: hakermania
3 Replies

7. Shell Programming and Scripting

Perl - grep issue in filenames with wildcards

Hi I have 2 directories t1 and t2 with some files in it. I have to see whether the files present in t1 is also there in t2 or not. Currently, both the directories contain the same files as shown below: $ABC.TXT def.txt Now, when I run the below script, it tells def.txt is found,... (5 Replies)
Discussion started by: guruprasadpr
5 Replies

8. Shell Programming and Scripting

Perl - work with open files or write to @lists first?

I am dealing will many thousand fairy small files. I need to search them for various matches and depending on what I find, may need to search some files again for additional matches. Generally speaking, is it better to write a txt file to an @array/@list and then work with it (multiple... (1 Reply)
Discussion started by: OldGaf
1 Replies

9. Shell Programming and Scripting

open files with multiple indexes

Hi, I want to work with multiple files which all contain 2 numbers. I tried to make a nested for loop but for some reason it doesn't recognize the $j as a number. The output is cannot open file `175-T-pvalue.xls'. How do I make sure that it takes the numbers from the inner loop as $j? ... (4 Replies)
Discussion started by: linseyr
4 Replies

10. Shell Programming and Scripting

Grep multiple patterns that contain wildcards

job_count=`grep -e "The job called .* has finished | The job called .* is running" logfile.txt | wc -l` Any idea how to count those 2 patterns so i have a total count of the finished and running jobs from the log file? If i do either of the patterns its works okay but adding them together... (8 Replies)
Discussion started by: finn
8 Replies
Bio::Tools::Run::Ensembl(3pm)				User Contributed Perl Documentation			     Bio::Tools::Run::Ensembl(3pm)

NAME
Bio::Tools::Run::Ensembl - A simplified front-end for setting up the registry for, and then using an Ensembl database with the Ensembl Perl API. SYNOPSIS
use Bio::Tools::Run::Ensembl; # get a Bio::EnsEMBL::Gene for agene of interest my $gene = Bio::Tools::Run::Ensembl->get_gene_by_name(-species => 'human', -name => 'BRCA2'); DESCRIPTION
This is a simple way of accessing the Ensembl database to retrieve gene information. Rather than learn the whole Ensembl Perl API, you only need to install it (that is, check it out from CVS: http://www.ensembl.org/info/docs/api/api_installation.html - ignore the information about BioPerl version) and then you can get information about a gene using get_gene_by_name(). For gene retrieval it is especially useful compared to direct Ensembl Perl API usage since it can use information from alternate data sources (orthologues, Swissprot, Entrez) to get your gene. 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: http://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 _ registry_setup Title : registry_setup Usage : Bio::Tools::Run::Ensembl->registry_setup(-host => $host, -user => $user); if (Bio::Tools::Run::Ensembl->registry_setup) {...} Function: Configure the ensembl registy to use a certain database. The database must be an Ensembl database compatible with the Ensembl Perl API, and you must have that API installed for this method to return true. Defaults to anonymous access to ensembldb.ensembl.org Or just ask if the registry is setup and the database ready to use. Returns : boolean (true if Registry loaded and ready to use) Args : -host => host name (defaults to 'ensembldb.ensembl.org') -user => username (defaults to 'anonymous') -pass => password (no default) -port => port (defaults to 3306) -db_version => version of ensembl database to use, if different from your installed Ensembl modules -verbose => boolean (1 to print messages during database connection) -no_database => boolean (1 to disable database access, causing this method to always return false) get_adaptor Title : get_adaptor Usage : my $adaptor = Bio::Tools::Run::Ensembl->get_adaptor($species, $type); Function: Get a species-specific 'core' database adaptor, optionally of a certain type. Returns : Bio::EnsEMBL::DBSQL::DBAdaptor, OR if a certain type requested, a Bio::EnsEMBL::DBSQL::${type}Adaptor Args : Bio::Species or string (species name) (REQUIRED), AND optionally string (the type of adaptor, eg. 'Gene' or 'Slice'). get_gene_by_name Title : get_gene_by_name Usage : my $gene = Bio::Tools::Run::Ensembl->get_gene_by_name(); Function: Get a gene given species and a gene name. If multiple genes match this combination, tries to pick the 'best' match. Returns : Bio::EnsEMBL::Gene Args : -species => Bio::Species or string (species name), REQUIRED -name => string: gene name, REQUIRED If searching for the supplied gene name in the supplied species results in no genes, or more than one, you can choose what else is attempted in order to find just one gene: -use_orthologues => Bio::Species or string (species name), or array ref of such things: see if any of these supplied species have (unambiguously) a gene with the supplied gene name and if a (one-to-one) orthologue of that gene in that species is present in the main desired species supplied to -species, returns that orthologous gene. (default: none, do not use orthologues) -use_swiss_lookup => boolean: queries swissprot at expasy and if a suitable match is found, queries ensembl with the swissprot id. (default: 0, do not use swiss) -use_entrez_lookup => boolean: queries entrez at the NCBI server if (only) a single gene could not be found by any other method, then query ensembl with the entrez gene id. (default: 0, do not use NCBI) (Attempts proceed in this order and return as soon as one method is successful.) -strict => boolean: return undef with no warnings if more than one, or zero genes were found. (default: 0, warnings are issued and if many genes were found, one of them is returned) perl v5.12.3 2011-06-18 Bio::Tools::Run::Ensembl(3pm)
All times are GMT -4. The time now is 08:24 PM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy