Forum: Bioinformatics
10-10-2012, 09:11 AM
|
Replies: 6
Views: 4,654
|
Forum: Bioinformatics
10-09-2012, 03:26 PM
|
Replies: 6
Views: 4,289
|
Forum: Bioinformatics
10-09-2012, 02:20 PM
|
Replies: 9
Views: 6,912
|
Forum: Bioinformatics
10-08-2012, 09:17 AM
|
Replies: 6
Views: 4,289
|
Forum: Bioinformatics
08-16-2012, 02:22 PM
|
Replies: 13
Views: 4,203
|
Forum: RNA Sequencing
02-08-2012, 11:40 AM
|
Replies: 13
Views: 4,815
bummer.
for exon counting i have reverted to...
bummer.
for exon counting i have reverted to using there supplied script within the dexseq package (dexseq_count.py) which depends on htseq.
i assume you already have the package and used one...
|
Forum: Bioinformatics
02-08-2012, 10:45 AM
|
Replies: 4
Views: 1,788
|
Forum: RNA Sequencing
02-08-2012, 10:20 AM
|
Replies: 13
Views: 4,815
|
Forum: Bioinformatics
02-01-2012, 09:45 AM
|
Replies: 4
Views: 4,129
|
Forum: Bioinformatics
01-31-2012, 10:08 AM
|
Replies: 2
Views: 1,784
there may be problems in other areas, but it's...
there may be problems in other areas, but it's difficult to troubleshoot with the given information. things that would help are fragment and read length, whether the reads are actually paired-end or...
|
Forum: Bioinformatics
01-31-2012, 09:44 AM
|
Replies: 3
Views: 2,050
|
Forum: Bioinformatics
01-31-2012, 09:40 AM
|
Replies: 3
Views: 2,050
|
Forum: Bioinformatics
01-30-2012, 03:22 PM
|
Replies: 4
Views: 5,212
|
Forum: RNA Sequencing
01-13-2012, 12:36 PM
|
Replies: 11
Views: 7,297
|
Forum: Bioinformatics
01-02-2012, 10:54 AM
|
Replies: 23
Views: 16,943
|
Forum: Bioinformatics
12-28-2011, 09:52 AM
|
Replies: 32
Views: 35,094
it's definitely not very rigorous. htseq has a...
it's definitely not very rigorous. htseq has a fastq reader in it which could help you subsample randomly.
htseq tour (http://www-huber.embl.de/users/anders/HTSeq/doc/tour.html)
previous discussion...
|
Forum: Bioinformatics
12-27-2011, 08:41 PM
|
Replies: 4
Views: 2,361
rather than that perl, pipe it into this:
awk...
rather than that perl, pipe it into this:
awk 'BEGIN{OFS=FS="\t"}/^@/{print}!/^@/{if(length($10)==30) print}'
it'll print the header and any line where the sequence (column 10) is 30 characters.
|
Forum: Bioinformatics
12-27-2011, 09:50 AM
|
Replies: 21
Views: 40,473
No need to worry about either of these. The...
No need to worry about either of these. The second line concerning the bam would make more sense if you posted the next line of the output which is something like, "Trying SAM", which does work....
|
Forum: RNA Sequencing
12-21-2011, 06:03 PM
|
Replies: 11
Views: 7,297
|
Forum: RNA Sequencing
12-21-2011, 05:20 PM
|
Replies: 11
Views: 7,297
|
Forum: Bioinformatics
12-21-2011, 04:51 PM
|
Replies: 2
Views: 3,132
grab header
samtools view -H .bam > new.sam ...
grab header
samtools view -H .bam > new.sam
stick on the unique reads
samtools view .bam | grep ... >> new.sam
convert to bam
samtools view -Sb -o unique.bam new.sam
also check out samtools...
|
Forum: Bioinformatics
11-11-2011, 09:12 AM
|
Replies: 21
Views: 10,933
|
Forum: Bioinformatics
11-10-2011, 09:04 PM
|
Replies: 2
Views: 2,055
|
Forum: Bioinformatics
11-09-2011, 02:30 PM
|
Replies: 9
Views: 5,674
|
Forum: Bioinformatics
11-09-2011, 02:21 PM
|
Replies: 6
Views: 1,752
to get everything just:
samtools view .bam
...
to get everything just:
samtools view .bam
to get everything and the header:
samtools view -h .bam
for .sam, add the sam option
samtools view -S .sam
however, if you did want to make...
|