I am trying to use RNA-SeQC for a mouse rnaseq dataset. the program requires mouse gc content file. Where can i download it or how can i generate it by myself? Thanks a lot.
Unconfigured Ad
Collapse
X
-
Tags: None
-
Technically, it's not required, but if you want to use it, you convert your GTF/GFF file to BED format by cutting the proper columns. Then use "bedtools nuc" to get GC content for each region.Code:-gc <arg> File of transcript id <tab> gc content. Used for stratification
-
So i ran this an I got the wrong countsOriginally posted by ECO View PostAnother vote for bedtools nuc.
The numbers are just off... the start and stop bases match everything looks good but the % is off...
A + G + T + C = correct lengths per gene but the #A + #G + #T + #C are different from what it should be..
What's up with that?
129-79-59-15:bin User$ ./bedtools nuc -fi genome.fasta -bed chromosome.gff > gcconent
Comment
-
solved!!
needed to make the fasta file into a single line
perlscrip called singleline.pl
perl singleline.pl input.fasta > output.fastaCode:#!/usr/bin/perl -w #perl fa2oneline.pl sample.fa > out.fa # downloaded from http://www.bioinformatics-made-simple.com # change multiline fasta to single line fasta use strict; my $input_fasta=$ARGV[0]; open(IN,"<$input_fasta") || die ("Error opening $input_fasta $!"); my $line = <IN>; print $line; while ($line = <IN>) { chomp $line; if ($line=~m/^>/) { print "\n",$line,"\n"; } else { print $line; } } print "\n";
Comment
-
Latest Articles
Collapse
-
by SEQadmin2
The immune system’s power comes from its genetic diversity, allowing myriad threats to be neutralized through first recognizing foreign antigens. That diversity is also what makes the immune system so difficult to study. Recent advances in sequencing technology and computational biology, however, are giving researchers new tools to understand immune responses and immune-related diseases in greater detail.
This convergence of genetics, immunology, and computation...-
Channel: Articles
09-01-2026, 05:41 AM -
ad_right_rmr
Collapse
News
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by SEQadmin2, 09-03-2026, 10:22 AM
|
0 responses
22 views
0 reactions
|
Last Post
by SEQadmin2
09-03-2026, 10:22 AM
|
||
|
Started by SEQadmin2, 09-02-2026, 12:32 PM
|
0 responses
23 views
0 reactions
|
Last Post
by SEQadmin2
09-02-2026, 12:32 PM
|
||
|
Started by SEQadmin2, 08-24-2026, 10:32 AM
|
0 responses
53 views
0 reactions
|
Last Post
by SEQadmin2
08-24-2026, 10:32 AM
|
||
|
Started by SEQadmin2, 08-20-2026, 11:17 AM
|
0 responses
51 views
0 reactions
|
Last Post
by SEQadmin2
08-20-2026, 11:17 AM
|
Comment