Seqanswers Leaderboard Ad
Collapse
X
-
I noticed that the referenced Galaxy code does not check for the '>' and '<' characters. Can anybody please provide some help how to process those? I.e., I don't really understand what "reference skip" means and would think that such a symbol means that the read does not cover the the respective position. Any help would be appreciated, thanks!
-
-
Originally posted by nekrut View Post
Best wishes,
Graham
Leave a comment:
-
-
-
Originally posted by Pepe View PostYou cannot open a file in Pileup format with Bio:B::sam
You should convert your SAM file to BAM format (samtools view) and sort it (samtools sort), maybe index it too? I'm not sure (samtools index).
Then follow the instructions in the CPAN website, which are very, veryhelpful. Basically:
use Bio:B::Sam;
my $sam = Bio:B::Sam->new(-bam => "my_sorted_bam_file.bam",
-fasta => "my_ref.fasta");
my @targets = $sam->seq_ids;
foreach my $chr (@targets){
$sam->pileup($chr,$my_subroutine);
}
where $my_subroutine is a subroutine that you'll need to get to do what you want: snp calling, coverage calculation...
Thanks for your answer. I'd realised that Bio:B:Sam couldn't parse the pileup, so this is why I am asking if anyone has, or knows about, anything that could parse it, before I spent time writing a Samtools parser myself.
I have a 'Parser.pm' module that parses various pileup formats (maq, bowtie, novoalign, etc), but I haven't added one for Samtools format yet.
Cheers,
Graham
Leave a comment:
-
-
You cannot open a file in Pileup format with Bio:B::sam
You should convert your SAM file to BAM format (samtools view) and sort it (samtools sort), maybe index it too? I'm not sure (samtools index).
Then follow the instructions in the CPAN website, which are very, veryhelpful. Basically:
use Bio:B::Sam;
my $sam = Bio:B::Sam->new(-bam => "my_sorted_bam_file.bam",
-fasta => "my_ref.fasta");
my @targets = $sam->seq_ids;
foreach my $chr (@targets){
$sam->pileup($chr,$my_subroutine);
}
where $my_subroutine is a subroutine that you'll need to get to do what you want: snp calling, coverage calculation...
Leave a comment:
-
-
Samtools Pileup Parser
Hi,
I'm trying to parse the Samtools Pileup format in Perl.
I've created a paired-end assembly using BWA (aln, sampe) and then used Samtools to create a pileup (using import - sort - index - pileup).
What I want to do is to open up the pileup (which is obviously in the Samtools Pileup format) and iterate over each position of the pileup, examining differences in base-calls.
Does anyone know of anything available, or have and sample code they could post?
Many thanks.
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, 03-20-2025, 05:03 AM
|
0 responses
20 views
0 reactions
|
Last Post
by seqadmin
03-20-2025, 05:03 AM
|
||
Started by seqadmin, 03-19-2025, 07:27 AM
|
0 responses
26 views
0 reactions
|
Last Post
by seqadmin
03-19-2025, 07:27 AM
|
||
Started by seqadmin, 03-18-2025, 12:50 PM
|
0 responses
19 views
0 reactions
|
Last Post
by seqadmin
03-18-2025, 12:50 PM
|
||
Started by seqadmin, 03-03-2025, 01:15 PM
|
0 responses
187 views
0 reactions
|
Last Post
by seqadmin
03-03-2025, 01:15 PM
|
Leave a comment: