Hello,
My first post here...!
I'm trying to use cuffcompare to produce a combined GTF file (stdout.combined.gtf) to feed to cuffdiff for further analysis. Cuffcompare should produce such GTF with added attributes tss_id and p_id. However, while my stdout.combined.gtf does have tss_ids it has no p_ids (even if the input file has CDS attributes). How is it?
I guess I can put the p_ids myself, but I'd like to understand what I'm doing wrong.
As a test, I ran cuffcompare using the pig GTF from ensembl against itself (following a trick from Cole Trapnell I found in another post) and indeed I couldn't 'see' any p_id in the output. See script below to reproduce this test.
Why I don't get p_ids?! Am I missing something very obvious?
I'm using version cufflinks-0.8.2.Linux_x86_64
Thanks in advance for any help!
Dario
Here's the little code:
# -----------------[ Cut here ]---------------------
## Download and unzip pig GTF
wget ftp://ftp.ensembl.org/pub/current_gt...ofa9.57.gtf.gz
gunzip Sus_scrofa.Sscrofa9.57.gtf.gz
## Run cuffcompare
/exports/work/vet_roslin_nextgen/dario/cufflink/current/cuffcompare -r Sus_scrofa.Sscrofa9.57.gtf Sus_scrofa.Sscrofa9.57.gtf Sus_scrofa.Sscrofa9.57.gtf
## No p_ids!!
grep p_id stdout.combined.gtf
==> no hits
# ----------------------[ Cut here ]-----------------
My first post here...!
I'm trying to use cuffcompare to produce a combined GTF file (stdout.combined.gtf) to feed to cuffdiff for further analysis. Cuffcompare should produce such GTF with added attributes tss_id and p_id. However, while my stdout.combined.gtf does have tss_ids it has no p_ids (even if the input file has CDS attributes). How is it?
I guess I can put the p_ids myself, but I'd like to understand what I'm doing wrong.
As a test, I ran cuffcompare using the pig GTF from ensembl against itself (following a trick from Cole Trapnell I found in another post) and indeed I couldn't 'see' any p_id in the output. See script below to reproduce this test.
Why I don't get p_ids?! Am I missing something very obvious?
I'm using version cufflinks-0.8.2.Linux_x86_64
Thanks in advance for any help!
Dario
Here's the little code:
# -----------------[ Cut here ]---------------------
## Download and unzip pig GTF
wget ftp://ftp.ensembl.org/pub/current_gt...ofa9.57.gtf.gz
gunzip Sus_scrofa.Sscrofa9.57.gtf.gz
## Run cuffcompare
/exports/work/vet_roslin_nextgen/dario/cufflink/current/cuffcompare -r Sus_scrofa.Sscrofa9.57.gtf Sus_scrofa.Sscrofa9.57.gtf Sus_scrofa.Sscrofa9.57.gtf
## No p_ids!!
grep p_id stdout.combined.gtf
==> no hits
# ----------------------[ Cut here ]-----------------
Comment