Hello, Beate.

I just double-checked using our Table Browser to ensure that the transcripts
you listed would provide valid results when linked with kgXref, which they
do.  You are correct that kgXref does not have a chromosome entry.  It is
merely a table to cross-reference UCSC Gene IDs with other information such
as gene symbols, RefSeq IDs, etc.  Not every entry in kgXref will have a
value in every field, but the entry for uc010aga.1 certainly does.

The first thing to do would be to make sure that both of your tables have
proper entries for uc010aga.1.  The entry from kgXref should contain the
following:

kgID: uc010aga.1
mRNA: NM_001127692
spID: Q8WXQ7
spDisplayID: Q8WXQ7_HUMAN
geneSymbol: PCCA
refseq: NM_001127692
protAcc: NP_001121164
description: propionyl-Coenzyme A carboxylase, alpha

If kgXref does not have this entry for uc010aga.1, you need to re-download
your copy of kgXref and try again.  If there is a valid entry for uc010aga.1
in knownGene and hgXref does contain this entry, there is likely some kind
of problem with your R script.  If that is the case, we unfortunately cannot
provide assistance.  I would recommend finding an online forum specifically
for R support.

Please contact us again at [email protected] if you have any further
questions.

---
Steve Heitner
UCSC Genome Bioinformatics Group

-----Original Message-----
From: [email protected] [mailto:[email protected]] On
Behalf Of Beate St. Pourcain
Sent: Tuesday, June 19, 2012 2:08 PM
To: [email protected]
Subject: [Genome] Missing chr13 entries on table: kgXref, track: UCSC Genes,
group: Genes and Gene Prediction Tracks, assembly: Mar.2006

Hi,
I have been checking some gene predictions and for this reason I aligned the
tables "knownGene" WITH "kgXref" from  track: UCSC Genes,  group: Genes and
Gene Prediction Tracks, assembly: Mar.2006

This alignment deleted (excluded) all chrom13 entries from "knownGene". 
"kgXref" has not got a chromosome entry, but it looks as if the file has all
entries referring to chr13 missing. See R snippet:

knowngenes<-read.table(paste(d.dir,"knownGene_hg18_full.tabular",sep=""),sep
="\t",header=F)
     names(knowngenes)<-c("name", "chrom","strand","txStart","txEnd",
"cdsStart", "cdsEnd", "exonCount", "exonStarts", "exonEnds", "proteinID",
"alignID")

kgXref<-read.table(paste(d.dir,"kgXref.tabular",sep=""),sep="\t",header=F)
     names(kgXref)<-c("name","mRNA","spID","spDisplayID", "geneSymbol",
"refseq", "protAcc", "description")

     knowngenes_ref<-merge(knowngenes,kgXref,by="name", all.x=T)
     knowngenes_ref[knowngenes_ref$chrom=="chr13",]

See below. Could you help with that?
Many thanks,
Beate


57554 NP_001121164 uc010aga.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57555       O95965 uc010agb.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57556     Q86UB2-2 uc010agc.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57557              uc010agd.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57558              uc010age.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57559       P49917 uc010agf.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57560       A8K8Q4 uc010agg.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57561       P49917 uc010agh.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57562       Q7L211 uc010agi.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57563       Q7Z5J2 uc010agj.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57564       A6H8Y0 uc010agk.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57565              uc010agl.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57566     Q9UK53-3 uc010agm.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57567    NP_003890 uc010agn.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>
57568              uc010ago.1 <NA> <NA> <NA>       <NA>   <NA>    <NA> <NA>


_______________________________________________
Genome maillist  -  [email protected]
https://lists.soe.ucsc.edu/mailman/listinfo/genome

_______________________________________________
Genome maillist  -  [email protected]
https://lists.soe.ucsc.edu/mailman/listinfo/genome

Reply via email to