Thanks a lot Richard! I really appreciate that!
Best,
Thanos
Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
awk -v n=1 -v p=0 '/^\/\//{p++;if(((p%1000)==0)&&(p!=0)){close("out"n);n++;next}} {print > "out"n}' yourfilename.gbk
splits at 1000 records.
Leave a comment:
-
Hi Peter and thank you for your immediate reply.
I currently use Perl (not very experienced though). I guess I can try to alter Richard's awk command and implement it in a Perl script for renaming etc.
Thank you once again.
Leave a comment:
-
Thanos - which scripting languages do you know? GenBank records end with a // line (which is what Richard's awk command exploits) so it is very simple to split up a file into sub-files named however you like using Perl, Python or Ruby.
Leave a comment:
-
Hi all,
I have the same problem but I want to split the file every 1000 entries. My file has 500,000 records and I want 500 files of 1000 records each. Any suggestions?
Thanks in advance.
Thanos
Leave a comment:
-
split genbank files using awk
awk -v n=1 '/^\/\//{close("out"n);n++;next} {print > "out"n}' yourfilename.gbk
Split yourfilename.gbk into multiple files by splitting at "//" (end of record) line.Last edited by Richard Finney; 03-20-2012, 09:51 AM.
Leave a comment:
-
If you want one file per record, try EMBOSS seqret and the -ossingle_outseq option.
EDIT: That probably does the same as EMBOSS seqretsplit suggested by Nick while I was writing this.
Do you just want to break it up into batches, say 10 records in each file? Or, do you have a particular order in mind (which could involve either sorting or random access).
Leave a comment:
-
I haven't tried it out but 'seqretsplit' from the EMBOSS package might do what you want. Otherwise it's a quick script in Bioperl or Biopython, e.g. in BioPython (untested)
Run like python splitgbk.py < input.gbk
Will create a file for each entry in the current directory.
-- splitgbk.py
Code:from Bio import SeqIO import sys for rec in SeqIO.parse(sys.stdin, "genbank"): SeqIO.write([rec], open(rec.id + ".gbk", "w"), "genbank")
Leave a comment:
-
splitting big genbank file
I have a big gbk file containing multiple gbks, is there any simple way to split this big gbk into small gbks Thanks.Tags: None
Latest Articles
Collapse
-
by seqadmin
Innovations in next-generation sequencing technologies and techniques are driving more precise and comprehensive exploration of complex biological systems. Current advancements include improved accessibility for long-read sequencing and significant progress in single-cell and 3D genomics. This article explores some of the most impactful developments in the field over the past year.
Long-Read Sequencing
Long-read sequencing has...-
Channel: Articles
Yesterday, 01:49 PM -
-
by seqadmin
The field of immunogenetics explores how genetic variations influence immune responses and susceptibility to disease. In a recent SEQanswers webinar, Oscar Rodriguez, Ph.D., Postdoctoral Researcher at the University of Louisville, and Ruben MartÃnez Barricarte, Ph.D., Assistant Professor of Medicine at Vanderbilt University, shared recent advancements in immunogenetics. This article discusses their research on genetic variation in antibody loci, antibody production processes,...-
Channel: Articles
11-06-2024, 07:24 PM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, Yesterday, 09:29 AM
|
0 responses
82 views
0 likes
|
Last Post
by seqadmin
Yesterday, 09:29 AM
|
||
Started by seqadmin, Yesterday, 09:06 AM
|
0 responses
40 views
0 likes
|
Last Post
by seqadmin
Yesterday, 09:06 AM
|
||
Started by seqadmin, Yesterday, 08:03 AM
|
0 responses
30 views
0 likes
|
Last Post
by seqadmin
Yesterday, 08:03 AM
|
||
Started by seqadmin, 11-22-2024, 07:36 AM
|
0 responses
65 views
0 likes
|
Last Post
by seqadmin
11-22-2024, 07:36 AM
|
Leave a comment: