Are you saying that I can generate a list/dictionary of TrueGene => Pseudogenes following the code and then filter the list? I am trying to do it in biomaRt (R package), but I don't know which attributes to include. Here is the snippet.
libary(biomaRt)
ensembl = useMart("ensembl",dataset="rnorvegicus_gene_ensembl")
atrs <- c("ensembl_gene_id", "ensembl_transcript_id", "external_gene_name",
"rgd_symbol", "transcript_biotype")
rs <- getBM(attributes = atrs, mart = ensembl)
head(subset(rs, subset = grepl("pseudogene", transcript_biotype)))
nrow(subset(rs, subset = grepl("pseudogene", transcript_biotype)))
rss <- subset(rs, subset = grepl("pseudogene", transcript_biotype))