Seqanswers Leaderboard Ad
Collapse
Announcement
Collapse
No announcement yet.
X
-
Just for you :-)
Code:#!/usr/bin/perl $seq = ""; while(<>){ chomp; if(/^>/){ if($seq ne ""){ if($seq =~ /([^N]+)N+([^N]+)/){ print "$id.1\n$1\n"; print STDERR "$id.2\n$2\n"; } } $seq = ""; $id = $_; } else{ $seq .= $_; } } if($seq =~ /([^N]+)N+([^N]+)/){ print "$id.1\n$1\n"; print STDERR "$id.2\n$2\n"; }
Leave a comment:
-
Excellent!
Whilst this does help with some genomes that I am assembling right now, we have some older genomes that were sequenced by BGI and these contain N's that we still need to have removed...
Leave a comment:
-
If you are doing your assemblies with velvet, setting '-scaffolding no' will stop velvet from joining contigs together with stretches of Ns.
Leave a comment:
-
TiborNagy: Sorry, the file will be in fasta format post de novo assembly.
would you be able to alter the script to handle contig names please?
Thanks!
Leave a comment:
-
Thanks for that!!
Will this rename the contigs?
Will the contig that is split be called the same thing in contig1.txt and contig2.txt.
Is it possible to rename the contigs when they are split. For example, if contig 84 is split into two contigs can they be renamed contig 84.1 and contig 84.2 for each half, respectively?
Leave a comment:
-
perl -ne 'if($_ =~ /([^N]+)N+([^N]+)/){print $1;print stderr $1}' input.seq >contig1.txt 2>contig2.txt
It will split the input file (input.seq) into contig1.txt and contig2.txt
Leave a comment:
-
Remove N's and split contigs
Hi,
I have some genomes that I will be uploading to NCBI soon. I have been told that all N's need to be removed and the contigs split at this position.
I am new to command line interface so I was hoping someone could recommend a program and simple script that could do this for me. I would like to remove all N's and then split the contig at the location of the N's results in two new contigs. For example
Contig 1: ATCGGATAANNNNNNNNNATCGCCGAT
Contig 1.1: ATCGGATAA
Contig 1.2 ATCGCCGAT
Thanks!Tags: None
Latest Articles
Collapse
-
by seqadmin
This year’s Advances in Genome Biology and Technology (AGBT) General Meeting commemorated the 25th anniversary of the event at its original venue on Marco Island, Florida. While this year’s event didn’t include high-profile musical performances, the industry announcements and cutting-edge research still drew the attention of leading scientists.
The Headliner
The biggest announcement was Roche stepping back into the sequencing platform market. In the years since...-
Channel: Articles
03-03-2025, 01:39 PM -
-
by seqadmin
The human gut contains trillions of microorganisms that impact digestion, immune functions, and overall health1. Despite major breakthroughs, we’re only beginning to understand the full extent of the microbiome’s influence on health and disease. Advances in next-generation sequencing and spatial biology have opened new windows into this complex environment, yet many questions remain. This article highlights two recent studies exploring how diet influences microbial...-
Channel: Articles
02-24-2025, 06:31 AM -
ad_right_rmr
Collapse
News
Collapse
Topics | Statistics | Last Post | ||
---|---|---|---|---|
Started by seqadmin, Yesterday, 12:50 PM
|
0 responses
10 views
0 likes
|
Last Post
by seqadmin
Yesterday, 12:50 PM
|
||
Started by seqadmin, 03-03-2025, 01:15 PM
|
0 responses
181 views
0 likes
|
Last Post
by seqadmin
03-03-2025, 01:15 PM
|
||
Started by seqadmin, 02-28-2025, 12:58 PM
|
0 responses
277 views
0 likes
|
Last Post
by seqadmin
02-28-2025, 12:58 PM
|
||
Started by seqadmin, 02-24-2025, 02:48 PM
|
0 responses
663 views
0 likes
|
Last Post
by seqadmin
02-24-2025, 02:48 PM
|
Leave a comment: