This is Part 5 to the gene study analysis and machine learning on a data of elderly 50-94 year old patients, 47 of them with EBV and CHL, EBV and pDLBCL, and EBV and mDLBCL. Read below if you are picking up here to get the information in Part 4, and you will have to go to Part 3 to get Part 2 and Part 1 at the start of the project. We were able to see that using a random forest model with standard or basic settings for classification of the 3 known large B-cell lymphomas of CHL, pDLBCL, and mDLBCL, that the model scored … and a little bit worse with the 4 proposed groups as the CHL and pDLBCL were mostly predicted to be that 4th group in the study (links below). That was using the study genes only that were in the research article. But now we are going to use the genes of top gene differences between average and the median of the group samples in 15 groups, the first 3 known groups by diagnosis, then by gender of 2 genders within each diagnosis, and then by 2 age groups within those 3 diagnosis. To compare the outcomes in accuracy in prediction and also see if some genes we found were more prevalent in the male or younger subgroups of certain diagnosed pathologies are good at predicting gender in a 2 class model or age in a 2 class model.
Part 5 is attached to the end of Part 4 on this document by scrolling down to the ***** Part 5 section after a bunch of equal signs.
==================================================================
This is Part 4 to analyzing gene expression data from GSE305165. There is a published article that I took the following information from after reading it once and highlighting the important aspects of the study.
This research used Diffuse Large B-Cell Lymphoma or DLBCL to compare it to Classical Hodgkin’s Lymphoma or CHL in Epstein-Barr Virus (EBV) infected patients. The two types of lymphoma affect the elderly populations and have overlap between biomarkers such as IDO1, EBV latent type 2 is specific to CHL, but can be seen in a polymorphic type DLBCL called pDLBCL, and EBV latent type 3 seen mostly in monomorphic DLBCL labeled mDLBCL, but also in pDLBCL. The study saw that the typical region of chromosome 9 specific to high variations of genes in this loci of 9.24 in CHL, had some variations noticed within pDLBCL and mDLBCL. Overall, this study used populations 50 years old or older with no autoimmune or immunodeficient pathologies. However, in the elderly populations there is a natural decline of immune response to pathogens and antigens called immune senescence or IS, and in seriously impacted disease state of the DLBCL there can be a more fatal condition of immune escape, an actual term for both that means pathogens and antigens escape detection by the host immune system and have the ability to make changes that can lead to the host’s death.
This is a very interesting study, not too difficult to read, but overall, these researchers have decides that their clustering of heirarchical did a great job at separating the differences between the classes of large B-cell Lymphomas. They decided that CHL and DLBCLs of pDLBCL and mDLBCL are not separate diseases but the same type of disease where there is a 4th transitional state of disease that overlaps with pDLBCL and CHL that has low interferon gamma.
The four states are the 1st group which IS group which is the mDLBCL that is EBNA2 positive and EBV latent type 3, the 2nd group which is the CHL group that is high in variations at loci of chromosome 9 at 9p24.1 and high in PDL1 gene expression also only EBV latent type 2 gene expression and EBNA2 negative, the 3rd group which is the pDLBCL that is high in interferon gamma or IFN-g and low in variations of 9p24.1 with high gene expression of IDO1 that lead to immune escape and high chance of getting poor prognosis of hemocytic lymphocytosis called HLH that can lead to demise, and the 4th group that is the transition between CHL and pDLBCL where the IFN-g is low and characteristics unlike the other 3 groups as not otherwise specified or NOS.
The study uses 57 samples where 35 are DLBCL with 12 being pDLBCL and 23 being mDLBCL, and the other 22 samples are CHL. All samples have confirmed EBV and no immune deficiency or pathology other than Lymphoma and normal affects of aging in IS.
However, there are only 47 samples in the GSE305605 gene expression omnibus or GEO link above. We will be working with 47 samples.
Please see Part 1, Part 2, and Part 3 for how I got to the following data tables from extracting and reading in CEL files of Affymetrix data, and isolating the top genes without a baseline or control as all samples were EBV infected but with 1 of 3 large B-cell lymphomas, which was take each group and subgroup of the samples avg/median for that group and subgroup. There were the 3 larger groups of each lymphoma, then the subgroups of gender within each group, and age within each group of those less than or equal to 72 years of age and those older than 72 years of age. The groups I am talking about are not the groups the study found of the 4 groups. We will be using our machine learning in this Part 4 to see how well the study genes reflect the study outcomes when the model is using the study genes only to predict 1 of 3 classes of lymphoma with EBV or 1 of the new 4 groups the study found for 4 separate transitional types of lymphomas of type large B-cell by immune condition. We will also see if there is in each of the group and subgroups we made by demographics within the lymphoma known types if they can predict the age or the gender based on those genes. We didn’t have a total set of 15X20 genes of top genes over expressed when avg/median is greater than 1 or under expressed when avg/median is less than 1, due to the top 20 being 10 of each but of probe IDs that only 21k had a gene for out of a list of 27k. Many genes were duplicated in other sets as well as many as 5 groups. We also didn’t find a gene for each of the ones the study identified like EBNA2, EBER, and many CD clotting factors among others.
library(rmarkdown)
## Warning: package 'rmarkdown' was built under R version 4.5.3
library(randomForest)
## randomForest 4.7-1.2
## Type rfNews() to see new features/changes/bug fixes.
Lets bring in the table on the header demographic information for each group. We changed the new data and topStudied_3Ls tables to have the ID field as first column but the table of demographic information will need to have the information presented differently when we combine this with the other group top genes.
You can get the labels file after edits made here.
labels <- read.csv("compare_df_6labels_47samples.csv", header=T, row.names=1)
paged_table(labels)
There was another file we need to upload on the feature gene names for each ID that is an Affymetrix ID. The features table has the gene names but enclosed in parenthesis, there may be 20 genes per group of top genes but when combining these Affy IDs with their gene names, the Affy ID might not be matched and dropped leaving maybe only 1-2 genes or more or less. The features data is 5,670 genes less than our data of genes. So some may be excluded for that reason. This file is extremely large for what it is because of the listed groups in each gene of 21k+ genes. This was in the CEL file that was made using bioconductor in part 1 extracting feature information.
This is 116 MB due to that last column. Too big for google sheets but kaggle allows it. Get the features data here.
features <- read.csv("feature.data.csv", header=T, row.names=1)
colnames(features)
## [1] "ID" "probeset_id" "seqname" "strand" "start"
## [6] "stop" "total_probes" "category" "SPOT_ID" "SPOT_ID.1"
Now lets open our data from the end of Part 3 on top genes, where there were 84 genes that were top genes of variation or skew in you can get it here.
topGenes <- read.csv("topGenes_probeMathed2Gene_84genes_54unique_31duplicated.csv", header=T)
paged_table(topGenes)
Lets get the ‘Research Article’ genes by grepping this from the importance feature of topGenes.
researchGenes <- topGenes[grep('Research Article',topGenes$importance),]
paged_table(researchGenes)
We can see by looking at the last few columns which groups that are marked with ‘change’ are over or under estimated values when mean is larger or less than median respectively. Because the median if even set is still averaged and will be 1 if exact.
colnames(researchGenes)
## [1] "ID" "pDLBCL" "CHL"
## [4] "pDLBCL.1" "mDLBCL" "CHL.1"
## [7] "mDLBCL.1" "pDLBCL.2" "CHL.2"
## [10] "CHL.3" "CHL.4" "CHL.5"
## [13] "mDLBCL.2" "mDLBCL.3" "CHL.6"
## [16] "CHL.7" "pDLBCL.3" "CHL.8"
## [19] "mDLBCL.4" "mDLBCL.5" "mDLBCL.6"
## [22] "mDLBCL.7" "CHL.9" "mDLBCL.8"
## [25] "CHL.10" "CHL.11" "CHL.12"
## [28] "CHL.13" "mDLBCL.9" "mDLBCL.10"
## [31] "mDLBCL.11" "mDLBCL.12" "mDLBCL.13"
## [34] "mDLBCL.14" "pDLBCL.4" "pDLBCL.5"
## [37] "mDLBCL.15" "mDLBCL.16" "CHL.14"
## [40] "pDLBCL.6" "pDLBCL.7" "CHL.15"
## [43] "CHL.16" "CHL.17" "mDLBCL.17"
## [46] "mDLBCL.18" "mDLBCL.19" "CHL.18"
## [49] "CHL_mean" "pDLBCL_mean" "mDLBCL_mean"
## [52] "CHL_x_mean" "mDLBCL_x_mean" "pDLBCL_x_mean"
## [55] "CHL_y_mean" "mDLBCL_y_mean" "pDLBCL_y_mean"
## [58] "CHL_young72_mean" "mDLBCL_young72_mean" "pDLBCL_young72_mean"
## [61] "CHL_old" "mDLBCL_old" "pDLBCL_old"
## [64] "CHL_median" "mDLBCL_median" "pDLBCL_median"
## [67] "CHL_x_median" "mDLBCL_x_median" "pDLBCL_x_median"
## [70] "CHL_y_median" "mDLBCL_y_median" "pDLBCL_y_median"
## [73] "CHL_young72_median" "mDLBCL_young72_median" "pDLBCL_young72_median"
## [76] "CHL_old72_median" "mDLBCL_old72_median" "pDLBCL_old72_median"
## [79] "CHL_change" "pDLBCL_change" "mDLBCL_change"
## [82] "CHL_x_change" "CHL_y_change" "pDLBCL_x_change"
## [85] "pDLBCL_y_change" "mDLBCL_x_change" "mDLBCL_y_change"
## [88] "CHL_old72_change" "CHL_young72_change" "pDLBCL_old_change"
## [91] "pDLBCL_young72_change" "mDLBCL_young72_change" "mDLBCL_old72_change"
## [94] "SPOT_ID.1" "Gene_ID" "importance"
Lets look at only the change per gene in the 3 lymphomas.
rs3 <- researchGenes[,c(79:81,95)]
paged_table(rs3)
In the study, interferon gamma or IFNG was high and IDO1 was also high in the pDLBCL group but low IFNG in the mDLBCL group. IDO1 was close to the same over estimation in all 3 lymphomas.
Also, CD274 is what was being used to mark PDL1 which is an indicator for chromosome 9p24.1 copy variants for ‘high variation’ at chromosome 9 that is a biomarker indication of CHL. And PDL2 was found using PDCD1LG2 along chromosome 9 that was also high in CHL as well as pDLBCL.
The CD5, MUM1, BCL6, BCL2, and PAX5 as well as others that didn’t have a gene probe representation in this sample like LMP1, EBER, CD3, CD10, CD15, CD20, CD30, and CD79a all used in gene study variation analysis for inflammatory processes with macrophages in body. These are also elevated and over estimated in the pDLBCL group, except for BCL6 which is the only gene under estimated in the pDLBCL group and it is under estimated in the CHL group as well while being slightly normal or close to 1 in the mDLBCL group of 1.0001 indicating avg/median was very close to the same.
MUM1 is elevated only in DLBCL but not CHL.
Looking at copy number variations at 9p24.1 loci for PDL1 represented by CD274 and PDL2 represented by PDCD1LG2, we can see under estimation of PDL2 in mDLBCL change, and underestimation of PDL1 in CHL change, but otherwise there is over estimation of PDL2 in CHL and pDLBCL and over estimation of PDL1 in pDLBCL and mDLBCL.
BCL2, PAX5, and IDO1 are the only genes over estimated in all 3 lymphomas. No gene is consistently underestimated in all lymphomas.
Now lets look at the genders within each lymphoma.
r3_gender <- researchGenes[,c(82:87,95)]
paged_table(r3_gender)
Looks like IFNG is over estimated only in the males with CHL and the females with pDLBCL, and otherwise under estimated. And IDO1 is under estimated in both genders of pDLBCL, while over estimated in both genders of CHL and mDLBCL. The trackers for high variation at chromosome 9 at loci 9p24.1 for CD274 or PDL1 and PDCD1LG2 for PDL2 have inconsistencies when spread across separate groups of gender in each class of lymphoma. The PDL1 gene is only over expressed in males with pDLBCL and mDLBCL, while PDL2 is only over expressed in males with CHL or mDLBCL. High variations at 9p24.1 are supposed to be exclusive to only CHL. But PDL1 region of 9p24.1 could be excluded, while PDL2 region of 9p24.1 is only relevant to males with CHL. PAX5, BCL2, and IDO1 were the only genes over estimated in strictly all of the 3 lymphomas, but when spread across separate groups of gender we see distinctions. While PAX5 is over estimated in all genders and groups except the males with pDLBCL. BCL2 is only over estimated in all males of each lymphoma type but none of the females. IDO1 is only under expressed in both genders of pDLBCL> MUM1 is only elevated in all males but both genders with CHL. When including males MUM1 was not over estimated in CHL in either gender. There is some median value with both genders lined up in increasing order that is higher than the average of both genders combined in CHL making MUM1 underexpressed in CHL excluding gender, but over expressed when including gender for both genders.
Looks like gender could be playing a role in BCL2 as it is the only gene that has over estimation in all males but not females. There are close gender discrepencies in the other groups like females included in over expression of MUM1 with all males, and males excluded from over expression of PaX5 only if they have pDLBCL.
And PDL1 is only in males with both types of DLBCL, and PDL2 only in males with CHL or mDLBCL. It seems the 9p24.1 high variations only includes males with either type of lymphoma of large B-cell type. However, we found a gene on the same loci of 9p24.1 not in the study and that was PTPRD, it seems to be high or over estimated only in the CHL and pDLBCL for males and also females, but not in the mDLBCL for either gender. So high variation of 9p24.1 is true for CHL but only for PTPRD.
Now lets see if any age discrepencies in the subgroups by age within each lymphoma.
rs3_6age <- researchGenes[,c(88:93,95)]
paged_table(rs3_6age)
The 3 genes over estimated in all lymphomas of IDO1, PAX5, and BCL2 have distinct changes in age parameters. IDO1 is only overestimated in CHL in either age group and in only the older than age 72 group with mDLBCL. PAX5 is only overestimated in both young groups of pDLBCL and mDLBCL. BCL2 is only elevated in both age groups of CHL and only the older than 72 years of age group of both types DLBCL.
PAX5 was seen in both genders with CHL over estimated, but under estimated when grouped by age in CHL for PAX 5, this is likely due to the sampling order as not all samples by gender are in same group by age.
For the genes along loci 9p24.1, PTPRD, PDCD1LG2 for PDL2, and CD274 for PDL1. When we looked at age groups above, PDL2 is over estimated in mDLBCL and CHL both age groups, PDL1 is over estimated in the young with CHL or mDLBCL but the old with pDLBCL.The PTPRD gene is not in the study but is at loci of chromosome 9 or 9p24.1 when we searched for genes at the region in part 2. It is also over expressed only in younger than 72 years of age group with CHL or pDLBCL. So the high variation at 9p24.1 is exclusive to younger than 72 years of age AND also having CHL or pDLBCL.
We can use PTPRD to predict age and the CD247 and PDCD1LG2 genes to predict gender.
We have the sample demographics and can look at it now to see the genders and age
There seems to be some genes not necessarily associated with a class of lymphoma but by age or by gender within those classes of lymphoma. This was what the study was searching for, was a way to more easily classify a large B-cell lymphoma other than current standards, as there is overlap within the 3 classes but those differences could be more distinct if more criteria available to classify the type of lymphoma. In the study they saw a transition state between the CHL and pDLBCL class.
We are testing sample bias by using this change factor based on outliers pulling the real values away from the population true value when taking the group avg/group median. In the study, the groups were said to be high variations at 9p24.1 and PDL1 for CHL with EBV, and high IDO1 and INFG for pDLBCL, while mDLBCL was said to be discovered histologically with immune sensescence, and low IFNG with no distinct affects of changes at loci 9p24.1 is the transition state or 4th group that marks the transition to CHL from pDLBCL as IFNG recruits IDO1 so both are high in pDLBCL but as immune cells exhaust they transition into an inbetween state of exhaustion and low IFNG but due to pressure in immune selection the PDL1 gene expression increases and so does the varition of high 9p24.1 gene expression seen in CHL. Since mDLBCL is found in a method other than gene expression but from histology to find EBNA2 and immune senescence indicated by classification of latency type 3 EBV infection confirmed by a score in a questionaire ECOG-PS greater than 2, also high lactate dehydrogenase (an indicator for specific cell death depending on which one of lactate dehydrogenase found) and CD20 elevated more than 50%. We didn’t have the genes for EBNA2 or CD20 in this data to compare. We didn’t check for LDH either. But we can check to see if the LDH gene is in the features data.
LDH <- features[grep('LDH', features$SPOT_ID.1),]
LDH
## ID probeset_id seqname strand start
## TC0100016260.hg.1 TC0100016260.hg.1 TC0100016260.hg.1 chr1 - 165662212
## TC0100018417.hg.1 TC0100018417.hg.1 TC0100018417.hg.1 chr1 - 18871430
## TC0300008660.hg.1 TC0300008660.hg.1 TC0300008660.hg.1 chr3 + 126103640
## TC0300012269.hg.1 TC0300012269.hg.1 TC0300012269.hg.1 chr3 - 126103561
## TC0500011924.hg.1 TC0500011924.hg.1 TC0500011924.hg.1 chr5 - 126541841
## TC0600007198.hg.1 TC0600007198.hg.1 TC0600007198.hg.1 chr6 + 24494852
## TC0600013249.hg.1 TC0600013249.hg.1 TC0600013249.hg.1 chr6 - 134917390
## TC0600013251.hg.1 TC0600013251.hg.1 TC0600013251.hg.1 chr6 - 134960378
## TC0900007187.hg.1 TC0900007187.hg.1 TC0900007187.hg.1 chr9 + 38392664
## TC0900012245.hg.1 TC0900012245.hg.1 TC0900012245.hg.1 chr9 - 72900662
## TC1000011499.hg.1 TC1000011499.hg.1 TC1000011499.hg.1 chr10 - 95605929
## TC1100007003.hg.1 TC1100007003.hg.1 TC1100007003.hg.1 chr11 + 18394388
## TC1100007005.hg.1 TC1100007005.hg.1 TC1100007005.hg.1 chr11 + 18412306
## TC1100007006.hg.1 TC1100007006.hg.1 TC1100007006.hg.1 chr11 + 18455824
## TC1100008174.hg.1 TC1100008174.hg.1 TC1100008174.hg.1 chr11 + 68008547
## TC1100011350.hg.1 TC1100011350.hg.1 TC1100011350.hg.1 chr11 - 67662162
## TC1200010109.hg.1 TC1200010109.hg.1 TC1200010109.hg.1 chr12 - 21635341
## TC1200011770.hg.1 TC1200011770.hg.1 TC1200011770.hg.1 chr12 - 105019784
## TC1200012707.hg.1 TC1200012707.hg.1 TC1200012707.hg.1 chr12 + 111766887
## TC1400009684.hg.1 TC1400009684.hg.1 TC1400009684.hg.1 chr14 - 74056850
## TC1500007396.hg.1 TC1500007396.hg.1 TC1500007396.hg.1 chr15 + 59206816
## TC1500009561.hg.1 TC1500009561.hg.1 TC1500009561.hg.1 chr15 - 57953424
## TC1500010800.hg.1 TC1500010800.hg.1 TC1500010800.hg.1 chr15 + 100877714
## TC1600010866.hg.1 TC1600010866.hg.1 TC1600010866.hg.1 chr16 - 75111860
## TC1700007189.hg.1 TC1700007189.hg.1 TC1700007189.hg.1 chr17 + 19648136
## TC1700010036.hg.1 TC1700010036.hg.1 TC1700010036.hg.1 chr17 - 19737984
## TC1900011778.hg.1 TC1900011778.hg.1 TC1900011778.hg.1 chr19 + 49453169
## stop total_probes category SPOT_ID
## TC0100016260.hg.1 165698863 10 main Multiple_Complex
## TC0100018417.hg.1 18902799 10 main Multiple_Complex
## TC0300008660.hg.1 126108069 10 main Multiple_Complex
## TC0300012269.hg.1 126197994 10 main Multiple_Complex
## TC0500011924.hg.1 126595418 10 main Multiple_Complex
## TC0600007198.hg.1 24537207 10 main Multiple_Complex
## TC0600013249.hg.1 134950122 10 main Multiple_Complex
## TC0600013251.hg.1 135103056 10 main Multiple_Complex
## TC0900007187.hg.1 38398665 10 main Multiple_Complex
## TC0900012245.hg.1 73038722 10 main Multiple_Complex
## TC1000011499.hg.1 95656810 10 main Multiple_Complex
## TC1100007003.hg.1 18408425 10 main Multiple_Complex
## TC1100007005.hg.1 18452058 10 main Coding
## TC1100007006.hg.1 18479600 10 main Coding
## TC1100008174.hg.1 68029282 10 main Multiple_Complex
## TC1100011350.hg.1 67681214 10 main Multiple_Complex
## TC1200010109.hg.1 21757857 10 main Multiple_Complex
## TC1200011770.hg.1 105084577 10 main Multiple_Complex
## TC1200012707.hg.1 111817529 10 main Multiple_Complex
## TC1400009684.hg.1 74084493 10 main Multiple_Complex
## TC1500007396.hg.1 59208586 10 main Coding
## TC1500009561.hg.1 58497866 10 main Multiple_Complex
## TC1500010800.hg.1 100916626 10 main Multiple_Complex
## TC1600010866.hg.1 75116772 10 main Multiple_Complex
## TC1700007189.hg.1 19677598 10 main Multiple_Complex
## TC1700010036.hg.1 19748943 10 main Multiple_Complex
## TC1900011778.hg.1 49471048 10 main Multiple_Complex
## SPOT_ID.1
## TC0100016260.hg.1 NM_000696 // RefSeq // Homo sapiens aldehyde dehydrogenase 9 family, member A1 (ALDH9A1), mRNA. // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000354775 // ENSEMBL // aldehyde dehydrogenase 9 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000461664 // ENSEMBL // aldehyde dehydrogenase 9 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000463610 // ENSEMBL // aldehyde dehydrogenase 9 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000471457 // ENSEMBL // aldehyde dehydrogenase 9 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000491436 // ENSEMBL // aldehyde dehydrogenase 9 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// BC151140 // GenBank // Homo sapiens aldehyde dehydrogenase 9 family, member A1, mRNA (cDNA clone MGC:184052 IMAGE:9057040), complete cds. // chr1 // 100 // 100 // 0 // --- // 0 /// BC151141 // GenBank // Homo sapiens aldehyde dehydrogenase 9 family, member A1, mRNA (cDNA clone MGC:184053 IMAGE:9057041), complete cds. // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000083899 // Havana transcript // aldehyde dehydrogenase 9 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000083900 // Havana transcript // aldehyde dehydrogenase 9 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000083901 // Havana transcript // aldehyde dehydrogenase 9 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000083902 // Havana transcript // aldehyde dehydrogenase 9 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000313745 // Havana transcript // aldehyde dehydrogenase 9 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000384263 // ENSEMBL // Y RNA [Source:RFAM;Acc:RF00019] // chr1 // 100 // 100 // 0 // --- // 0 /// CCDS1250.2 // ccdsGene // aldehyde dehydrogenase 9 family, member A1 [Source:HGNC Symbol;Acc:HGNC:412] // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0003014 // circbase // Jeck2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0005666 // circbase // Jeck2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0015070 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0015071 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0015072 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0015073 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0015074 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0015075 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000696 // chr1 // 100 // 100 // 0 // --- // 0 /// uc001gdh.2 // UCSC Genes // aldehyde dehydrogenase 9 family, member A1 [Source:HGNC Symbol;Acc:HGNC:412] // chr1 // 100 // 100 // 0 // --- // 0 /// uc057myv.1 // UCSC Genes // Y RNA [Source:RFAM;Acc:RF00019] // chr1 // 100 // 100 // 0 // --- // 0 /// uc057myw.1 // UCSC Genes // aldehyde dehydrogenase 9 family, member A1 [Source:HGNC Symbol;Acc:HGNC:412] // chr1 // 100 // 100 // 0 // --- // 0 /// uc057myx.1 // UCSC Genes // aldehyde dehydrogenase 9 family, member A1 [Source:HGNC Symbol;Acc:HGNC:412] // chr1 // 100 // 100 // 0 // --- // 0 /// uc057myy.1 // UCSC Genes // aldehyde dehydrogenase 9 family, member A1 [Source:HGNC Symbol;Acc:HGNC:412] // chr1 // 100 // 100 // 0 // --- // 0 /// uc057myz.1 // UCSC Genes // aldehyde dehydrogenase 9 family, member A1 [Source:HGNC Symbol;Acc:HGNC:412] // chr1 // 100 // 100 // 0 // --- // 0 /// NONHSAT007328 // NONCODE // Non-coding transcript identified by NONCODE // chr1 // 100 // 100 // 0 // --- // 0 /// NONHSAT007329 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr1 // 100 // 100 // 0 // --- // 0 /// NONHSAT007329 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr1 // 100 // 100 // 0 // --- // 0
## TC0100018417.hg.1 NM_001161504 // RefSeq // Homo sapiens aldehyde dehydrogenase 4 family, member A1 (ALDH4A1), transcript variant 3, mRNA. // chr1 // 100 // 100 // 0 // --- // 0 /// NM_003748 // RefSeq // Homo sapiens aldehyde dehydrogenase 4 family, member A1 (ALDH4A1), transcript variant P5CDhL, mRNA. // chr1 // 100 // 100 // 0 // --- // 0 /// NM_170726 // RefSeq // Homo sapiens aldehyde dehydrogenase 4 family, member A1 (ALDH4A1), transcript variant P5CDhS, mRNA. // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000290597 // ENSEMBL // aldehyde dehydrogenase 4 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000375341 // ENSEMBL // aldehyde dehydrogenase 4 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000432718 // ENSEMBL // aldehyde dehydrogenase 4 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000454547 // ENSEMBL // aldehyde dehydrogenase 4 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000538309 // ENSEMBL // aldehyde dehydrogenase 4 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// ENST00000538839 // ENSEMBL // aldehyde dehydrogenase 4 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// BC007581 // GenBank // Homo sapiens aldehyde dehydrogenase 4 family, member A1, mRNA (cDNA clone MGC:15564 IMAGE:3139944), complete cds. // chr1 // 100 // 100 // 0 // --- // 0 /// BC023600 // GenBank // Homo sapiens aldehyde dehydrogenase 4 family, member A1, mRNA (cDNA clone MGC:23086 IMAGE:4548787), complete cds. // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000006954 // Havana transcript // aldehyde dehydrogenase 4 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000006955 // Havana transcript // aldehyde dehydrogenase 4 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000006956 // Havana transcript // aldehyde dehydrogenase 4 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000006957 // Havana transcript // aldehyde dehydrogenase 4 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr1 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000476515 // Havana transcript // aldehyde dehydrogenase 4 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr1 // 100 // 100 // 0 // --- // 0 /// CCDS188.1 // ccdsGene // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0 /// CCDS53272.1 // ccdsGene // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010231 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010232 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010233 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010234 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010235 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010236 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_001161504 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010237 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010238 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010239 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010240 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0010241 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_003748 // chr1 // 100 // 100 // 0 // --- // 0 /// uc001bbb.4 // UCSC Genes // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0 /// uc001bbc.4 // UCSC Genes // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0 /// uc010ocu.3 // UCSC Genes // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0 /// uc021ohl.2 // UCSC Genes // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0 /// uc057cvb.1 // UCSC Genes // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0 /// uc057cvc.1 // UCSC Genes // aldehyde dehydrogenase 4 family, member A1 [Source:HGNC Symbol;Acc:HGNC:406] // chr1 // 100 // 100 // 0 // --- // 0
## TC0300008660.hg.1 NR_046602 // RefSeq // Homo sapiens ALDH1L1 antisense RNA 1 (ALDH1L1-AS1), long non-coding RNA. // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000512384 // ENSEMBL // ALDH1L1 antisense RNA 1 [gene_biotype:antisense transcript_biotype:antisense] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000512384.1 // lncRNAWiki // ALDH1L1 antisense RNA 1 [Source:HGNC Symbol;Acc:HGNC:40244] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000369856 // Havana transcript // novel transcript // chr3 // 100 // 100 // 0 // --- // 0 /// uc031sbq.2 // UCSC Genes // ALDH1L1 antisense RNA 1 [Source:HGNC Symbol;Acc:HGNC:40244] // chr3 // 100 // 100 // 0 // --- // 0 /// worsweyby.aAug10 // Ace View // Transcript Identified by AceView // chr3 // 100 // 100 // 0 // --- // 0 /// HG496022.1:1..437:ncRNA // RNACentral // long non-coding RNA OTTHUMT00000369856.1 (RP11-124N2.2 gene) // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT091647 // NONCODE // Non-coding transcript identified by NONCODE: Antisense // chr3 // 100 // 100 // 0 // --- // 0 /// NR_046602.1:1..437:ncRNA // RNACentral // long non-coding RNA OTTHUMT00000369856.1 (RP11-124N2.2 gene) // chr3 // 100 // 100 // 0 // --- // 0
## TC0300012269.hg.1 NM_001270364 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member L1 (ALDH1L1), transcript variant 1, mRNA. // chr3 // 100 // 100 // 0 // --- // 0 /// NM_001270365 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member L1 (ALDH1L1), transcript variant 3, mRNA. // chr3 // 100 // 100 // 0 // --- // 0 /// NM_012190 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member L1 (ALDH1L1), transcript variant 2, mRNA. // chr3 // 100 // 100 // 0 // --- // 0 /// NR_072979 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member L1 (ALDH1L1), transcript variant 4, non-coding RNA. // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000273450 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000393431 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000393434 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000413612 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000452905 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000455064 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000460368 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000462808 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000467370 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000472186 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000473607 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000476245 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000484724 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000488356 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000490367 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000493803 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000509952 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000511283 // ENSEMBL // aldehyde dehydrogenase 1 family, member L1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// BC027241 // GenBank // Homo sapiens aldehyde dehydrogenase 1 family, member L1, mRNA (cDNA clone MGC:21310 IMAGE:4484301), complete cds. // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000102803 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000246897 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354391 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354392 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354393 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354394 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354395 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354396 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354397 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354398 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354399 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354400 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000354401 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000370525 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000370526 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000370527 // Havana transcript // aldehyde dehydrogenase 1 family, member L1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ALDH1L1.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 10840 // chr3 // 100 // 100 // 0 // --- // 0 /// ALDH1L1.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 10840 // chr3 // 100 // 100 // 0 // --- // 0 /// ALDH1L1.mAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 10840 // chr3 // 100 // 100 // 0 // --- // 0 /// ALDH1L1.nAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 10840 // chr3 // 100 // 100 // 0 // --- // 0 /// ALDH1L1.oAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 10840 // chr3 // 100 // 100 // 0 // --- // 0 /// CCDS3034.1 // ccdsGene // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// CCDS58850.1 // ccdsGene // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// CCDS58851.1 // ccdsGene // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0067127 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_012190 // chr3 // 100 // 100 // 0 // --- // 0 /// uc003eim.3 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc003ein.2 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc003eio.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc011bki.3 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc031sbp.2 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062njt.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062nju.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062njv.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062njw.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062njx.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062njy.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062njz.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062nka.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062nkb.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062nkc.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062nkd.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062nke.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062nkf.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L1 [Source:HGNC Symbol;Acc:HGNC:3978] // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT091648 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT091648 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr3 // 100 // 100 // 0 // --- // 0
## TC0500011924.hg.1 NM_001182 // RefSeq // Homo sapiens aldehyde dehydrogenase 7 family, member A1 (ALDH7A1), transcript variant 1, mRNA. // chr5 // 100 // 100 // 0 // --- // 0 /// NM_001201377 // RefSeq // Homo sapiens aldehyde dehydrogenase 7 family, member A1 (ALDH7A1), transcript variant 1, mRNA. // chr5 // 100 // 100 // 0 // --- // 0 /// NM_001202404 // RefSeq // Homo sapiens aldehyde dehydrogenase 7 family, member A1 (ALDH7A1), transcript variant 2, mRNA. // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000409134 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000412186 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000413020 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000433026 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000447989 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000458249 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000476328 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000479989 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000485852 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000497231 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000503281 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000509270 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000509459 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000510111 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000511266 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000553117 // ENSEMBL // aldehyde dehydrogenase 7 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// BC002515 // GenBank // Homo sapiens aldehyde dehydrogenase 7 family, member A1, mRNA (cDNA clone MGC:1569 IMAGE:3139235), complete cds. // chr5 // 100 // 100 // 0 // --- // 0 /// BC071712 // GenBank // Homo sapiens aldehyde dehydrogenase 7 family, member A1, mRNA (cDNA clone MGC:88005 IMAGE:5518212), complete cds. // chr5 // 100 // 100 // 0 // --- // 0 /// BC073174 // GenBank // Homo sapiens aldehyde dehydrogenase 7 family, member A1, mRNA (cDNA clone MGC:90324 IMAGE:6501646), complete cds. // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000250921 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330456 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330457 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330458 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330459 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330460 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330462 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330463 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000330464 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000371752 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000371753 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000371754 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000372272 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000372273 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000405796 // Havana transcript // aldehyde dehydrogenase 7 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// ALDH7A1.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 501 // chr5 // 100 // 100 // 0 // --- // 0 /// ALDH7A1.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 501 // chr5 // 100 // 100 // 0 // --- // 0 /// ALDH7A1.lAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 501 // chr5 // 100 // 100 // 0 // --- // 0 /// CCDS4137.2 // ccdsGene // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// CCDS56380.1 // ccdsGene // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0009072 // circbase // Jeck2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001201377 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073722 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073723 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073724 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073725 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073726 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073727 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073728 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073729 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073730 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073731 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073732 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073733 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073734 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073735 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073736 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073737 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0073738 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001182 // chr5 // 100 // 100 // 0 // --- // 0 /// uc003ktx.5 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc011cxa.3 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gnt.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gnu.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gnv.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gnw.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gnx.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gny.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gnz.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063goa.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gob.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063goc.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063god.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063goe.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gof.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// uc063gog.1 // UCSC Genes // aldehyde dehydrogenase 7 family, member A1 [Source:HGNC Symbol;Acc:HGNC:877] // chr5 // 100 // 100 // 0 // --- // 0 /// NONHSAT103587 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr5 // 100 // 100 // 0 // --- // 0 /// NONHSAT103587 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr5 // 100 // 100 // 0 // --- // 0 /// NONHSAT103588 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr5 // 100 // 100 // 0 // --- // 0 /// NONHSAT103588 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr5 // 100 // 100 // 0 // --- // 0 /// NONHSAT103590 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr5 // 100 // 100 // 0 // --- // 0 /// NONHSAT103590 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr5 // 100 // 100 // 0 // --- // 0
## TC0600007198.hg.1 NM_001080 // RefSeq // Homo sapiens aldehyde dehydrogenase 5 family, member A1 (ALDH5A1), transcript variant 2, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// NM_170740 // RefSeq // Homo sapiens aldehyde dehydrogenase 5 family, member A1 (ALDH5A1), transcript variant 1, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000348925 // ENSEMBL // aldehyde dehydrogenase 5 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000357578 // ENSEMBL // aldehyde dehydrogenase 5 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000479394 // ENSEMBL // aldehyde dehydrogenase 5 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000491546 // ENSEMBL // aldehyde dehydrogenase 5 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000492697 // ENSEMBL // aldehyde dehydrogenase 5 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr6 // 100 // 100 // 0 // --- // 0 /// BC034321 // GenBank // Homo sapiens aldehyde dehydrogenase 5 family, member A1, mRNA (cDNA clone MGC:41874 IMAGE:4829533), complete cds. // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000040007 // Havana transcript // aldehyde dehydrogenase 5 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000353913 // Havana transcript // aldehyde dehydrogenase 5 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000353914 // Havana transcript // aldehyde dehydrogenase 5 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000353916 // Havana transcript // aldehyde dehydrogenase 5 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000353917 // Havana transcript // aldehyde dehydrogenase 5 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr6 // 100 // 100 // 0 // --- // 0 /// ALDH5A1.bAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 7915, RefSeq ID(s) NM_170740 // chr6 // 100 // 100 // 0 // --- // 0 /// ALDH5A1.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 7915 // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS4555.1 // ccdsGene // aldehyde dehydrogenase 5 family, member A1 [Source:HGNC Symbol;Acc:HGNC:408] // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS4556.1 // ccdsGene // aldehyde dehydrogenase 5 family, member A1 [Source:HGNC Symbol;Acc:HGNC:408] // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0075844 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_170740 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0075845 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_170740 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0075846 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_170740 // chr6 // 100 // 100 // 0 // --- // 0 /// uc003nef.4 // UCSC Genes // aldehyde dehydrogenase 5 family, member A1 [Source:HGNC Symbol;Acc:HGNC:408] // chr6 // 100 // 100 // 0 // --- // 0 /// uc003neg.4 // UCSC Genes // aldehyde dehydrogenase 5 family, member A1 [Source:HGNC Symbol;Acc:HGNC:408] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063mdx.1 // UCSC Genes // aldehyde dehydrogenase 5 family, member A1 [Source:HGNC Symbol;Acc:HGNC:408] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063mdy.1 // UCSC Genes // aldehyde dehydrogenase 5 family, member A1 [Source:HGNC Symbol;Acc:HGNC:408] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063mdz.1 // UCSC Genes // aldehyde dehydrogenase 5 family, member A1 [Source:HGNC Symbol;Acc:HGNC:408] // chr6 // 100 // 100 // 0 // --- // 0 /// NONHSAT108113 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr6 // 100 // 100 // 0 // --- // 0 /// NONHSAT108113 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr6 // 100 // 100 // 0 // --- // 0
## TC0600013249.hg.1 NM_001193480 // RefSeq // Homo sapiens aldehyde dehydrogenase 8 family, member A1 (ALDH8A1), transcript variant 3, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// NM_022568 // RefSeq // Homo sapiens aldehyde dehydrogenase 8 family, member A1 (ALDH8A1), transcript variant 1, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// NM_170771 // RefSeq // Homo sapiens aldehyde dehydrogenase 8 family, member A1 (ALDH8A1), transcript variant 2, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000265605 // ENSEMBL // aldehyde dehydrogenase 8 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000349305 // ENSEMBL // aldehyde dehydrogenase 8 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000367845 // ENSEMBL // aldehyde dehydrogenase 8 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000367847 // ENSEMBL // aldehyde dehydrogenase 8 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000460753 // ENSEMBL // aldehyde dehydrogenase 8 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000534012 // ENSEMBL // aldehyde dehydrogenase 8 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// BC113862 // GenBank // Homo sapiens aldehyde dehydrogenase 8 family, member A1, mRNA (cDNA clone MGC:138650 IMAGE:40033493), complete cds. // chr6 // 100 // 100 // 0 // --- // 0 /// BC114473 // GenBank // Homo sapiens aldehyde dehydrogenase 8 family, member A1, mRNA (cDNA clone MGC:138649 IMAGE:40033488), complete cds. // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000042334 // Havana transcript // aldehyde dehydrogenase 8 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000042335 // Havana transcript // aldehyde dehydrogenase 8 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000042336 // Havana transcript // aldehyde dehydrogenase 8 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391395 // Havana transcript // aldehyde dehydrogenase 8 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391396 // Havana transcript // aldehyde dehydrogenase 8 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391397 // Havana transcript // aldehyde dehydrogenase 8 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// uc003qew.3 // UCSC Genes // Homo sapiens aldehyde dehydrogenase 8 family, member A1 (ALDH8A1), transcript variant 1, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS5171.1 // ccdsGene // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS5172.1 // ccdsGene // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS55057.1 // ccdsGene // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// HBS1LandALDH8A1.uAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 64577; 10767 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0077898 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_022568 // chr6 // 100 // 100 // 0 // --- // 0 /// uc003qex.4 // UCSC Genes // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// uc011ecx.3 // UCSC Genes // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rot.1 // UCSC Genes // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rou.1 // UCSC Genes // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063row.1 // UCSC Genes // aldehyde dehydrogenase 8 family, member A1 [Source:HGNC Symbol;Acc:HGNC:15471] // chr6 // 100 // 100 // 0 // --- // 0 /// chr6_135263546_135265104 // Guo // circRNA transcript identified by Guo, et al. on chr6 from 135263546-135265104 on Hg19 // chr6 // 100 // 100 // 0 // --- // 0
## TC0600013251.hg.1 NM_001145158 // RefSeq // Homo sapiens HBS1-like translational GTPase (HBS1L), transcript variant 2, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// NM_001145207 // RefSeq // Homo sapiens HBS1-like translational GTPase (HBS1L), transcript variant 3, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// NM_006620 // RefSeq // Homo sapiens HBS1-like translational GTPase (HBS1L), transcript variant 1, mRNA. // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000314674 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000367820 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000367822 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000367826 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000367837 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000415177 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000524715 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000525067 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000526100 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000527005 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000527507 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000527578 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000529169 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000529641 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000529882 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// ENST00000533274 // ENSEMBL // HBS1-like translational GTPase [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// BC001465 // GenBank // Homo sapiens HBS1-like (S. cerevisiae), mRNA (cDNA clone MGC:1869 IMAGE:3138910), complete cds. // chr6 // 100 // 100 // 0 // --- // 0 /// BC040849 // GenBank // Homo sapiens HBS1-like (S. cerevisiae), mRNA (cDNA clone MGC:49906 IMAGE:5104748), complete cds. // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000042339 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000042341 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000042342 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000042344 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391463 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391464 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391465 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391466 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391467 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391468 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391469 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391470 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391471 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391472 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391545 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000391546 // Havana transcript // HBS1-like (S. cerevisiae)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS47479.1 // ccdsGene // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS47480.1 // ccdsGene // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// CCDS5173.1 // ccdsGene // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// HBS1LandALDH8A1.iAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 64577; 10767 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0001641 // circbase // Jeck2013, Memczak2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001145207 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0003504 // circbase // Jeck2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_006620 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0077899 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_006620 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0077900 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, intronic, OVCODE, OVEXON best transcript NM_006620 // chr6 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0077901 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_006620 // chr6 // 100 // 100 // 0 // --- // 0 /// uc003qey.4 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc003qez.4 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc003qfa.3 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc011eda.3 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rox.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063roy.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063roz.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpa.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpb.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpc.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpd.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpe.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpf.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpg.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rph.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0 /// uc063rpi.1 // UCSC Genes // HBS1-like translational GTPase [Source:HGNC Symbol;Acc:HGNC:4834] // chr6 // 100 // 100 // 0 // --- // 0
## TC0900007187.hg.1 NM_000692 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member B1 (ALDH1B1), mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000377698 // ENSEMBL // aldehyde dehydrogenase 1 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// BC001619 // GenBank // Homo sapiens aldehyde dehydrogenase 1 family, member B1, mRNA (cDNA clone MGC:2230 IMAGE:3356389), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000052492 // Havana transcript // aldehyde dehydrogenase 1 family, member B1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS6615.1 // ccdsGene // aldehyde dehydrogenase 1 family, member B1 [Source:HGNC Symbol;Acc:HGNC:407] // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087092 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3, UTR5 best transcript NM_000692 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087093 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3, UTR5 best transcript NM_000692 // chr9 // 100 // 100 // 0 // --- // 0 /// uc004aay.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member B1 [Source:HGNC Symbol;Acc:HGNC:407] // chr9 // 100 // 100 // 0 // --- // 0
## TC0900012245.hg.1 NM_000689 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member A1 (ALDH1A1), mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000297785 // ENSEMBL // aldehyde dehydrogenase 1 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000376939 // ENSEMBL // aldehyde dehydrogenase 1 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000446946 // ENSEMBL // aldehyde dehydrogenase 1 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000482210 // ENSEMBL // aldehyde dehydrogenase 1 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000493113 // ENSEMBL // aldehyde dehydrogenase 1 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// BC001505 // GenBank // Homo sapiens aldehyde dehydrogenase 1 family, member A1, mRNA (cDNA clone MGC:2318 IMAGE:2988388), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000052679 // Havana transcript // aldehyde dehydrogenase 1 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000052680 // Havana transcript // aldehyde dehydrogenase 1 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000052681 // Havana transcript // aldehyde dehydrogenase 1 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000052682 // Havana transcript // aldehyde dehydrogenase 1 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000052683 // Havana transcript // aldehyde dehydrogenase 1 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS6644.1 // ccdsGene // aldehyde dehydrogenase 1 family, member A1 [Source:HGNC Symbol;Acc:HGNC:402] // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087206 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000689 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087207 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000689 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087208 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000689 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087209 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_000689 // chr9 // 100 // 100 // 0 // --- // 0 /// uc004ajd.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member A1 [Source:HGNC Symbol;Acc:HGNC:402] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064tsz.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A1 [Source:HGNC Symbol;Acc:HGNC:402] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064tta.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A1 [Source:HGNC Symbol;Acc:HGNC:402] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064ttc.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A1 [Source:HGNC Symbol;Acc:HGNC:402] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064ttd.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A1 [Source:HGNC Symbol;Acc:HGNC:402] // chr9 // 100 // 100 // 0 // --- // 0
## TC1000011499.hg.1 NM_001017423 // RefSeq // Homo sapiens aldehyde dehydrogenase 18 family, member A1 (ALDH18A1), transcript variant 2, mRNA. // chr10 // 100 // 100 // 0 // --- // 0 /// NM_002860 // RefSeq // Homo sapiens aldehyde dehydrogenase 18 family, member A1 (ALDH18A1), transcript variant 1, mRNA. // chr10 // 100 // 100 // 0 // --- // 0 /// ENST00000371221 // ENSEMBL // aldehyde dehydrogenase 18 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr10 // 100 // 100 // 0 // --- // 0 /// ENST00000371224 // ENSEMBL // aldehyde dehydrogenase 18 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr10 // 100 // 100 // 0 // --- // 0 /// ENST00000483788 // ENSEMBL // aldehyde dehydrogenase 18 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr10 // 100 // 100 // 0 // --- // 0 /// ENST00000485428 // ENSEMBL // aldehyde dehydrogenase 18 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr10 // 100 // 100 // 0 // --- // 0 /// ENST00000489386 // ENSEMBL // aldehyde dehydrogenase 18 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr10 // 100 // 100 // 0 // --- // 0 /// BC106054 // GenBank // Homo sapiens aldehyde dehydrogenase 18 family, member A1, mRNA (cDNA clone MGC:117316 IMAGE:6156087), complete cds. // chr10 // 100 // 100 // 0 // --- // 0 /// BC117240 // GenBank // Homo sapiens aldehyde dehydrogenase 18 family, member A1, mRNA (cDNA clone MGC:150849 IMAGE:40125791), complete cds. // chr10 // 100 // 100 // 0 // --- // 0 /// BC117242 // GenBank // Homo sapiens aldehyde dehydrogenase 18 family, member A1, mRNA (cDNA clone MGC:150851 IMAGE:40125793), complete cds. // chr10 // 100 // 100 // 0 // --- // 0 /// BC143930 // GenBank // Homo sapiens aldehyde dehydrogenase 18 family, member A1, mRNA (cDNA clone MGC:177465 IMAGE:9052448), complete cds. // chr10 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000049552 // Havana transcript // aldehyde dehydrogenase 18 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr10 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000049553 // Havana transcript // aldehyde dehydrogenase 18 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr10 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000049554 // Havana transcript // aldehyde dehydrogenase 18 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr10 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000049555 // Havana transcript // aldehyde dehydrogenase 18 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr10 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000049556 // Havana transcript // aldehyde dehydrogenase 18 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr10 // 100 // 100 // 0 // --- // 0 /// ALDH18A1.mAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5832 // chr10 // 100 // 100 // 0 // --- // 0 /// CCDS31257.1 // ccdsGene // aldehyde dehydrogenase 18 family, member A1 [Source:HGNC Symbol;Acc:HGNC:9722] // chr10 // 100 // 100 // 0 // --- // 0 /// CCDS7443.1 // ccdsGene // aldehyde dehydrogenase 18 family, member A1 [Source:HGNC Symbol;Acc:HGNC:9722] // chr10 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0004882 // circbase // Jeck2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002860 // chr10 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0019257 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002860 // chr10 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0019258 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002860 // chr10 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0019259 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002860 // chr10 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0019260 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002860 // chr10 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0019261 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002860 // chr10 // 100 // 100 // 0 // --- // 0 /// uc001kky.4 // UCSC Genes // aldehyde dehydrogenase 18 family, member A1 [Source:HGNC Symbol;Acc:HGNC:9722] // chr10 // 100 // 100 // 0 // --- // 0 /// uc001kkz.4 // UCSC Genes // aldehyde dehydrogenase 18 family, member A1 [Source:HGNC Symbol;Acc:HGNC:9722] // chr10 // 100 // 100 // 0 // --- // 0 /// uc057vau.1 // UCSC Genes // aldehyde dehydrogenase 18 family, member A1 [Source:HGNC Symbol;Acc:HGNC:9722] // chr10 // 100 // 100 // 0 // --- // 0 /// uc057vav.1 // UCSC Genes // aldehyde dehydrogenase 18 family, member A1 [Source:HGNC Symbol;Acc:HGNC:9722] // chr10 // 100 // 100 // 0 // --- // 0 /// uc057vaw.1 // UCSC Genes // aldehyde dehydrogenase 18 family, member A1 [Source:HGNC Symbol;Acc:HGNC:9722] // chr10 // 100 // 100 // 0 // --- // 0
## TC1100007003.hg.1 NM_001135239 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165414 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165415 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 4, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165416 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 5, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_005566 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NR_028500 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 6, non-coding RNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000227157 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000375710 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000379412 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396222 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000422447 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000430553 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000460405 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000469976 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000478970 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000486690 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000494573 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000495052 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536528 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537296 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000538451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539814 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000540430 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541097 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000542179 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543445 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543695 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545215 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545467 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000625635 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC067223 // GenBank // Homo sapiens lactate dehydrogenase A, mRNA (cDNA clone MGC:72033 IMAGE:4096518), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258172 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258173 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258174 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258175 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258176 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258177 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258178 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258179 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258180 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395876 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395877 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395878 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395879 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395880 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395881 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395882 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395883 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395885 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395886 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395887 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395888 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395889 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395890 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdd.2 // UCSC Genes // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS44549.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53609.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53610.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53611.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7839.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0006469 // circbase // Jeck2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021446 // circbase // Salzman2013 ANNOTATED, coding, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021447 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021448 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021449 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021450 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021451 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021452 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021453 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001135239 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165415 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NR_028500 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.pAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.uAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.vgAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mok.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mol.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdc.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc021qep.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqs.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqt.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqu.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqv.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqw.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqx.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqy.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqz.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zra.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrb.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrc.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrd.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zre.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrf.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrg.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrh.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zri.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrj.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrk.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrl.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr11 // 100 // 100 // 0 // --- // 0
## TC1100007005.hg.1 NM_002301 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_017448 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000280704 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396215 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535809 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536880 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537486 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539369 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541669 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000544105 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545848 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000546146 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC019249 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:26530 IMAGE:4839028), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC064388 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:74967 IMAGE:5744600), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC090043 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:111073 IMAGE:30387780), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395892 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395893 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395894 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395895 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395896 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395897 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395898 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395899 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395900 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395901 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7840.1 // ccdsGene // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mom.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mon.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrn.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zro.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrp.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrq.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrr.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrs.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrt.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zru.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0
## TC1100007006.hg.1 NM_001144071 // RefSeq // Homo sapiens lactate dehydrogenase A-like 6A (LDHAL6A), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_144972 // RefSeq // Homo sapiens lactate dehydrogenase A-like 6A (LDHAL6A), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000280706 // ENSEMBL // lactate dehydrogenase A-like 6A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396213 // ENSEMBL // lactate dehydrogenase A-like 6A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000615355 // ENSEMBL // lactate dehydrogenase A-like 6A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC014340 // GenBank // Homo sapiens lactate dehydrogenase A-like 6A, mRNA (cDNA clone MGC:23940 IMAGE:3935569), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395903 // Havana transcript // lactate dehydrogenase A-like 6A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395904 // Havana transcript // lactate dehydrogenase A-like 6A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7841.1 // ccdsGene // lactate dehydrogenase A-like 6A [Source:HGNC Symbol;Acc:HGNC:28335] // chr11 // 100 // 100 // 0 // --- // 0 /// LDHAL6A.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 160287, RefSeq ID(s) NM_144972 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mop.2 // UCSC Genes // lactate dehydrogenase A-like 6A [Source:HGNC Symbol;Acc:HGNC:28335] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001moq.3 // UCSC Genes // lactate dehydrogenase A-like 6A [Source:HGNC Symbol;Acc:HGNC:28335] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrv.1 // UCSC Genes // lactate dehydrogenase A-like 6A [Source:HGNC Symbol;Acc:HGNC:28335] // chr11 // 100 // 100 // 0 // --- // 0
## TC1100008174.hg.1 NM_000694 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member B1 (ALDH3B1), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001030010 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member B1 (ALDH3B1), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001161473 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member B1 (ALDH3B1), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001290058 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member B1 (ALDH3B1), transcript variant 4, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001290059 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member B1 (ALDH3B1), transcript variant 5, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000342456 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000527514 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000612297 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000614849 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000615368 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000615463 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000616697 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000617288 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000617449 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000619675 // ENSEMBL // aldehyde dehydrogenase 3 family, member B1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// BC013584 // GenBank // Homo sapiens aldehyde dehydrogenase 3 family, member B1, mRNA (cDNA clone MGC:9573 IMAGE:3878124), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC033099 // GenBank // Homo sapiens aldehyde dehydrogenase 3 family, member B1, mRNA (cDNA clone MGC:45675 IMAGE:5446816), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000337614 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000337615 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395036 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395037 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395038 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395039 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395040 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395042 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395043 // Havana transcript // aldehyde dehydrogenase 3 family, member B1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ALDH3B1.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 221 // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS73335.1 // ccdsGene // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS73336.1 // ccdsGene // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0023133 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3, UTR5 best transcript NM_001161473 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0023134 // circbase // Salzman2013 ALT_ACCEPTOR, ALT_DONOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001161473 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0023135 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3 best transcript NM_001161473 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0023136 // circbase // Salzman2013 ALT_DONOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001161473 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0023137 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3 best transcript NM_001161473 // chr11 // 100 // 100 // 0 // --- // 0 /// uc031xti.2 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc031xtj.2 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc031xtk.2 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc031xtl.2 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ekp.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ekq.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ekr.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058eks.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ekt.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058eku.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B1 [Source:HGNC Symbol;Acc:HGNC:410] // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:1 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:10 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:11 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:12 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:13 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT022488 // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:2 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:3 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:4 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:5 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:6 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:7 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:8 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// lnc-NDUFS8-1:9 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT022488 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr11 // 100 // 100 // 0 // --- // 0
## TC1100011350.hg.1 NM_000695 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member B2 (ALDH3B2), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001031615 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member B2 (ALDH3B2), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000349015 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000525827 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000528756 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000530069 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000531248 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000531881 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000533962 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000534425 // ENSEMBL // aldehyde dehydrogenase 3 family, member B2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// BC007685 // GenBank // Homo sapiens aldehyde dehydrogenase 3 family, member B2, mRNA (cDNA clone MGC:3627 IMAGE:3636326), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000394004 // Havana transcript // aldehyde dehydrogenase 3 family, member B2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000394006 // Havana transcript // aldehyde dehydrogenase 3 family, member B2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000394007 // Havana transcript // aldehyde dehydrogenase 3 family, member B2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000394008 // Havana transcript // aldehyde dehydrogenase 3 family, member B2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000394009 // Havana transcript // aldehyde dehydrogenase 3 family, member B2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000394010 // Havana transcript // aldehyde dehydrogenase 3 family, member B2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000394011 // Havana transcript // aldehyde dehydrogenase 3 family, member B2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr11 // 100 // 100 // 0 // --- // 0 /// ALDH3B2.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 222 // chr11 // 100 // 100 // 0 // --- // 0 /// ALDH3B2.mAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 222 // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS31622.1 // ccdsGene // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001omr.4 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001oms.4 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ejw.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ejx.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ejy.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ejz.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058eka.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058ekb.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member B2 [Source:HGNC Symbol;Acc:HGNC:411] // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT022461 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT022461 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr11 // 100 // 100 // 0 // --- // 0
## TC1200010109.hg.1 NM_001174097 // RefSeq // Homo sapiens lactate dehydrogenase B (LDHB), transcript variant 2, mRNA. // chr12 // 100 // 100 // 0 // --- // 0 /// NM_002300 // RefSeq // Homo sapiens lactate dehydrogenase B (LDHB), transcript variant 1, mRNA. // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000350669 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000396075 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000396076 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000450584 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000470280 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000470985 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000535112 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000539782 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000542765 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000544151 // ENSEMBL // lactate dehydrogenase B [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// BC002362 // GenBank // Homo sapiens lactate dehydrogenase B, mRNA (cDNA clone MGC:8627 IMAGE:2961445), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// BC015122 // GenBank // Homo sapiens lactate dehydrogenase B, mRNA (cDNA clone MGC:24208 IMAGE:3685985), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// BC071860 // GenBank // Homo sapiens lactate dehydrogenase B, mRNA (cDNA clone MGC:88529 IMAGE:4902461), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258219 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258220 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258221 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258222 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258224 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000402397 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000402398 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000402399 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000402415 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000402416 // Havana transcript // lactate dehydrogenase B[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// CCDS8691.1 // ccdsGene // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025590 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025591 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025592 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025593 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025594 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025595 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025596 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3, UTR5 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025597 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3, UTR5 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025598 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3, UTR5 best transcript NM_002300 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025599 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025600 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON, UTR5 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025601 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025602 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001174097 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0025603 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_002300 // chr12 // 100 // 100 // 0 // --- // 0 /// LDHB.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3945, RefSeq ID(s) NM_002300 // chr12 // 100 // 100 // 0 // --- // 0 /// LDHB.lAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3945 // chr12 // 100 // 100 // 0 // --- // 0 /// uc001rfd.4 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc001rfe.4 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvm.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvn.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvo.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvp.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvq.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvr.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvs.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058lvt.1 // UCSC Genes // lactate dehydrogenase B [Source:HGNC Symbol;Acc:HGNC:6541] // chr12 // 100 // 100 // 0 // --- // 0 /// NONHSAT027256 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr12 // 100 // 100 // 0 // --- // 0 /// NONHSAT027256 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr12 // 100 // 100 // 0 // --- // 0 /// NONHSAT027257 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr12 // 100 // 100 // 0 // --- // 0 /// NONHSAT027257 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr12 // 100 // 100 // 0 // --- // 0
## TC1200011770.hg.1 NM_001034173 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member L2 (ALDH1L2), transcript variant 1, mRNA. // chr12 // 100 // 100 // 0 // --- // 0 /// NR_027752 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member L2 (ALDH1L2), transcript variant 2, non-coding RNA. // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000258494 // ENSEMBL // aldehyde dehydrogenase 1 family, member L2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000548418 // ENSEMBL // aldehyde dehydrogenase 1 family, member L2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000549335 // ENSEMBL // aldehyde dehydrogenase 1 family, member L2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000552270 // ENSEMBL // aldehyde dehydrogenase 1 family, member L2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000552427 // ENSEMBL // aldehyde dehydrogenase 1 family, member L2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// BC103934 // GenBank // Homo sapiens aldehyde dehydrogenase 1 family, member L2, mRNA (cDNA clone MGC:119536 IMAGE:40008174), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// BC103935 // GenBank // Homo sapiens aldehyde dehydrogenase 1 family, member L2, mRNA (cDNA clone MGC:119537 IMAGE:40008176), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000406097 // Havana transcript // aldehyde dehydrogenase 1 family, member L2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000406098 // Havana transcript // aldehyde dehydrogenase 1 family, member L2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000406099 // Havana transcript // aldehyde dehydrogenase 1 family, member L2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000406100 // Havana transcript // aldehyde dehydrogenase 1 family, member L2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000406101 // Havana transcript // aldehyde dehydrogenase 1 family, member L2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr12 // 100 // 100 // 0 // --- // 0 /// CCDS31891.1 // ccdsGene // aldehyde dehydrogenase 1 family, member L2 [Source:HGNC Symbol;Acc:HGNC:26777] // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0027972 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001034173 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0027973 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001034173 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0027974 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001034173 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0027975 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001034173 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0027976 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001034173 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0027977 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001034173 // chr12 // 100 // 100 // 0 // --- // 0 /// uc001tlc.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member L2 [Source:HGNC Symbol;Acc:HGNC:26777] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058spf.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L2 [Source:HGNC Symbol;Acc:HGNC:26777] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058spg.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L2 [Source:HGNC Symbol;Acc:HGNC:26777] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058sph.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L2 [Source:HGNC Symbol;Acc:HGNC:26777] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058spi.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member L2 [Source:HGNC Symbol;Acc:HGNC:26777] // chr12 // 100 // 100 // 0 // --- // 0
## TC1200012707.hg.1 NM_000690 // RefSeq // Homo sapiens aldehyde dehydrogenase 2 family (mitochondrial) (ALDH2), transcript variant 1, mRNA. // chr12 // 100 // 100 // 0 // --- // 0 /// NM_001204889 // RefSeq // Homo sapiens aldehyde dehydrogenase 2 family (mitochondrial) (ALDH2), transcript variant 2, mRNA. // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000261733 // ENSEMBL // aldehyde dehydrogenase 2 family (mitochondrial) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000416293 // ENSEMBL // aldehyde dehydrogenase 2 family (mitochondrial) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000548536 // ENSEMBL // aldehyde dehydrogenase 2 family (mitochondrial) [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000549106 // ENSEMBL // aldehyde dehydrogenase 2 family (mitochondrial) [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000551450 // ENSEMBL // aldehyde dehydrogenase 2 family (mitochondrial) [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// BC002967 // GenBank // Homo sapiens aldehyde dehydrogenase 2 family (mitochondrial), mRNA (cDNA clone MGC:1806 IMAGE:3543343), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// BC071839 // GenBank // Homo sapiens aldehyde dehydrogenase 2 family (mitochondrial), mRNA (cDNA clone MGC:88499 IMAGE:5477768), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000405007 // Havana transcript // aldehyde dehydrogenase 2 family (mitochondrial)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000405008 // Havana transcript // aldehyde dehydrogenase 2 family (mitochondrial)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000405011 // Havana transcript // aldehyde dehydrogenase 2 family (mitochondrial)[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000405013 // Havana transcript // aldehyde dehydrogenase 2 family (mitochondrial)[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000405014 // Havana transcript // aldehyde dehydrogenase 2 family (mitochondrial)[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// ALDH2.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 217 // chr12 // 100 // 100 // 0 // --- // 0 /// CCDS55885.1 // ccdsGene // aldehyde dehydrogenase 2 family (mitochondrial) [Source:HGNC Symbol;Acc:HGNC:404] // chr12 // 100 // 100 // 0 // --- // 0 /// CCDS9155.1 // ccdsGene // aldehyde dehydrogenase 2 family (mitochondrial) [Source:HGNC Symbol;Acc:HGNC:404] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000551450.1 // lncRNAWiki // N/A // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0028302 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR5 best transcript NM_000690 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0028303 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000690 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0028304 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_000690 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0028305 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000690 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0028306 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_000690 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0028307 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000690 // chr12 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0028308 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_000690 // chr12 // 100 // 100 // 0 // --- // 0 /// uc001tst.4 // UCSC Genes // aldehyde dehydrogenase 2 family (mitochondrial) [Source:HGNC Symbol;Acc:HGNC:404] // chr12 // 100 // 100 // 0 // --- // 0 /// uc010syi.3 // UCSC Genes // aldehyde dehydrogenase 2 family (mitochondrial) [Source:HGNC Symbol;Acc:HGNC:404] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058tix.1 // UCSC Genes // aldehyde dehydrogenase 2 family (mitochondrial) [Source:HGNC Symbol;Acc:HGNC:404] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058tiy.1 // UCSC Genes // aldehyde dehydrogenase 2 family (mitochondrial) [Source:HGNC Symbol;Acc:HGNC:404] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058tiz.1 // UCSC Genes // aldehyde dehydrogenase 2 family (mitochondrial) [Source:HGNC Symbol;Acc:HGNC:404] // chr12 // 100 // 100 // 0 // --- // 0 /// HG505176.1:1..569:ncRNA // RNACentral // long non-coding RNA OTTHUMT00000405014.1 (RP3-462E2.3 gene // chr12 // 100 // 100 // 0 // --- // 0 /// NONHSAT030755 // NONCODE // Non-coding transcript identified by NONCODE: Linc // chr12 // 100 // 100 // 0 // --- // 0
## TC1400009684.hg.1 NM_001278593 // RefSeq // Homo sapiens aldehyde dehydrogenase 6 family, member A1 (ALDH6A1), transcript variant 2, mRNA. // chr14 // 100 // 100 // 0 // --- // 0 /// NM_001278594 // RefSeq // Homo sapiens aldehyde dehydrogenase 6 family, member A1 (ALDH6A1), transcript variant 3, mRNA. // chr14 // 100 // 100 // 0 // --- // 0 /// NM_005589 // RefSeq // Homo sapiens aldehyde dehydrogenase 6 family, member A1 (ALDH6A1), transcript variant 1, mRNA. // chr14 // 100 // 100 // 0 // --- // 0 /// ENST00000350259 // ENSEMBL // aldehyde dehydrogenase 6 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr14 // 100 // 100 // 0 // --- // 0 /// ENST00000553458 // ENSEMBL // aldehyde dehydrogenase 6 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr14 // 100 // 100 // 0 // --- // 0 /// ENST00000553814 // ENSEMBL // aldehyde dehydrogenase 6 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr14 // 100 // 100 // 0 // --- // 0 /// ENST00000554231 // ENSEMBL // aldehyde dehydrogenase 6 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr14 // 100 // 100 // 0 // --- // 0 /// ENST00000554501 // ENSEMBL // aldehyde dehydrogenase 6 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr14 // 100 // 100 // 0 // --- // 0 /// ENST00000555126 // ENSEMBL // aldehyde dehydrogenase 6 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr14 // 100 // 100 // 0 // --- // 0 /// ENST00000556852 // ENSEMBL // aldehyde dehydrogenase 6 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr14 // 100 // 100 // 0 // --- // 0 /// BC004909 // GenBank // Homo sapiens aldehyde dehydrogenase 6 family, member A1, mRNA (cDNA clone MGC:4657 IMAGE:3530715), complete cds. // chr14 // 100 // 100 // 0 // --- // 0 /// BC032371 // GenBank // Homo sapiens aldehyde dehydrogenase 6 family, member A1, mRNA (cDNA clone MGC:40271 IMAGE:5163797), complete cds. // chr14 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000412309 // Havana transcript // aldehyde dehydrogenase 6 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr14 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000412310 // Havana transcript // aldehyde dehydrogenase 6 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr14 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000412311 // Havana transcript // aldehyde dehydrogenase 6 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr14 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000412312 // Havana transcript // aldehyde dehydrogenase 6 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr14 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000412313 // Havana transcript // aldehyde dehydrogenase 6 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr14 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000412314 // Havana transcript // aldehyde dehydrogenase 6 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr14 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000412315 // Havana transcript // aldehyde dehydrogenase 6 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr14 // 100 // 100 // 0 // --- // 0 /// CCDS61501.1 // ccdsGene // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// CCDS9826.1 // ccdsGene // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// uc001xpo.5 // UCSC Genes // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// uc010tuq.4 // UCSC Genes // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// uc059dgv.1 // UCSC Genes // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// uc059dgw.1 // UCSC Genes // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// uc059dgx.1 // UCSC Genes // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// uc059dgy.1 // UCSC Genes // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0 /// uc059dgz.1 // UCSC Genes // aldehyde dehydrogenase 6 family, member A1 [Source:HGNC Symbol;Acc:HGNC:7179] // chr14 // 100 // 100 // 0 // --- // 0
## TC1500007396.hg.1 NM_033195 // RefSeq // Homo sapiens lactate dehydrogenase A-like 6B (LDHAL6B), mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000307144 // ENSEMBL // lactate dehydrogenase A-like 6B [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// BC022034 // GenBank // Homo sapiens lactate dehydrogenase A-like 6B, mRNA (cDNA clone MGC:26983 IMAGE:4825988), complete cds. // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000256015 // Havana transcript // lactate dehydrogenase A-like 6B[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// CCDS10171.1 // ccdsGene // lactate dehydrogenase A-like 6B [Source:HGNC Symbol;Acc:HGNC:21481] // chr15 // 100 // 100 // 0 // --- // 0 /// uc002agb.5 // UCSC Genes // lactate dehydrogenase A-like 6B [Source:HGNC Symbol;Acc:HGNC:21481] // chr15 // 100 // 100 // 0 // --- // 0
## TC1500009561.hg.1 NM_001206897 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member A2 (ALDH1A2), transcript variant 4, mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// NM_003888 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member A2 (ALDH1A2), transcript variant 1, mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// NM_170696 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member A2 (ALDH1A2), transcript variant 2, mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// NM_170697 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member A2 (ALDH1A2), transcript variant 3, mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000249750 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000347587 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000430119 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000537372 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000557967 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558073 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558231 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558239 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558384 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558504 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558524 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558595 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558603 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558946 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000559266 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000559297 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000559517 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000559579 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000559625 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000560122 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000560312 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000560863 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000560923 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000561070 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000561098 // ENSEMBL // aldehyde dehydrogenase 1 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// BC030589 // GenBank // Homo sapiens aldehyde dehydrogenase 1 family, member A2, mRNA (cDNA clone MGC:26444 IMAGE:4826743), complete cds. // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000255869 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000255870 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416215 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416264 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416306 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416307 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416308 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416309 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416310 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416311 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416312 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416313 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416314 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416315 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416316 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416317 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416318 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416319 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416320 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416321 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416322 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416323 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416324 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416360 // Havana transcript // aldehyde dehydrogenase 1 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// uc010ugv.2 // UCSC Genes // Homo sapiens aldehyde dehydrogenase 1 family, member A2 (ALDH1A2), transcript variant 4, mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// ALDH1A2.bAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 8854 // chr15 // 100 // 100 // 0 // --- // 0 /// ALDH1A2.hAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 8854 // chr15 // 100 // 100 // 0 // --- // 0 /// ALDH1A2.kAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 8854 // chr15 // 100 // 100 // 0 // --- // 0 /// ALDH1A2.vdAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 8854 // chr15 // 100 // 100 // 0 // --- // 0 /// CCDS10163.1 // ccdsGene // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// CCDS10164.1 // ccdsGene // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// CCDS45266.1 // ccdsGene // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// CCDS55968.1 // ccdsGene // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035438 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035439 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3, UTR5 best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035440 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035441 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035442 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035443 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035444 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035445 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0035446 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001206897 // chr15 // 100 // 100 // 0 // --- // 0 /// uc002aew.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc002aex.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc002aey.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc010ugw.3 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jql.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqm.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqn.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqp.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqq.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqr.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqs.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqt.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqu.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqv.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqw.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqx.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jqz.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jrc.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jrd.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jre.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jrf.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jrg.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jrh.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059jri.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A2 [Source:HGNC Symbol;Acc:HGNC:15472] // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044082 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044082 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044085 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044085 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044086 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044086 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044087 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044087 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044088 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044088 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044089 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044089 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044093 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044093 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044095 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044095 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044103 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044103 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044104 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044104 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044105 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044105 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044106 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044106 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044107 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT044107 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT140242 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr15 // 100 // 100 // 0 // --- // 0 /// NONHSAT140242 // NONCODE // Non-coding transcript identified by NONCODE: Antisense,Exonic // chr15 // 100 // 100 // 0 // --- // 0
## TC1500010800.hg.1 NM_000693 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member A3 (ALDH1A3), transcript variant 1, mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// NM_001293815 // RefSeq // Homo sapiens aldehyde dehydrogenase 1 family, member A3 (ALDH1A3), transcript variant 2, mRNA. // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000329841 // ENSEMBL // aldehyde dehydrogenase 1 family, member A3 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000346623 // ENSEMBL // aldehyde dehydrogenase 1 family, member A3 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000557963 // ENSEMBL // aldehyde dehydrogenase 1 family, member A3 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558033 // ENSEMBL // aldehyde dehydrogenase 1 family, member A3 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000558869 // ENSEMBL // aldehyde dehydrogenase 1 family, member A3 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000560555 // ENSEMBL // aldehyde dehydrogenase 1 family, member A3 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// ENST00000561338 // ENSEMBL // aldehyde dehydrogenase 1 family, member A3 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// BC069274 // GenBank // Homo sapiens aldehyde dehydrogenase 1 family, member A3, mRNA (cDNA clone MGC:78582 IMAGE:6208628), complete cds. // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000313620 // Havana transcript // aldehyde dehydrogenase 1 family, member A3[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416653 // Havana transcript // aldehyde dehydrogenase 1 family, member A3[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416655 // Havana transcript // aldehyde dehydrogenase 1 family, member A3[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416656 // Havana transcript // aldehyde dehydrogenase 1 family, member A3[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416658 // Havana transcript // aldehyde dehydrogenase 1 family, member A3[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416659 // Havana transcript // aldehyde dehydrogenase 1 family, member A3[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr15 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000416660 // Havana transcript // aldehyde dehydrogenase 1 family, member A3[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr15 // 100 // 100 // 0 // --- // 0 /// CCDS10389.1 // ccdsGene // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0037070 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3 best transcript NM_000693 // chr15 // 100 // 100 // 0 // --- // 0 /// uc002bwn.5 // UCSC Genes // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0 /// uc010bpb.4 // UCSC Genes // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059nxd.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059nxe.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059nxf.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059nxg.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0 /// uc059nxi.1 // UCSC Genes // aldehyde dehydrogenase 1 family, member A3 [Source:HGNC Symbol;Acc:HGNC:409] // chr15 // 100 // 100 // 0 // --- // 0
## TC1600010866.hg.1 NM_153486 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 1, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// NM_194436 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 2, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000300051 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000450168 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000568164 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000569876 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// BC040279 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:34649 IMAGE:5162826), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// BC047902 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:57726 IMAGE:5762691), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000269018 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434651 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434652 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434653 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS10913.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS45529.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdm.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdn.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xeh.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xei.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0
## TC1700007189.hg.1 NM_000382 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member A2 (ALDH3A2), transcript variant 2, mRNA. // chr17 // 100 // 100 // 0 // --- // 0 /// NM_001031806 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member A2 (ALDH3A2), transcript variant 1, mRNA. // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000176643 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000339618 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000395575 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000446398 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000467473 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000472059 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000476965 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000571163 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000571537 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000573505 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000573565 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000573947 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000574078 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000574597 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000575384 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000578614 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000578696 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000579403 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000579855 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000580550 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000581518 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000582991 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000584332 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000626500 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000630662 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000631291 // ENSEMBL // aldehyde dehydrogenase 3 family, member A2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// BC002430 // GenBank // Homo sapiens aldehyde dehydrogenase 3 family, member A2, mRNA (cDNA clone MGC:2136 IMAGE:3346862), complete cds. // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132268 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132269 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132270 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132271 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132272 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132273 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132274 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441024 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441025 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441026 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441027 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441029 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441030 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441031 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442290 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442291 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442292 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442293 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442294 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442295 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442296 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442297 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442298 // Havana transcript // aldehyde dehydrogenase 3 family, member A2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ALDH3A2.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 224, RefSeq ID(s) NM_001031806 // chr17 // 100 // 100 // 0 // --- // 0 /// CCDS11210.1 // ccdsGene // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// CCDS32589.1 // ccdsGene // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0008603 // circbase // Jeck2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001031806 // chr17 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0042381 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR5 best transcript NM_001031806 // chr17 // 100 // 100 // 0 // --- // 0 /// uc002gwa.2 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc002gwb.2 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmh.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmi.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmj.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmk.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cml.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmm.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmn.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmo.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmp.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmq.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmr.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cms.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmt.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmu.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmw.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmx.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmy.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cmz.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnb.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnc.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnd.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cne.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnf.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cng.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A2 [Source:HGNC Symbol;Acc:HGNC:403] // chr17 // 100 // 100 // 0 // --- // 0 /// NONHSAT146516 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr17 // 100 // 100 // 0 // --- // 0 /// NONHSAT146516 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr17 // 100 // 100 // 0 // --- // 0 /// NONHSAT146517 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr17 // 100 // 100 // 0 // --- // 0 /// NONHSAT146517 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr17 // 100 // 100 // 0 // --- // 0
## TC1700010036.hg.1 NM_000691 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member A1 (ALDH3A1), transcript variant 2, mRNA. // chr17 // 100 // 100 // 0 // --- // 0 /// NM_001135167 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member A1 (ALDH3A1), transcript variant 3, mRNA. // chr17 // 100 // 100 // 0 // --- // 0 /// NM_001135168 // RefSeq // Homo sapiens aldehyde dehydrogenase 3 family, member A1 (ALDH3A1), transcript variant 1, mRNA. // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000225740 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000395555 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000426645 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000439102 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000444455 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000457500 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000468746 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000479677 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000485231 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000485472 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000487650 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000494157 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000570414 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000573368 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000574162 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000575103 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ENST00000575860 // ENSEMBL // aldehyde dehydrogenase 3 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// BC004370 // GenBank // Homo sapiens aldehyde dehydrogenase 3 family, memberA1, mRNA (cDNA clone MGC:10406 IMAGE:3622758), complete cds. // chr17 // 100 // 100 // 0 // --- // 0 /// BC008892 // GenBank // Homo sapiens aldehyde dehydrogenase 3 family, memberA1, mRNA (cDNA clone MGC:10584 IMAGE:3688887), complete cds. // chr17 // 100 // 100 // 0 // --- // 0 /// BC021194 // GenBank // Homo sapiens aldehyde dehydrogenase 3 family, memberA1, mRNA (cDNA clone MGC:3727 IMAGE:3610317), complete cds. // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132256 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132257 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132260 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132261 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132262 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132263 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132264 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132265 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000132266 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441126 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441128 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441129 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441130 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441131 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000441132 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000442302 // Havana transcript // aldehyde dehydrogenase 3 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr17 // 100 // 100 // 0 // --- // 0 /// ALDH3A1.sAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 218 // chr17 // 100 // 100 // 0 // --- // 0 /// CCDS11212.1 // ccdsGene // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0042382 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3 best transcript NM_001135168 // chr17 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0042383 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001135168 // chr17 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0042384 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON, UTR5 best transcript NM_000691 // chr17 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0042385 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON, UTR5 best transcript NM_000691 // chr17 // 100 // 100 // 0 // --- // 0 /// uc002gwj.4 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc010cqu.4 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc010vzd.3 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnp.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnq.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnr.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cns.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnt.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnu.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnv.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnw.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnx.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cny.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cnz.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060coa.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060cob.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// uc060coc.1 // UCSC Genes // aldehyde dehydrogenase 3 family, member A1 [Source:HGNC Symbol;Acc:HGNC:405] // chr17 // 100 // 100 // 0 // --- // 0 /// NONHSAT146524 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr17 // 100 // 100 // 0 // --- // 0 /// NONHSAT146524 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr17 // 100 // 100 // 0 // --- // 0
## TC1900011778.hg.1 NM_001145396 // RefSeq // Homo sapiens aldehyde dehydrogenase 16 family, member A1 (ALDH16A1), transcript variant 2, mRNA. // chr19 // 100 // 100 // 0 // --- // 0 /// NM_153329 // RefSeq // Homo sapiens aldehyde dehydrogenase 16 family, member A1 (ALDH16A1), transcript variant 1, mRNA. // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000293350 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000455361 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000540132 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000593417 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000594549 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000598015 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000599652 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000600265 // ENSEMBL // aldehyde dehydrogenase 16 family, member A1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// BC014895 // GenBank // Homo sapiens aldehyde dehydrogenase 16 family, member A1, mRNA (cDNA clone MGC:10204 IMAGE:3910527), complete cds. // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465358 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465359 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465360 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465361 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465362 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465363 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465364 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000465368 // Havana transcript // aldehyde dehydrogenase 16 family, member A1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// ALDH16A1.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 126133 // chr19 // 100 // 100 // 0 // --- // 0 /// ALDH16A1.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 126133 // chr19 // 100 // 100 // 0 // --- // 0 /// ALDH16A1.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 126133 // chr19 // 100 // 100 // 0 // --- // 0 /// ALDH16A1.iAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 126133 // chr19 // 100 // 100 // 0 // --- // 0 /// ALDH16A1.kAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 126133 // chr19 // 100 // 100 // 0 // --- // 0 /// CCDS12766.1 // ccdsGene // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// CCDS46141.1 // ccdsGene // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0051879 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_153329 // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0051880 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_153329 // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0051881 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_153329 // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0051882 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_153329 // chr19 // 100 // 100 // 0 // --- // 0 /// uc002pnt.4 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// uc010yar.3 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// uc010yat.5 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// uc061bdi.1 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// uc061bdj.1 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// uc061bdk.1 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// uc061bdm.1 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// uc061bdn.1 // UCSC Genes // aldehyde dehydrogenase 16 family, member A1 [Source:HGNC Symbol;Acc:HGNC:28114] // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT067189 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT067189 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr19 // 100 // 100 // 0 // --- // 0
There are many entries with LDH, but it is a common set of letters seen in other gene names. There are a few lactate dehydrogenase family members of LDHA [12] and LDHC [13] and also LDHD [24]. The others are like it or an aldehyde dehydrogenase.
Lets make this data set. We need to read in our larger data set from part 3, dataset
data <- read.csv("Data_27189X123_GSE305165_summaryStatsChangeAvg_med.csv", header=T)
colnames(data)
## [1] "ID" "pDLBCL"
## [3] "CHL" "pDLBCL.1"
## [5] "mDLBCL" "CHL.1"
## [7] "mDLBCL.1" "pDLBCL.2"
## [9] "CHL.2" "CHL.3"
## [11] "CHL.4" "CHL.5"
## [13] "mDLBCL.2" "mDLBCL.3"
## [15] "CHL.6" "CHL.7"
## [17] "pDLBCL.3" "CHL.8"
## [19] "mDLBCL.4" "mDLBCL.5"
## [21] "mDLBCL.6" "mDLBCL.7"
## [23] "CHL.9" "mDLBCL.8"
## [25] "CHL.10" "CHL.11"
## [27] "CHL.12" "CHL.13"
## [29] "mDLBCL.9" "mDLBCL.10"
## [31] "mDLBCL.11" "mDLBCL.12"
## [33] "mDLBCL.13" "mDLBCL.14"
## [35] "pDLBCL.4" "pDLBCL.5"
## [37] "mDLBCL.15" "mDLBCL.16"
## [39] "CHL.14" "pDLBCL.6"
## [41] "pDLBCL.7" "CHL.15"
## [43] "CHL.16" "CHL.17"
## [45] "mDLBCL.17" "mDLBCL.18"
## [47] "mDLBCL.19" "CHL.18"
## [49] "CHL_mean" "pDLBCL_mean"
## [51] "mDLBCL_mean" "CHL_x_mean"
## [53] "mDLBCL_x_mean" "pDLBCL_x_mean"
## [55] "CHL_y_mean" "mDLBCL_y_mean"
## [57] "pDLBCL_y_mean" "CHL_young72_mean"
## [59] "mDLBCL_young72_mean" "pDLBCL_young72_mean"
## [61] "CHL_old" "mDLBCL_old"
## [63] "pDLBCL_old" "CHL_median"
## [65] "mDLBCL_median" "pDLBCL_median"
## [67] "CHL_x_median" "mDLBCL_x_median"
## [69] "pDLBCL_x_median" "CHL_y_median"
## [71] "mDLBCL_y_median" "pDLBCL_y_median"
## [73] "CHL_young72_median" "mDLBCL_young72_median"
## [75] "pDLBCL_young72_median" "CHL_old72_median"
## [77] "mDLBCL_old72_median" "pDLBCL_old72_median"
## [79] "ID.1" "CHL_mean.1"
## [81] "pDLBCL_mean.1" "mDLBCL_mean.1"
## [83] "CHL_x_mean.1" "mDLBCL_x_mean.1"
## [85] "pDLBCL_x_mean.1" "CHL_y_mean.1"
## [87] "mDLBCL_y_mean.1" "pDLBCL_y_mean.1"
## [89] "CHL_young72_mean.1" "mDLBCL_young72_mean.1"
## [91] "pDLBCL_young72_mean.1" "CHL_old.1"
## [93] "mDLBCL_old.1" "pDLBCL_old.1"
## [95] "CHL_median.1" "mDLBCL_median.1"
## [97] "pDLBCL_median.1" "CHL_x_median.1"
## [99] "mDLBCL_x_median.1" "pDLBCL_x_median.1"
## [101] "CHL_y_median.1" "mDLBCL_y_median.1"
## [103] "pDLBCL_y_median.1" "CHL_young72_median.1"
## [105] "mDLBCL_young72_median.1" "pDLBCL_young72_median.1"
## [107] "CHL_old72_median.1" "mDLBCL_old72_median.1"
## [109] "pDLBCL_old72_median.1" "CHL_change"
## [111] "pDLBCL_change" "mDLBCL_change"
## [113] "CHL_x_change" "CHL_y_change"
## [115] "pDLBCL_x_change" "pDLBCL_y_change"
## [117] "mDLBCL_x_change" "mDLBCL_y_change"
## [119] "CHL_old72_change" "CHL_young72_change"
## [121] "pDLBCL_old_change" "pDLBCL_young72_change"
## [123] "mDLBCL_young72_change"
data$mDLBCL_old72_change <- data$mDLBCL_old/data$mDLBCL_old72_median
Data <- data[,c(1:78,110:124)]
rm(data)
colnames(Data)
## [1] "ID" "pDLBCL" "CHL"
## [4] "pDLBCL.1" "mDLBCL" "CHL.1"
## [7] "mDLBCL.1" "pDLBCL.2" "CHL.2"
## [10] "CHL.3" "CHL.4" "CHL.5"
## [13] "mDLBCL.2" "mDLBCL.3" "CHL.6"
## [16] "CHL.7" "pDLBCL.3" "CHL.8"
## [19] "mDLBCL.4" "mDLBCL.5" "mDLBCL.6"
## [22] "mDLBCL.7" "CHL.9" "mDLBCL.8"
## [25] "CHL.10" "CHL.11" "CHL.12"
## [28] "CHL.13" "mDLBCL.9" "mDLBCL.10"
## [31] "mDLBCL.11" "mDLBCL.12" "mDLBCL.13"
## [34] "mDLBCL.14" "pDLBCL.4" "pDLBCL.5"
## [37] "mDLBCL.15" "mDLBCL.16" "CHL.14"
## [40] "pDLBCL.6" "pDLBCL.7" "CHL.15"
## [43] "CHL.16" "CHL.17" "mDLBCL.17"
## [46] "mDLBCL.18" "mDLBCL.19" "CHL.18"
## [49] "CHL_mean" "pDLBCL_mean" "mDLBCL_mean"
## [52] "CHL_x_mean" "mDLBCL_x_mean" "pDLBCL_x_mean"
## [55] "CHL_y_mean" "mDLBCL_y_mean" "pDLBCL_y_mean"
## [58] "CHL_young72_mean" "mDLBCL_young72_mean" "pDLBCL_young72_mean"
## [61] "CHL_old" "mDLBCL_old" "pDLBCL_old"
## [64] "CHL_median" "mDLBCL_median" "pDLBCL_median"
## [67] "CHL_x_median" "mDLBCL_x_median" "pDLBCL_x_median"
## [70] "CHL_y_median" "mDLBCL_y_median" "pDLBCL_y_median"
## [73] "CHL_young72_median" "mDLBCL_young72_median" "pDLBCL_young72_median"
## [76] "CHL_old72_median" "mDLBCL_old72_median" "pDLBCL_old72_median"
## [79] "CHL_change" "pDLBCL_change" "mDLBCL_change"
## [82] "CHL_x_change" "CHL_y_change" "pDLBCL_x_change"
## [85] "pDLBCL_y_change" "mDLBCL_x_change" "mDLBCL_y_change"
## [88] "CHL_old72_change" "CHL_young72_change" "pDLBCL_old_change"
## [91] "pDLBCL_young72_change" "mDLBCL_young72_change" "mDLBCL_old72_change"
We had to do some edits because it wasn’t written out to csv after making edits to it in part 3.
Now lets merge this with the features data that only include the LDHA, LDHC, and LDHD.
LDH <- LDH[c(12,13,24),]
LDH$SPOT_ID.1
## [1] "NM_001135239 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165414 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165415 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 4, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165416 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 5, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_005566 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NR_028500 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 6, non-coding RNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000227157 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000375710 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000379412 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396222 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000422447 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000430553 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000460405 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000469976 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000478970 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000486690 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000494573 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000495052 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536528 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537296 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000538451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539814 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000540430 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541097 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000542179 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543445 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543695 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545215 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545467 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000625635 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC067223 // GenBank // Homo sapiens lactate dehydrogenase A, mRNA (cDNA clone MGC:72033 IMAGE:4096518), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258172 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258173 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258174 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258175 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258176 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258177 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258178 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258179 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258180 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395876 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395877 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395878 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395879 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395880 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395881 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395882 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395883 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395885 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395886 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395887 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395888 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395889 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395890 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdd.2 // UCSC Genes // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS44549.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53609.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53610.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53611.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7839.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0006469 // circbase // Jeck2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021446 // circbase // Salzman2013 ANNOTATED, coding, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021447 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021448 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021449 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021450 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021451 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021452 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021453 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001135239 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165415 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NR_028500 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.pAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.uAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.vgAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mok.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mol.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdc.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc021qep.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqs.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqt.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqu.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqv.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqw.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqx.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqy.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqz.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zra.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrb.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrc.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrd.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zre.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrf.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrg.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrh.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zri.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrj.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrk.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrl.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr11 // 100 // 100 // 0 // --- // 0"
## [2] "NM_002301 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_017448 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000280704 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396215 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535809 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536880 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537486 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539369 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541669 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000544105 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545848 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000546146 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC019249 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:26530 IMAGE:4839028), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC064388 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:74967 IMAGE:5744600), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC090043 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:111073 IMAGE:30387780), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395892 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395893 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395894 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395895 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395896 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395897 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395898 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395899 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395900 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395901 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7840.1 // ccdsGene // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mom.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mon.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrn.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zro.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrp.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrq.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrr.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrs.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrt.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zru.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0"
## [3] "NM_153486 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 1, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// NM_194436 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 2, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000300051 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000450168 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000568164 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000569876 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// BC040279 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:34649 IMAGE:5162826), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// BC047902 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:57726 IMAGE:5762691), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000269018 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434651 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434652 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434653 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS10913.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS45529.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdm.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdn.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xeh.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xei.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0"
LDH$Gene_ID <- c("LDHA","LDHC","LDHD")
LDH$importance <- "Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes"
colnames(LDH)
## [1] "ID" "probeset_id" "seqname" "strand" "start"
## [6] "stop" "total_probes" "category" "SPOT_ID" "SPOT_ID.1"
## [11] "Gene_ID" "importance"
LDH <- LDH[,c(1,10:12)]
LDH
## ID
## TC1100007003.hg.1 TC1100007003.hg.1
## TC1100007005.hg.1 TC1100007005.hg.1
## TC1600010866.hg.1 TC1600010866.hg.1
## SPOT_ID.1
## TC1100007003.hg.1 NM_001135239 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165414 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165415 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 4, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165416 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 5, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_005566 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NR_028500 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 6, non-coding RNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000227157 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000375710 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000379412 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396222 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000422447 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000430553 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000460405 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000469976 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000478970 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000486690 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000494573 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000495052 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536528 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537296 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000538451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539814 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000540430 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541097 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000542179 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543445 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543695 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545215 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545467 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000625635 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC067223 // GenBank // Homo sapiens lactate dehydrogenase A, mRNA (cDNA clone MGC:72033 IMAGE:4096518), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258172 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258173 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258174 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258175 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258176 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258177 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258178 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258179 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258180 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395876 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395877 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395878 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395879 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395880 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395881 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395882 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395883 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395885 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395886 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395887 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395888 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395889 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395890 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdd.2 // UCSC Genes // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS44549.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53609.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53610.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53611.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7839.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0006469 // circbase // Jeck2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021446 // circbase // Salzman2013 ANNOTATED, coding, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021447 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021448 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021449 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021450 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021451 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021452 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021453 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001135239 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165415 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NR_028500 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.pAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.uAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.vgAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mok.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mol.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdc.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc021qep.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqs.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqt.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqu.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqv.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqw.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqx.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqy.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqz.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zra.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrb.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrc.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrd.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zre.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrf.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrg.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrh.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zri.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrj.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrk.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrl.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr11 // 100 // 100 // 0 // --- // 0
## TC1100007005.hg.1 NM_002301 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_017448 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000280704 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396215 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535809 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536880 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537486 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539369 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541669 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000544105 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545848 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000546146 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC019249 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:26530 IMAGE:4839028), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC064388 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:74967 IMAGE:5744600), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC090043 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:111073 IMAGE:30387780), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395892 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395893 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395894 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395895 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395896 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395897 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395898 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395899 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395900 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395901 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7840.1 // ccdsGene // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mom.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mon.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrn.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zro.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrp.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrq.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrr.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrs.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrt.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zru.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0
## TC1600010866.hg.1 NM_153486 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 1, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// NM_194436 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 2, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000300051 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000450168 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000568164 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000569876 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// BC040279 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:34649 IMAGE:5162826), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// BC047902 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:57726 IMAGE:5762691), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000269018 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434651 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434652 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434653 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS10913.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS45529.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdm.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdn.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xeh.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xei.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0
## Gene_ID
## TC1100007003.hg.1 LDHA
## TC1100007005.hg.1 LDHC
## TC1600010866.hg.1 LDHD
## importance
## TC1100007003.hg.1 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## TC1100007005.hg.1 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## TC1600010866.hg.1 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
LDH_data <- merge(LDH, Data, by.x="ID", by.y="ID")
colnames(LDH_data)
## [1] "ID" "SPOT_ID.1" "Gene_ID"
## [4] "importance" "pDLBCL" "CHL"
## [7] "pDLBCL.1" "mDLBCL" "CHL.1"
## [10] "mDLBCL.1" "pDLBCL.2" "CHL.2"
## [13] "CHL.3" "CHL.4" "CHL.5"
## [16] "mDLBCL.2" "mDLBCL.3" "CHL.6"
## [19] "CHL.7" "pDLBCL.3" "CHL.8"
## [22] "mDLBCL.4" "mDLBCL.5" "mDLBCL.6"
## [25] "mDLBCL.7" "CHL.9" "mDLBCL.8"
## [28] "CHL.10" "CHL.11" "CHL.12"
## [31] "CHL.13" "mDLBCL.9" "mDLBCL.10"
## [34] "mDLBCL.11" "mDLBCL.12" "mDLBCL.13"
## [37] "mDLBCL.14" "pDLBCL.4" "pDLBCL.5"
## [40] "mDLBCL.15" "mDLBCL.16" "CHL.14"
## [43] "pDLBCL.6" "pDLBCL.7" "CHL.15"
## [46] "CHL.16" "CHL.17" "mDLBCL.17"
## [49] "mDLBCL.18" "mDLBCL.19" "CHL.18"
## [52] "CHL_mean" "pDLBCL_mean" "mDLBCL_mean"
## [55] "CHL_x_mean" "mDLBCL_x_mean" "pDLBCL_x_mean"
## [58] "CHL_y_mean" "mDLBCL_y_mean" "pDLBCL_y_mean"
## [61] "CHL_young72_mean" "mDLBCL_young72_mean" "pDLBCL_young72_mean"
## [64] "CHL_old" "mDLBCL_old" "pDLBCL_old"
## [67] "CHL_median" "mDLBCL_median" "pDLBCL_median"
## [70] "CHL_x_median" "mDLBCL_x_median" "pDLBCL_x_median"
## [73] "CHL_y_median" "mDLBCL_y_median" "pDLBCL_y_median"
## [76] "CHL_young72_median" "mDLBCL_young72_median" "pDLBCL_young72_median"
## [79] "CHL_old72_median" "mDLBCL_old72_median" "pDLBCL_old72_median"
## [82] "CHL_change" "pDLBCL_change" "mDLBCL_change"
## [85] "CHL_x_change" "CHL_y_change" "pDLBCL_x_change"
## [88] "pDLBCL_y_change" "mDLBCL_x_change" "mDLBCL_y_change"
## [91] "CHL_old72_change" "CHL_young72_change" "pDLBCL_old_change"
## [94] "pDLBCL_young72_change" "mDLBCL_young72_change" "mDLBCL_old72_change"
LDH_df <- LDH_data[,c(1,5:96,2:4)]
colnames(LDH_df)
## [1] "ID" "pDLBCL" "CHL"
## [4] "pDLBCL.1" "mDLBCL" "CHL.1"
## [7] "mDLBCL.1" "pDLBCL.2" "CHL.2"
## [10] "CHL.3" "CHL.4" "CHL.5"
## [13] "mDLBCL.2" "mDLBCL.3" "CHL.6"
## [16] "CHL.7" "pDLBCL.3" "CHL.8"
## [19] "mDLBCL.4" "mDLBCL.5" "mDLBCL.6"
## [22] "mDLBCL.7" "CHL.9" "mDLBCL.8"
## [25] "CHL.10" "CHL.11" "CHL.12"
## [28] "CHL.13" "mDLBCL.9" "mDLBCL.10"
## [31] "mDLBCL.11" "mDLBCL.12" "mDLBCL.13"
## [34] "mDLBCL.14" "pDLBCL.4" "pDLBCL.5"
## [37] "mDLBCL.15" "mDLBCL.16" "CHL.14"
## [40] "pDLBCL.6" "pDLBCL.7" "CHL.15"
## [43] "CHL.16" "CHL.17" "mDLBCL.17"
## [46] "mDLBCL.18" "mDLBCL.19" "CHL.18"
## [49] "CHL_mean" "pDLBCL_mean" "mDLBCL_mean"
## [52] "CHL_x_mean" "mDLBCL_x_mean" "pDLBCL_x_mean"
## [55] "CHL_y_mean" "mDLBCL_y_mean" "pDLBCL_y_mean"
## [58] "CHL_young72_mean" "mDLBCL_young72_mean" "pDLBCL_young72_mean"
## [61] "CHL_old" "mDLBCL_old" "pDLBCL_old"
## [64] "CHL_median" "mDLBCL_median" "pDLBCL_median"
## [67] "CHL_x_median" "mDLBCL_x_median" "pDLBCL_x_median"
## [70] "CHL_y_median" "mDLBCL_y_median" "pDLBCL_y_median"
## [73] "CHL_young72_median" "mDLBCL_young72_median" "pDLBCL_young72_median"
## [76] "CHL_old72_median" "mDLBCL_old72_median" "pDLBCL_old72_median"
## [79] "CHL_change" "pDLBCL_change" "mDLBCL_change"
## [82] "CHL_x_change" "CHL_y_change" "pDLBCL_x_change"
## [85] "pDLBCL_y_change" "mDLBCL_x_change" "mDLBCL_y_change"
## [88] "CHL_old72_change" "CHL_young72_change" "pDLBCL_old_change"
## [91] "pDLBCL_young72_change" "mDLBCL_young72_change" "mDLBCL_old72_change"
## [94] "SPOT_ID.1" "Gene_ID" "importance"
colnames(topGenes)
## [1] "ID" "pDLBCL" "CHL"
## [4] "pDLBCL.1" "mDLBCL" "CHL.1"
## [7] "mDLBCL.1" "pDLBCL.2" "CHL.2"
## [10] "CHL.3" "CHL.4" "CHL.5"
## [13] "mDLBCL.2" "mDLBCL.3" "CHL.6"
## [16] "CHL.7" "pDLBCL.3" "CHL.8"
## [19] "mDLBCL.4" "mDLBCL.5" "mDLBCL.6"
## [22] "mDLBCL.7" "CHL.9" "mDLBCL.8"
## [25] "CHL.10" "CHL.11" "CHL.12"
## [28] "CHL.13" "mDLBCL.9" "mDLBCL.10"
## [31] "mDLBCL.11" "mDLBCL.12" "mDLBCL.13"
## [34] "mDLBCL.14" "pDLBCL.4" "pDLBCL.5"
## [37] "mDLBCL.15" "mDLBCL.16" "CHL.14"
## [40] "pDLBCL.6" "pDLBCL.7" "CHL.15"
## [43] "CHL.16" "CHL.17" "mDLBCL.17"
## [46] "mDLBCL.18" "mDLBCL.19" "CHL.18"
## [49] "CHL_mean" "pDLBCL_mean" "mDLBCL_mean"
## [52] "CHL_x_mean" "mDLBCL_x_mean" "pDLBCL_x_mean"
## [55] "CHL_y_mean" "mDLBCL_y_mean" "pDLBCL_y_mean"
## [58] "CHL_young72_mean" "mDLBCL_young72_mean" "pDLBCL_young72_mean"
## [61] "CHL_old" "mDLBCL_old" "pDLBCL_old"
## [64] "CHL_median" "mDLBCL_median" "pDLBCL_median"
## [67] "CHL_x_median" "mDLBCL_x_median" "pDLBCL_x_median"
## [70] "CHL_y_median" "mDLBCL_y_median" "pDLBCL_y_median"
## [73] "CHL_young72_median" "mDLBCL_young72_median" "pDLBCL_young72_median"
## [76] "CHL_old72_median" "mDLBCL_old72_median" "pDLBCL_old72_median"
## [79] "CHL_change" "pDLBCL_change" "mDLBCL_change"
## [82] "CHL_x_change" "CHL_y_change" "pDLBCL_x_change"
## [85] "pDLBCL_y_change" "mDLBCL_x_change" "mDLBCL_y_change"
## [88] "CHL_old72_change" "CHL_young72_change" "pDLBCL_old_change"
## [91] "pDLBCL_young72_change" "mDLBCL_young72_change" "mDLBCL_old72_change"
## [94] "SPOT_ID.1" "Gene_ID" "importance"
Lets add the LDH genes to the topGenes data
topGenes2 <- rbind(topGenes,LDH_df)
Lets just look at the research genes again.
researchGenes <- topGenes2[grep('Research Article', topGenes2$importance),]
researchGenes[,c(95,79:81)]
## Gene_ID CHL_change pDLBCL_change mDLBCL_change
## 22 PTPRD 1.0132904 1.024186 0.9814230
## 23 PDCD1LG2 1.0247912 1.065183 0.9982401
## 24 PAX5 1.0084634 1.005947 1.0025111
## 30 MUM1 0.9564051 1.024056 1.0267764
## 49 IFNG 1.0144939 1.010136 0.9622795
## 50 IDO1 1.0309266 1.039835 1.0314197
## 56 ERP44 0.9963785 1.017518 1.0088861
## 78 CD5 0.9952703 1.011232 1.0010026
## 79 CD274 0.9984760 1.009721 1.0108712
## 81 BCL6 0.9886459 0.989588 1.0001106
## 82 BCL2 1.0132740 1.004808 1.0029256
## 85 LDHA 0.9757991 1.003289 0.9971806
## 86 LDHC 0.9915320 1.017192 0.9879837
## 87 LDHD 1.0109017 1.001947 1.0008851
LDHD is overestimated in all 3 lymphomas but closer to normal in the DLBCL groups, while LDHA and LDHC are only over estimated in the pDLBCL group.
The article said that the LDH was high but not using gene expression, just clinically in blood lab work for mDLBCL. The gene expression data using this change type says otherwise. But it could be higher across samples. Lets see.
researchGenes[c(12:14),c(95,2:48)]
## Gene_ID pDLBCL CHL pDLBCL.1 mDLBCL CHL.1 mDLBCL.1 pDLBCL.2
## 85 LDHA 8.658361 7.858679 9.184861 9.338661 5.792496 8.716444 8.707534
## 86 LDHC 3.985598 4.007080 4.101672 3.650014 4.342355 3.828057 4.128118
## 87 LDHD 5.712537 6.230099 5.258146 5.503446 5.596182 5.653517 5.386853
## CHL.2 CHL.3 CHL.4 CHL.5 mDLBCL.2 mDLBCL.3 CHL.6 CHL.7
## 85 8.685312 8.980201 8.782031 8.994080 10.007422 8.880994 8.760310 8.390140
## 86 3.997067 4.064068 3.970572 4.475421 3.969665 4.494151 4.522051 3.688503
## 87 5.428130 5.699283 5.174769 5.795505 5.112403 5.504082 5.147836 5.363676
## pDLBCL.3 CHL.8 mDLBCL.4 mDLBCL.5 mDLBCL.6 mDLBCL.7 CHL.9 mDLBCL.8
## 85 9.195272 8.636065 9.858830 9.411728 10.192753 9.538618 8.203157 9.712842
## 86 3.708710 3.929166 3.244598 3.710451 3.895005 3.659041 4.450271 4.151815
## 87 5.116153 5.299886 5.224443 5.223130 5.609946 5.521872 5.581232 5.587457
## CHL.10 CHL.11 CHL.12 CHL.13 mDLBCL.9 mDLBCL.10 mDLBCL.11 mDLBCL.12
## 85 8.428529 8.651220 9.391049 7.980798 9.063086 9.446182 9.497101 9.781190
## 86 3.789925 3.863195 3.386810 3.950610 4.057919 4.283066 4.380149 3.909456
## 87 5.632588 5.475959 5.158768 5.547694 5.761411 5.455434 5.684329 5.955431
## mDLBCL.13 mDLBCL.14 pDLBCL.4 pDLBCL.5 mDLBCL.15 mDLBCL.16 CHL.14 pDLBCL.6
## 85 8.907587 8.819691 8.458703 9.000184 9.675630 9.904595 7.335124 9.761196
## 86 3.207274 3.748995 3.555433 3.570633 3.294096 3.421933 3.944531 3.562440
## 87 5.252791 5.658986 5.531630 5.398580 5.464599 5.499535 5.980378 5.465887
## pDLBCL.7 CHL.15 CHL.16 CHL.17 mDLBCL.17 mDLBCL.18 mDLBCL.19 CHL.18
## 85 8.909913 9.031017 8.432458 9.025153 9.456874 9.917845 8.877298 9.037384
## 86 3.005343 3.439547 3.338988 3.597280 3.879847 3.894580 4.129958 3.554003
## 87 5.397123 5.435433 5.266639 5.339224 5.475541 5.467432 5.556917 5.245798
In all the samples of mDLBCL the LDHA was higher than LDHC and LDHD, with LDHD higher than LDHC. In all these lymphoma samples this is true. But comparing LDH elevations in mDLBCL to pDLBCL and CHL can be done with our median columns.
researchGenes[c(12:14),c(95,64:66)]
## Gene_ID CHL_median mDLBCL_median pDLBCL_median
## 85 LDHA 8.651220 9.476988 8.955049
## 86 LDHC 3.944531 3.887213 3.639672
## 87 LDHD 5.435433 5.503764 5.397851
There is higher LDHA in mDLBCL using the median of all samples in that group compared to CHL and pDLBCL. The LDHC is higher in CHL, then mDLBCL, and lastly pDLBCL. The LDHD is highest in mDLBCL as well compared to CHL and pDLBCL.
Lets get ready to start a test on groups of genes using these research genes to predict class of the sample by these genes. We have to save the gene labels and make a class vector for the arrangement of the samples.
samples_rs <- researchGenes[,c(2:48)]
genes_rs <- researchGenes$Gene_ID
IDs <- colnames(researchGenes)[2:48]
IDs
## [1] "pDLBCL" "CHL" "pDLBCL.1" "mDLBCL" "CHL.1" "mDLBCL.1"
## [7] "pDLBCL.2" "CHL.2" "CHL.3" "CHL.4" "CHL.5" "mDLBCL.2"
## [13] "mDLBCL.3" "CHL.6" "CHL.7" "pDLBCL.3" "CHL.8" "mDLBCL.4"
## [19] "mDLBCL.5" "mDLBCL.6" "mDLBCL.7" "CHL.9" "mDLBCL.8" "CHL.10"
## [25] "CHL.11" "CHL.12" "CHL.13" "mDLBCL.9" "mDLBCL.10" "mDLBCL.11"
## [31] "mDLBCL.12" "mDLBCL.13" "mDLBCL.14" "pDLBCL.4" "pDLBCL.5" "mDLBCL.15"
## [37] "mDLBCL.16" "CHL.14" "pDLBCL.6" "pDLBCL.7" "CHL.15" "CHL.16"
## [43] "CHL.17" "mDLBCL.17" "mDLBCL.18" "mDLBCL.19" "CHL.18"
class <- c("pDLBCL" , "CHL" , "pDLBCL" , "mDLBCL" , "CHL" , "mDLBCL" , "pDLBCL" , "CHL" , "CHL" , "CHL" ,
"CHL" , "mDLBCL" , "mDLBCL" , "CHL" , "CHL" , "pDLBCL" , "CHL" , "mDLBCL" , "mDLBCL" , "mDLBCL" ,
"mDLBCL" , "CHL" , "mDLBCL" ,"CHL" , "CHL" , "CHL" , "CHL" , "mDLBCL" , "mDLBCL", "mDLBCL",
"mDLBCL", "mDLBCL" ,"mDLBCL" ,"pDLBCL" , "pDLBCL" , "mDLBCL" ,"mDLBCL" ,"CHL" , "pDLBCL" , "pDLBCL" ,
"CHL" , "CHL" , "CHL" , "mDLBCL" ,"mDLBCL" ,"mDLBCL" ,"CHL" )
rm(IDs)
unique(class)
## [1] "pDLBCL" "CHL" "mDLBCL"
Lets make our matrix.
sample_rs_df <- data.frame(t(samples_rs))
colnames(sample_rs_df) <- genes_rs
sample_rs_df$class <- as.factor(class)
sample_rs_df
## PTPRD PDCD1LG2 PAX5 MUM1 IFNG IDO1 ERP44
## pDLBCL 3.685317 4.634469 5.837732 1.878937 3.069225 5.266947 5.575510
## CHL 3.676430 2.942214 7.448931 2.237178 2.962287 3.515371 4.191834
## pDLBCL.1 3.148372 4.499253 6.307865 1.766060 3.226458 5.319546 5.138372
## mDLBCL 3.455512 4.373373 6.419925 2.484003 3.193519 3.651946 5.291534
## CHL.1 4.022412 3.864916 6.990574 2.135487 4.000244 3.497938 3.627553
## mDLBCL.1 3.541898 5.254167 7.070463 2.082015 2.865105 3.424882 5.344731
## pDLBCL.2 3.398471 4.465464 6.104317 2.482157 2.636234 3.835786 5.076654
## CHL.2 3.771869 4.698898 6.380601 2.270221 3.312958 3.445356 5.082100
## CHL.3 3.356006 4.789598 6.751569 2.262848 2.993484 4.282418 5.143249
## CHL.4 3.531764 4.302539 6.779292 2.694966 2.872059 3.533667 5.088958
## CHL.5 4.031001 4.900090 6.554107 2.766866 2.846098 3.440680 5.213799
## mDLBCL.2 3.221535 5.578819 6.658492 2.434437 1.954850 3.004267 5.620760
## mDLBCL.3 3.692095 3.659990 6.705532 2.699674 2.565927 3.535909 5.279476
## CHL.6 3.412819 4.314726 6.135404 2.744835 3.621671 3.842913 5.313366
## CHL.7 3.451064 3.479858 6.052747 2.223445 2.899106 3.281838 5.088203
## pDLBCL.3 2.983141 4.062027 7.398400 2.139963 3.404577 4.762571 5.496741
## CHL.8 4.329820 3.876076 6.762964 2.403510 2.003622 3.442793 5.562172
## mDLBCL.4 3.077683 4.935213 7.208099 4.337290 2.505606 3.189192 5.563635
## mDLBCL.5 3.609745 4.231856 7.431777 2.415194 2.953850 3.590060 5.504069
## mDLBCL.6 3.551329 4.578427 6.782725 2.250006 2.900375 3.672584 6.149064
## mDLBCL.7 3.633576 4.960384 7.397093 2.399275 2.973138 3.495786 5.632225
## CHL.9 3.063946 3.718218 6.606534 2.597851 2.899324 3.231478 5.176768
## mDLBCL.8 3.638433 4.949566 6.216256 2.173263 3.714553 4.702419 5.199758
## CHL.10 3.289788 4.854521 6.575761 2.680258 2.972220 3.412869 4.840189
## CHL.11 3.486482 4.865561 6.376813 2.245216 2.833512 3.270835 5.851499
## CHL.12 3.592392 6.170380 6.207869 2.768394 2.915523 3.817595 5.756560
## CHL.13 3.673980 4.249046 6.533770 2.852737 2.697077 3.442922 5.280367
## mDLBCL.9 3.394398 5.363083 7.032194 2.972367 2.293754 3.494170 6.078944
## mDLBCL.10 4.003065 3.558593 7.322739 1.893677 3.120178 4.035177 4.829168
## mDLBCL.11 3.024652 4.500945 6.940962 2.005839 2.215032 3.550920 5.336893
## mDLBCL.12 2.729431 5.675743 6.698119 2.835851 2.810134 4.298867 5.395473
## mDLBCL.13 3.280114 5.450906 6.779600 2.551476 2.879991 4.253456 6.052639
## mDLBCL.14 3.446065 5.200995 6.928266 2.777856 3.027688 3.812757 5.145139
## pDLBCL.4 3.111890 4.543541 6.501964 2.428017 2.902845 3.992336 5.364440
## pDLBCL.5 3.248538 3.932478 6.263106 2.205217 2.779238 4.760222 5.632315
## mDLBCL.15 2.647033 4.358680 7.318072 2.749662 2.458244 3.066835 5.464782
## mDLBCL.16 3.586893 4.855219 7.485727 2.434373 2.394065 3.501029 5.695070
## CHL.14 3.981202 4.211558 6.903905 2.015950 2.197446 3.652181 4.102102
## pDLBCL.6 3.500345 6.198815 6.627168 2.051298 3.340810 6.899326 6.122227
## pDLBCL.7 3.130425 6.192865 6.503495 2.847189 2.771015 6.879421 6.658610
## CHL.15 3.229043 4.723221 6.578960 2.935235 2.299081 3.116050 5.566924
## CHL.16 3.551180 4.134288 7.528055 2.763743 3.430004 3.261750 5.846060
## CHL.17 3.628847 4.129567 6.737099 2.836168 2.587612 3.407501 5.734322
## mDLBCL.17 3.120526 4.505849 6.622961 2.390182 2.950387 4.166414 6.061316
## mDLBCL.18 3.477699 4.412282 7.378854 2.305522 3.130588 3.411087 5.473001
## mDLBCL.19 3.912454 7.327919 6.642691 1.602243 2.376897 3.237192 5.232096
## CHL.18 3.289102 5.549601 6.153209 3.269919 3.542248 4.542451 6.237398
## CD5 CD274 BCL6 BCL2 LDHA LDHC LDHD
## pDLBCL 6.412200 6.521790 4.810390 6.988205 8.658361 3.985598 5.712537
## CHL 6.252281 4.592286 4.601292 7.230086 7.858679 4.007080 6.230099
## pDLBCL.1 6.460336 7.084118 4.573067 7.455283 9.184861 4.101672 5.258146
## mDLBCL 6.647232 6.452860 5.211272 7.019910 9.338661 3.650014 5.503446
## CHL.1 6.405831 4.696020 5.291846 7.822121 5.792496 4.342355 5.596182
## mDLBCL.1 6.283571 7.835426 5.040143 6.847939 8.716444 3.828057 5.653517
## pDLBCL.2 6.417821 6.744887 5.131215 7.239416 8.707534 4.128118 5.386853
## CHL.2 7.262511 6.579888 5.081345 7.108641 8.685312 3.997067 5.428130
## CHL.3 7.126876 6.194723 5.115395 7.002661 8.980201 4.064068 5.699283
## CHL.4 7.336942 6.055063 5.670942 7.059933 8.782031 3.970572 5.174769
## CHL.5 6.569752 6.050932 5.445840 7.129604 8.994080 4.475421 5.795505
## mDLBCL.2 6.542083 6.054614 5.290428 6.492504 10.007422 3.969665 5.112403
## mDLBCL.3 6.968191 5.597942 5.105497 7.272078 8.880994 4.494151 5.504082
## CHL.6 6.705105 7.242420 5.332240 6.981597 8.760310 4.522051 5.147836
## CHL.7 7.547240 6.261641 5.701903 7.263808 8.390140 3.688503 5.363676
## pDLBCL.3 7.051024 6.556098 5.345204 7.176817 9.195272 3.708710 5.116153
## CHL.8 7.066170 5.898913 4.730280 7.074783 8.636065 3.929166 5.299886
## mDLBCL.4 6.232854 7.673782 5.180383 7.098472 9.858830 3.244598 5.224443
## mDLBCL.5 6.860914 5.898791 5.566423 7.270708 9.411728 3.710451 5.223130
## mDLBCL.6 6.692568 5.837361 5.418009 6.945680 10.192753 3.895005 5.609946
## mDLBCL.7 6.852710 7.344261 5.424370 7.081180 9.538618 3.659041 5.521872
## CHL.9 6.962995 5.383059 5.429172 7.226607 8.203157 4.450271 5.581232
## mDLBCL.8 6.253627 7.616847 5.824775 7.124863 9.712842 4.151815 5.587457
## CHL.10 6.821408 7.047635 5.136576 7.394500 8.428529 3.789925 5.632588
## CHL.11 6.528702 5.557824 5.084341 7.110367 8.651220 3.863195 5.475959
## CHL.12 6.601854 7.383035 5.915606 7.105207 9.391049 3.386810 5.158768
## CHL.13 6.999369 6.014271 5.360682 7.400672 7.980798 3.950610 5.547694
## mDLBCL.9 6.485916 7.417413 4.993347 7.438141 9.063086 4.057919 5.761411
## mDLBCL.10 6.485993 5.027237 5.372846 7.411634 9.446182 4.283066 5.455434
## mDLBCL.11 6.806347 5.379237 5.262921 7.394885 9.497101 4.380149 5.684329
## mDLBCL.12 6.905681 6.765949 4.870469 6.901166 9.781190 3.909456 5.955431
## mDLBCL.13 6.881819 6.377471 5.052154 7.052345 8.907587 3.207274 5.252791
## mDLBCL.14 6.655850 6.982544 5.326902 7.315581 8.819691 3.748995 5.658986
## pDLBCL.4 6.892991 5.378472 5.232217 7.316012 8.458703 3.555433 5.531630
## pDLBCL.5 6.814038 6.466849 4.857462 6.972438 9.000184 3.570633 5.398580
## mDLBCL.15 6.671599 5.119697 5.320457 7.099695 9.675630 3.294096 5.464599
## mDLBCL.16 6.493284 6.647098 5.240318 7.610189 9.904595 3.421933 5.499535
## CHL.14 6.810164 5.499239 4.854063 6.991149 7.335124 3.944531 5.980378
## pDLBCL.6 6.559307 7.867803 5.539399 6.898820 9.761196 3.562440 5.465887
## pDLBCL.7 6.593189 7.101126 5.533159 6.885508 8.909913 3.005343 5.397123
## CHL.15 6.794859 5.486161 5.409903 7.072722 9.031017 3.439547 5.435433
## CHL.16 7.171274 5.100444 5.608524 7.482945 8.432458 3.338988 5.266639
## CHL.17 6.918259 6.914670 5.419001 7.374372 9.025153 3.597280 5.339224
## mDLBCL.17 6.452621 7.538983 5.043645 6.847151 9.456874 3.879847 5.475541
## mDLBCL.18 6.558975 6.055738 5.669209 7.066109 9.917845 3.894580 5.467432
## mDLBCL.19 6.462646 6.074863 4.830440 7.098906 8.877298 4.129958 5.556917
## CHL.18 6.943623 6.834273 4.973301 7.058475 9.037384 3.554003 5.245798
## class
## pDLBCL pDLBCL
## CHL CHL
## pDLBCL.1 pDLBCL
## mDLBCL mDLBCL
## CHL.1 CHL
## mDLBCL.1 mDLBCL
## pDLBCL.2 pDLBCL
## CHL.2 CHL
## CHL.3 CHL
## CHL.4 CHL
## CHL.5 CHL
## mDLBCL.2 mDLBCL
## mDLBCL.3 mDLBCL
## CHL.6 CHL
## CHL.7 CHL
## pDLBCL.3 pDLBCL
## CHL.8 CHL
## mDLBCL.4 mDLBCL
## mDLBCL.5 mDLBCL
## mDLBCL.6 mDLBCL
## mDLBCL.7 mDLBCL
## CHL.9 CHL
## mDLBCL.8 mDLBCL
## CHL.10 CHL
## CHL.11 CHL
## CHL.12 CHL
## CHL.13 CHL
## mDLBCL.9 mDLBCL
## mDLBCL.10 mDLBCL
## mDLBCL.11 mDLBCL
## mDLBCL.12 mDLBCL
## mDLBCL.13 mDLBCL
## mDLBCL.14 mDLBCL
## pDLBCL.4 pDLBCL
## pDLBCL.5 pDLBCL
## mDLBCL.15 mDLBCL
## mDLBCL.16 mDLBCL
## CHL.14 CHL
## pDLBCL.6 pDLBCL
## pDLBCL.7 pDLBCL
## CHL.15 CHL
## CHL.16 CHL
## CHL.17 CHL
## mDLBCL.17 mDLBCL
## mDLBCL.18 mDLBCL
## mDLBCL.19 mDLBCL
## CHL.18 CHL
Lets use random forest classifier to see how well these genes we found in the study predict the class of CHL, pDLBCL, or mDLBCL. We use the standard 80% training and 20% hold our validation testing set of data.
set.seed(123)
inTrain <- sample(1:47,.8*47)
training <- sample_rs_df[inTrain,]
testing <- sample_rs_df[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 15 16 6
There are 15 CHL, 16 mDLBCL, and 6 pDLBCL samples in the training set to build a random forest classifier with.
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 4 2
There are 4 CHL, 4 mDLBCL, and 2 pDLBCL samples to predict in our testing set.
rf <- randomForest(training[1:14],training$class, mtry=5, ntree=5000, confusion=T)
rf$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 11 3 1 0.2666667
## mDLBCL 4 12 0 0.2500000
## pDLBCL 4 1 1 0.8333333
The training model scored poor on the pDLBCL class by only predicting 1/6 classes correctly with most classes being predicted as CHL. The CHL class was 73% accurate by predicting 11/15 correctly with most wrong classifications as mDLBCL. The mDLBCL scored the best with 75% accuracty by predicting 12/16 correctly, with all incorrect predictions made as mDLBCL.
Lets see how well it learns and predicts on the testing model.
predicted <- predict(rf,testing)
results <- data.frame(predicted=predicted, actual=testing$class)
results
## predicted actual
## pDLBCL pDLBCL pDLBCL
## CHL CHL CHL
## mDLBCL.1 mDLBCL mDLBCL
## mDLBCL.6 mDLBCL mDLBCL
## mDLBCL.8 pDLBCL mDLBCL
## CHL.10 CHL CHL
## mDLBCL.13 mDLBCL mDLBCL
## pDLBCL.7 pDLBCL pDLBCL
## CHL.17 mDLBCL CHL
## CHL.18 pDLBCL CHL
It predicted 7/10 correctly. There were 2 pDLBCL, and all of those were predicted correctly with 100% accuracy. There were 4 mDLBCL samples, but 3/4 predicted correctly with 75% accuracy, while the 1/4 predicted as pDLBCL. There were 4 CHL and only 2/4 predicted correctly at 50% accuracy, and the other two CHL each predicted as either of mDLBCL or pDLBCL. This could be indicative of the overlap, but lets try using only the genes of IFNG, CD247, IDO1, PDCD1LG2, and PTPRD.
select_df <- sample_rs_df[,c(1,2,5,6,9,15)]
paged_table(select_df)
Lets keep the same inTrain sampling set but change data frames to our selected features.
training <- select_df[inTrain,]
testing <- select_df[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 15 16 6
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 4 2
rf_study5 <- randomForest(training[1:5], training$class, mtry=2, ntree=5000, confusion=T)
rf$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 11 3 1 0.2666667
## mDLBCL 4 12 0 0.2500000
## pDLBCL 4 1 1 0.8333333
Looks like a similar outcome in prediction with CHL and mDLBCL scoring better than pDLBCL classification. Lets see how well it predicts on the hold out set. There are also twice as many CHL and mDLBCL as the pDLBCL samples.
prediction <- predict(rf_study5, testing)
results <- data.frame(predicted=prediction, actual=testing$class)
results
## predicted actual
## pDLBCL pDLBCL pDLBCL
## CHL CHL CHL
## mDLBCL.1 mDLBCL mDLBCL
## mDLBCL.6 CHL mDLBCL
## mDLBCL.8 pDLBCL mDLBCL
## CHL.10 mDLBCL CHL
## mDLBCL.13 mDLBCL mDLBCL
## pDLBCL.7 pDLBCL pDLBCL
## CHL.17 CHL CHL
## CHL.18 pDLBCL CHL
The testing set scored an accuracy of 6/10 for 60% accuracy, worse than with all features using selected features of study. There were 2 pDLBCL samples all predicted correctly at 100%, but the CHL predicted 2/4 accuracy the same as other model with 1 mDLBCL and other pDLBCL. There were 4 mDLBCL samples and 2/4 predicted correctly with 1/4 predicted as pDLBCL and 1/4 predicted as CHL.
Lets see how well these genes predict the new 4 groups that the study mentioned. We have to get the study groups from the labels df earlier input.
labels
## pDLBCL CHL
## titleID GSM9163281_02_Clariom_S_Human_.CEL GSM9163282_03_Clariom_S_Human_.CEL
## GSM_ID GSM9163281 GSM9163282
## diagnosis diagnosis: EBV+ pDLBCL diagnosis: EBV+ CHL
## age 62 60
## gender male male
## group IFNG-H IFNG-L
## pDLBCL.1 mDLBCL
## titleID GSM9163283_06_Clariom_S_Human_.CEL GSM9163284_08_Clariom_S_Human_.CEL
## GSM_ID GSM9163283 GSM9163284
## diagnosis diagnosis: EBV+ pDLBCL diagnosis: EBV+ mDLBCL
## age 71 69
## gender male male
## group IFNG-H IFNG-L
## CHL.1 mDLBCL.1
## titleID GSM9163285_09_Clariom_S_Human_.CEL GSM9163286_10_Clariom_S_Human_.CEL
## GSM_ID GSM9163285 GSM9163286
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ mDLBCL
## age 67 75
## gender male female
## group IFNG-L 9p24.1-H
## pDLBCL.2 CHL.2
## titleID GSM9163287_11_Clariom_S_Human_.CEL GSM9163288_12_Clariom_S_Human_.CEL
## GSM_ID GSM9163287 GSM9163288
## diagnosis diagnosis: EBV+ pDLBCL diagnosis: EBV+ CHL
## age 84 72
## gender female male
## group IFNG-L IFNG-L
## CHL.3
## titleID GSM9163289_13_Clariom_S_Human_2.CEL
## GSM_ID GSM9163289
## diagnosis diagnosis: EBV+ CHL
## age 71
## gender male
## group 9p24.1-H
## CHL.4 CHL.5
## titleID GSM9163290_14_Clariom_S_Human_.CEL GSM9163291_15_Clariom_S_Human_.CEL
## GSM_ID GSM9163290 GSM9163291
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ CHL
## age 62 78
## gender male male
## group 9p24.1-H 9p24.1-H
## mDLBCL.2 mDLBCL.3
## titleID GSM9163292_16_Clariom_S_Human_.CEL GSM9163293_17_Clariom_S_Human_.CEL
## GSM_ID GSM9163292 GSM9163293
## diagnosis diagnosis: EBV+ mDLBCL diagnosis: EBV+ mDLBCL
## age 62 62
## gender male female
## group IFNG-L IS
## CHL.6 CHL.7
## titleID GSM9163294_19_Clariom_S_Human_.CEL GSM9163295_20_Clariom_S_Human_.CEL
## GSM_ID GSM9163294 GSM9163295
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ CHL
## age 74 51
## gender female male
## group IFNG-L IFNG-L
## pDLBCL.3 CHL.8
## titleID GSM9163296_21_Clariom_S_Human_.CEL GSM9163297_22_Clariom_S_Human_.CEL
## GSM_ID GSM9163296 GSM9163297
## diagnosis diagnosis: EBV+ pDLBCL diagnosis: EBV+ CHL
## age 71 60
## gender female male
## group IFNG-L IFNG-L
## mDLBCL.4 mDLBCL.5
## titleID GSM9163298_23_Clariom_S_Human_.CEL GSM9163299_24_Clariom_S_Human_.CEL
## GSM_ID GSM9163298 GSM9163299
## diagnosis diagnosis: EBV+ mDLBCL diagnosis: EBV+ mDLBCL
## age 84 50
## gender male male
## group IS IS
## mDLBCL.6 mDLBCL.7
## titleID GSM9163300_25_Clariom_S_Human_.CEL GSM9163301_26_Clariom_S_Human_.CEL
## GSM_ID GSM9163300 GSM9163301
## diagnosis diagnosis: EBV+ mDLBCL diagnosis: EBV+ mDLBCL
## age 81 76
## gender male female
## group IS IS
## CHL.9
## titleID GSM9163302_27_Clariom_S_Human_2.CEL
## GSM_ID GSM9163302
## diagnosis diagnosis: EBV+ CHL
## age 84
## gender male
## group IFNG-L
## mDLBCL.8 CHL.10
## titleID GSM9163303_29_Clariom_S_Human_.CEL GSM9163304_30_Clariom_S_Human_.CEL
## GSM_ID GSM9163303 GSM9163304
## diagnosis diagnosis: EBV+ mDLBCL diagnosis: EBV+ CHL
## age 89 83
## gender male female
## group IFNG-H 9p24.1-H
## CHL.11 CHL.12
## titleID GSM9163305_31_Clariom_S_Human_.CEL GSM9163306_32_Clariom_S_Human_.CEL
## GSM_ID GSM9163305 GSM9163306
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ CHL
## age 63 74
## gender male male
## group IFNG-L 9p24.1-H
## CHL.13 mDLBCL.9
## titleID GSM9163307_34_Clariom_S_Human_.CEL GSM9163308_35_Clariom_S_Human_.CEL
## GSM_ID GSM9163307 GSM9163308
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ mDLBCL
## age 77 74
## gender male male
## group 9p24.1-H IS
## mDLBCL.10
## titleID GSM9163309_36_Clariom_S_Human_.CEL
## GSM_ID GSM9163309
## diagnosis diagnosis: EBV+ mDLBCL
## age 86
## gender male
## group <NA>
## mDLBCL.11
## titleID GSM9163310_37_Clariom_S_Human_2.CEL
## GSM_ID GSM9163310
## diagnosis diagnosis: EBV+ mDLBCL
## age 60
## gender male
## group IS
## mDLBCL.12
## titleID GSM9163311_38_Clariom_S_Human_2.CEL
## GSM_ID GSM9163311
## diagnosis diagnosis: EBV+ mDLBCL
## age 81
## gender male
## group IFNG-L
## mDLBCL.13
## titleID GSM9163312_39_Clariom_S_Human_.CEL
## GSM_ID GSM9163312
## diagnosis diagnosis: EBV+ mDLBCL
## age 94
## gender female
## group IFNG-H
## mDLBCL.14
## titleID GSM9163313_40_Clariom_S_Human_2.CEL
## GSM_ID GSM9163313
## diagnosis diagnosis: EBV+ mDLBCL
## age 78
## gender male
## group 9p24.1-H
## pDLBCL.4 pDLBCL.5
## titleID GSM9163314_41_Clariom_S_Human_.CEL GSM9163315_42_Clariom_S_Human_.CEL
## GSM_ID GSM9163314 GSM9163315
## diagnosis diagnosis: EBV+ pDLBCL diagnosis: EBV+ pDLBCL
## age 67 85
## gender female female
## group IFNG-L IFNG-H
## mDLBCL.15 mDLBCL.16
## titleID GSM9163316_43_Clariom_S_Human_.CEL GSM9163317_44_Clariom_S_Human_.CEL
## GSM_ID GSM9163316 GSM9163317
## diagnosis diagnosis: EBV+ mDLBCL diagnosis: EBV+ mDLBCL
## age 71 82
## gender male male
## group IFNG-L IFNG-H
## CHL.14 pDLBCL.6
## titleID GSM9163318_45_Clariom_S_Human_.CEL GSM9163319_46_Clariom_S_Human_.CEL
## GSM_ID GSM9163318 GSM9163319
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ pDLBCL
## age 51 80
## gender male male
## group IFNG-L IFNG-H
## pDLBCL.7
## titleID GSM9163320_49_Clariom_S_Human_2.CEL
## GSM_ID GSM9163320
## diagnosis diagnosis: EBV+ pDLBCL
## age 74
## gender male
## group IFNG-H
## CHL.15 CHL.16
## titleID GSM9163321_50_Clariom_S_Human_.CEL GSM9163322_51_Clariom_S_Human_.CEL
## GSM_ID GSM9163321 GSM9163322
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ CHL
## age 66 59
## gender female female
## group IFNG-L IFNG-L
## CHL.17 mDLBCL.17
## titleID GSM9163323_52_Clariom_S_Human_.CEL GSM9163324_53_Clariom_S_Human_.CEL
## GSM_ID GSM9163323 GSM9163324
## diagnosis diagnosis: EBV+ CHL diagnosis: EBV+ mDLBCL
## age 79 76
## gender male male
## group 9p24.1-H IS
## mDLBCL.18 mDLBCL.19
## titleID GSM9163325_55_Clariom_S_Human_.CEL GSM9163326_56_Clariom_S_Human_.CEL
## GSM_ID GSM9163325 GSM9163326
## diagnosis diagnosis: EBV+ mDLBCL diagnosis: EBV+ mDLBCL
## age 73 79
## gender male male
## group IS IS
## CHL.18
## titleID GSM9163327_57_Clariom_S_Human_.CEL
## GSM_ID GSM9163327
## diagnosis diagnosis: EBV+ CHL
## age 62
## gender male
## group IFNG-H
labels_t <- data.frame(t(labels))
group <- labels_t$group
table(group)
## group
## 9p24.1-H IFNG-H IFNG-L IS
## 9 9 18 10
These are the 4 groups the study came up with, the IS is the mDLBCL class, the IFNG-H is pDLBCL, 9p24.1-H is CHL, and the IFNG-L is the transition state between pDLBCL and CHL moving from pDLBCL to CHL.
df_group <- sample_rs_df
df_group$class <- as.factor(group)
df_group
## PTPRD PDCD1LG2 PAX5 MUM1 IFNG IDO1 ERP44
## pDLBCL 3.685317 4.634469 5.837732 1.878937 3.069225 5.266947 5.575510
## CHL 3.676430 2.942214 7.448931 2.237178 2.962287 3.515371 4.191834
## pDLBCL.1 3.148372 4.499253 6.307865 1.766060 3.226458 5.319546 5.138372
## mDLBCL 3.455512 4.373373 6.419925 2.484003 3.193519 3.651946 5.291534
## CHL.1 4.022412 3.864916 6.990574 2.135487 4.000244 3.497938 3.627553
## mDLBCL.1 3.541898 5.254167 7.070463 2.082015 2.865105 3.424882 5.344731
## pDLBCL.2 3.398471 4.465464 6.104317 2.482157 2.636234 3.835786 5.076654
## CHL.2 3.771869 4.698898 6.380601 2.270221 3.312958 3.445356 5.082100
## CHL.3 3.356006 4.789598 6.751569 2.262848 2.993484 4.282418 5.143249
## CHL.4 3.531764 4.302539 6.779292 2.694966 2.872059 3.533667 5.088958
## CHL.5 4.031001 4.900090 6.554107 2.766866 2.846098 3.440680 5.213799
## mDLBCL.2 3.221535 5.578819 6.658492 2.434437 1.954850 3.004267 5.620760
## mDLBCL.3 3.692095 3.659990 6.705532 2.699674 2.565927 3.535909 5.279476
## CHL.6 3.412819 4.314726 6.135404 2.744835 3.621671 3.842913 5.313366
## CHL.7 3.451064 3.479858 6.052747 2.223445 2.899106 3.281838 5.088203
## pDLBCL.3 2.983141 4.062027 7.398400 2.139963 3.404577 4.762571 5.496741
## CHL.8 4.329820 3.876076 6.762964 2.403510 2.003622 3.442793 5.562172
## mDLBCL.4 3.077683 4.935213 7.208099 4.337290 2.505606 3.189192 5.563635
## mDLBCL.5 3.609745 4.231856 7.431777 2.415194 2.953850 3.590060 5.504069
## mDLBCL.6 3.551329 4.578427 6.782725 2.250006 2.900375 3.672584 6.149064
## mDLBCL.7 3.633576 4.960384 7.397093 2.399275 2.973138 3.495786 5.632225
## CHL.9 3.063946 3.718218 6.606534 2.597851 2.899324 3.231478 5.176768
## mDLBCL.8 3.638433 4.949566 6.216256 2.173263 3.714553 4.702419 5.199758
## CHL.10 3.289788 4.854521 6.575761 2.680258 2.972220 3.412869 4.840189
## CHL.11 3.486482 4.865561 6.376813 2.245216 2.833512 3.270835 5.851499
## CHL.12 3.592392 6.170380 6.207869 2.768394 2.915523 3.817595 5.756560
## CHL.13 3.673980 4.249046 6.533770 2.852737 2.697077 3.442922 5.280367
## mDLBCL.9 3.394398 5.363083 7.032194 2.972367 2.293754 3.494170 6.078944
## mDLBCL.10 4.003065 3.558593 7.322739 1.893677 3.120178 4.035177 4.829168
## mDLBCL.11 3.024652 4.500945 6.940962 2.005839 2.215032 3.550920 5.336893
## mDLBCL.12 2.729431 5.675743 6.698119 2.835851 2.810134 4.298867 5.395473
## mDLBCL.13 3.280114 5.450906 6.779600 2.551476 2.879991 4.253456 6.052639
## mDLBCL.14 3.446065 5.200995 6.928266 2.777856 3.027688 3.812757 5.145139
## pDLBCL.4 3.111890 4.543541 6.501964 2.428017 2.902845 3.992336 5.364440
## pDLBCL.5 3.248538 3.932478 6.263106 2.205217 2.779238 4.760222 5.632315
## mDLBCL.15 2.647033 4.358680 7.318072 2.749662 2.458244 3.066835 5.464782
## mDLBCL.16 3.586893 4.855219 7.485727 2.434373 2.394065 3.501029 5.695070
## CHL.14 3.981202 4.211558 6.903905 2.015950 2.197446 3.652181 4.102102
## pDLBCL.6 3.500345 6.198815 6.627168 2.051298 3.340810 6.899326 6.122227
## pDLBCL.7 3.130425 6.192865 6.503495 2.847189 2.771015 6.879421 6.658610
## CHL.15 3.229043 4.723221 6.578960 2.935235 2.299081 3.116050 5.566924
## CHL.16 3.551180 4.134288 7.528055 2.763743 3.430004 3.261750 5.846060
## CHL.17 3.628847 4.129567 6.737099 2.836168 2.587612 3.407501 5.734322
## mDLBCL.17 3.120526 4.505849 6.622961 2.390182 2.950387 4.166414 6.061316
## mDLBCL.18 3.477699 4.412282 7.378854 2.305522 3.130588 3.411087 5.473001
## mDLBCL.19 3.912454 7.327919 6.642691 1.602243 2.376897 3.237192 5.232096
## CHL.18 3.289102 5.549601 6.153209 3.269919 3.542248 4.542451 6.237398
## CD5 CD274 BCL6 BCL2 LDHA LDHC LDHD
## pDLBCL 6.412200 6.521790 4.810390 6.988205 8.658361 3.985598 5.712537
## CHL 6.252281 4.592286 4.601292 7.230086 7.858679 4.007080 6.230099
## pDLBCL.1 6.460336 7.084118 4.573067 7.455283 9.184861 4.101672 5.258146
## mDLBCL 6.647232 6.452860 5.211272 7.019910 9.338661 3.650014 5.503446
## CHL.1 6.405831 4.696020 5.291846 7.822121 5.792496 4.342355 5.596182
## mDLBCL.1 6.283571 7.835426 5.040143 6.847939 8.716444 3.828057 5.653517
## pDLBCL.2 6.417821 6.744887 5.131215 7.239416 8.707534 4.128118 5.386853
## CHL.2 7.262511 6.579888 5.081345 7.108641 8.685312 3.997067 5.428130
## CHL.3 7.126876 6.194723 5.115395 7.002661 8.980201 4.064068 5.699283
## CHL.4 7.336942 6.055063 5.670942 7.059933 8.782031 3.970572 5.174769
## CHL.5 6.569752 6.050932 5.445840 7.129604 8.994080 4.475421 5.795505
## mDLBCL.2 6.542083 6.054614 5.290428 6.492504 10.007422 3.969665 5.112403
## mDLBCL.3 6.968191 5.597942 5.105497 7.272078 8.880994 4.494151 5.504082
## CHL.6 6.705105 7.242420 5.332240 6.981597 8.760310 4.522051 5.147836
## CHL.7 7.547240 6.261641 5.701903 7.263808 8.390140 3.688503 5.363676
## pDLBCL.3 7.051024 6.556098 5.345204 7.176817 9.195272 3.708710 5.116153
## CHL.8 7.066170 5.898913 4.730280 7.074783 8.636065 3.929166 5.299886
## mDLBCL.4 6.232854 7.673782 5.180383 7.098472 9.858830 3.244598 5.224443
## mDLBCL.5 6.860914 5.898791 5.566423 7.270708 9.411728 3.710451 5.223130
## mDLBCL.6 6.692568 5.837361 5.418009 6.945680 10.192753 3.895005 5.609946
## mDLBCL.7 6.852710 7.344261 5.424370 7.081180 9.538618 3.659041 5.521872
## CHL.9 6.962995 5.383059 5.429172 7.226607 8.203157 4.450271 5.581232
## mDLBCL.8 6.253627 7.616847 5.824775 7.124863 9.712842 4.151815 5.587457
## CHL.10 6.821408 7.047635 5.136576 7.394500 8.428529 3.789925 5.632588
## CHL.11 6.528702 5.557824 5.084341 7.110367 8.651220 3.863195 5.475959
## CHL.12 6.601854 7.383035 5.915606 7.105207 9.391049 3.386810 5.158768
## CHL.13 6.999369 6.014271 5.360682 7.400672 7.980798 3.950610 5.547694
## mDLBCL.9 6.485916 7.417413 4.993347 7.438141 9.063086 4.057919 5.761411
## mDLBCL.10 6.485993 5.027237 5.372846 7.411634 9.446182 4.283066 5.455434
## mDLBCL.11 6.806347 5.379237 5.262921 7.394885 9.497101 4.380149 5.684329
## mDLBCL.12 6.905681 6.765949 4.870469 6.901166 9.781190 3.909456 5.955431
## mDLBCL.13 6.881819 6.377471 5.052154 7.052345 8.907587 3.207274 5.252791
## mDLBCL.14 6.655850 6.982544 5.326902 7.315581 8.819691 3.748995 5.658986
## pDLBCL.4 6.892991 5.378472 5.232217 7.316012 8.458703 3.555433 5.531630
## pDLBCL.5 6.814038 6.466849 4.857462 6.972438 9.000184 3.570633 5.398580
## mDLBCL.15 6.671599 5.119697 5.320457 7.099695 9.675630 3.294096 5.464599
## mDLBCL.16 6.493284 6.647098 5.240318 7.610189 9.904595 3.421933 5.499535
## CHL.14 6.810164 5.499239 4.854063 6.991149 7.335124 3.944531 5.980378
## pDLBCL.6 6.559307 7.867803 5.539399 6.898820 9.761196 3.562440 5.465887
## pDLBCL.7 6.593189 7.101126 5.533159 6.885508 8.909913 3.005343 5.397123
## CHL.15 6.794859 5.486161 5.409903 7.072722 9.031017 3.439547 5.435433
## CHL.16 7.171274 5.100444 5.608524 7.482945 8.432458 3.338988 5.266639
## CHL.17 6.918259 6.914670 5.419001 7.374372 9.025153 3.597280 5.339224
## mDLBCL.17 6.452621 7.538983 5.043645 6.847151 9.456874 3.879847 5.475541
## mDLBCL.18 6.558975 6.055738 5.669209 7.066109 9.917845 3.894580 5.467432
## mDLBCL.19 6.462646 6.074863 4.830440 7.098906 8.877298 4.129958 5.556917
## CHL.18 6.943623 6.834273 4.973301 7.058475 9.037384 3.554003 5.245798
## class
## pDLBCL IFNG-H
## CHL IFNG-L
## pDLBCL.1 IFNG-H
## mDLBCL IFNG-L
## CHL.1 IFNG-L
## mDLBCL.1 9p24.1-H
## pDLBCL.2 IFNG-L
## CHL.2 IFNG-L
## CHL.3 9p24.1-H
## CHL.4 9p24.1-H
## CHL.5 9p24.1-H
## mDLBCL.2 IFNG-L
## mDLBCL.3 IS
## CHL.6 IFNG-L
## CHL.7 IFNG-L
## pDLBCL.3 IFNG-L
## CHL.8 IFNG-L
## mDLBCL.4 IS
## mDLBCL.5 IS
## mDLBCL.6 IS
## mDLBCL.7 IS
## CHL.9 IFNG-L
## mDLBCL.8 IFNG-H
## CHL.10 9p24.1-H
## CHL.11 IFNG-L
## CHL.12 9p24.1-H
## CHL.13 9p24.1-H
## mDLBCL.9 IS
## mDLBCL.10 <NA>
## mDLBCL.11 IS
## mDLBCL.12 IFNG-L
## mDLBCL.13 IFNG-H
## mDLBCL.14 9p24.1-H
## pDLBCL.4 IFNG-L
## pDLBCL.5 IFNG-H
## mDLBCL.15 IFNG-L
## mDLBCL.16 IFNG-H
## CHL.14 IFNG-L
## pDLBCL.6 IFNG-H
## pDLBCL.7 IFNG-H
## CHL.15 IFNG-L
## CHL.16 IFNG-L
## CHL.17 9p24.1-H
## mDLBCL.17 IS
## mDLBCL.18 IS
## mDLBCL.19 IS
## CHL.18 IFNG-H
There is a problem in this grouping because there is an NA at row 29, so we need to change the group to be the label it is instead of removing it. It is labeled mDLBCL.
df_group$class[29] <- as.factor("IS")
Lets now predict the class as one of the 4 groups using the research study genes.
training <- df_group[inTrain,]
testing <- df_group[-inTrain,]
table(training$class)
##
## 9p24.1-H IFNG-H IFNG-L IS
## 6 4 17 10
table(testing$class)
##
## 9p24.1-H IFNG-H IFNG-L IS
## 3 5 1 1
rf_group4 <- randomForest(training[1:14], training$class, mtry=5, ntree=5000, confusion=T)
rf_group4$confusion
## 9p24.1-H IFNG-H IFNG-L IS class.error
## 9p24.1-H 0 0 3 3 1.0000000
## IFNG-H 0 0 1 3 1.0000000
## IFNG-L 0 0 13 4 0.2352941
## IS 0 0 6 4 0.6000000
Using these genes the error was huge in predicting a 4 class problem, but random forest is always best with a 2 class or low class prediction, also with tuning the model it helps. None predicted accuratly for the 9p24.1-H or IFNG-H which are CHL and pDLBCL respectively. All CHL predicted as the transition state of IFNG-L or as mDLBCL or IS. The best performing class is the IFNG-L or transition state with 13/17 predicted accurately with 76% accuracy. The next best is the IS or mDLBCL class with 6/10 correctly predicted with 60% accuracy.
But lets see how well it predicts the hold out set.
prediction <- predict(rf_group4,testing)
results <- data.frame(predicted=prediction, actual=testing$class)
results
## predicted actual
## pDLBCL IFNG-L IFNG-H
## CHL IFNG-L IFNG-L
## mDLBCL.1 IFNG-L 9p24.1-H
## mDLBCL.6 IS IS
## mDLBCL.8 IS IFNG-H
## CHL.10 IFNG-L 9p24.1-H
## mDLBCL.13 IFNG-L IFNG-H
## pDLBCL.7 IFNG-H IFNG-H
## CHL.17 IS 9p24.1-H
## CHL.18 IFNG-L IFNG-H
There were 3/10 correctly predicted with 30% accuracy in predicting the group of the lymphoma. The best performing group predicted correctly was the IFNG-L with 1/1 correctly predicted, and also for IS with 1/1 correctly predicted. None of the 9p24.1-H were predicted correctly with 0/3 score with 2/3 predicted as IFNG-L and the other as IS. The IFNG-H group had a score of 1/5 for 20% accuracy as 3/5 predicted as IFNG-L and 1/5 predicted as IS. This does show how the transition state of IFNG-L is a group that CHL and pDLBCL lymphomas transition to as that is the reason these 2 lymphomas were not predicted well.
Next we will explore the other genes by the topGenes2 table that are in the subset groups of this project using these research genes as well as the other genes specific to top genes in this project with top 10 over expressed in the group avg/group median and top 10 under expressed the same well and that also had a gene in the features table that matched up with the Affymetrix probe IDs extracted from.
topGenes2 <- write.csv(topGenes2, 'topGenes2.csv', row.names=F)
You can get the topGenes2 table here
Thanks and keep checking in.
==============================================================
***** Part 5
In this part we will read in the the topGenes2 data and start our machine learning analysis on the groups and subgroup top genes. We have to grep each sample to each group in the importance column.
We will also see how well select genes can predict the gender or age group they seemed to be specific to.
Some other features to check out that we noted with the study genes.
BCL2 is the only gene that has over estimation in all males but not females.
PTPRD, it seems to be high or over estimated only in the CHL and pDLBCL for males and also females, but not in the mDLBCL for either gender.
BCL2 is only elevated in both age groups of CHL and only the older than 72 years of age group of both types DLBCL.
PDL2 is over estimated in mDLBCL and CHL both age groups
PDL1 is over estimated in the young with CHL or mDLBCL but the old with pDLBCL.
The PTPRD gene is over expressed only in younger than 72 years of age group with CHL or pDLBCL. We can use PTPRD to predict age
We can use CD247 (PDL1) and PDCD1LG2 (PDL2) genes to predict gender.
Lets see if we can predict gender by BCL2 gene and the PTPRD gene to predict CHL or pDLBCL as a class or mDLBCL.
We can test that out. We need the labels table.
library(rmarkdown)
library(randomForest)
labels <- read.csv("compare_df_6labels_47samples.csv", header=T, row.names=1)
paged_table(labels)
We also need the topGenes2 table.
topGenes <- read.csv("topGenes2.csv", header=T)
str(topGenes)
## 'data.frame': 87 obs. of 96 variables:
## $ ID : chr "TC0300013532.hg.1" "TC1200008790.hg.1" "TC0400010896.hg.1" "TC0100014340.hg.1" ...
## $ pDLBCL : num 3.39 3 1.79 3.68 3.35 ...
## $ CHL : num 3.02 3.33 2.26 2.55 3.46 ...
## $ pDLBCL.1 : num 3.51 2.56 1.72 3.62 2.74 ...
## $ mDLBCL : num 6.55 5.31 1.85 3.43 2.78 ...
## $ CHL.1 : num 2.96 3.3 1.83 3.45 3.25 ...
## $ mDLBCL.1 : num 5.33 3.25 1.69 3.18 2.89 ...
## $ pDLBCL.2 : num 2.36 3.84 2.79 3.3 5.31 ...
## $ CHL.2 : num 2.69 5.35 1.51 3.04 3.06 ...
## $ CHL.3 : num 2.4 5.33 2.14 2.93 3.1 ...
## $ CHL.4 : num 3.04 4.73 2.6 3.12 3.26 ...
## $ CHL.5 : num 3.64 5.58 2.04 2.81 3.19 ...
## $ mDLBCL.2 : num 2.66 5.71 2 2.85 3.11 ...
## $ mDLBCL.3 : num 2.53 4.45 2.28 3.76 5.02 ...
## $ CHL.6 : num 2.44 5.32 1.98 2.38 3.4 ...
## $ CHL.7 : num 2.65 4.73 2.23 2.91 3.06 ...
## $ pDLBCL.3 : num 2.21 5.11 1.84 3.26 3.11 ...
## $ CHL.8 : num 2.58 3.84 2.64 2.84 3.81 ...
## $ mDLBCL.4 : num 2.39 4.29 1.61 2.95 2.94 ...
## $ mDLBCL.5 : num 2.14 5.46 1.95 2.49 3.59 ...
## $ mDLBCL.6 : num 2.6 4.91 2.07 2.71 3.27 ...
## $ mDLBCL.7 : num 2.63 4.45 1.43 2.79 3.33 ...
## $ CHL.9 : num 2.07 4.21 1.64 2.94 2.88 ...
## $ mDLBCL.8 : num 3.14 4.45 1.91 3.03 3.22 ...
## $ CHL.10 : num 2.18 3.62 1.56 3.29 3.1 ...
## $ CHL.11 : num 2.18 4.93 1.68 2.63 3.45 ...
## $ CHL.12 : num 2.21 5.36 1.73 2.84 3.51 ...
## $ CHL.13 : num 2.81 3.97 1.75 2.73 3.16 ...
## $ mDLBCL.9 : num 2.14 4.89 1.92 3.14 3.19 ...
## $ mDLBCL.10 : num 2.87 3.82 1.98 2.76 4.41 ...
## $ mDLBCL.11 : num 2.46 3.52 1.67 3.15 3.48 ...
## $ mDLBCL.12 : num 2.36 4.89 1.99 3.02 3.56 ...
## $ mDLBCL.13 : num 2.51 5.89 3.52 5.52 5.07 ...
## $ mDLBCL.14 : num 2.05 4.44 1.78 2.89 2.96 ...
## $ pDLBCL.4 : num 1.98 5.49 3.19 4.36 6.15 ...
## $ pDLBCL.5 : num 2 4.96 5.2 6.58 7.81 ...
## $ mDLBCL.15 : num 2.34 5.86 3.17 3.74 6.56 ...
## $ mDLBCL.16 : num 2.35 5.41 2.01 2.53 3.33 ...
## $ CHL.14 : num 2.1 3.26 1.95 3.18 3.33 ...
## $ pDLBCL.6 : num 2.44 5.32 1.52 2.68 3.06 ...
## $ pDLBCL.7 : num 2.11 6.16 1.79 2.66 2.99 ...
## $ CHL.15 : num 2.65 5.96 1.67 2.94 2.8 ...
## $ CHL.16 : num 2.67 5.93 1.75 2.92 3.44 ...
## $ CHL.17 : num 2.44 4.97 1.74 3.19 3.25 ...
## $ mDLBCL.17 : num 1.96 5.32 1.81 5.21 3.91 ...
## $ mDLBCL.18 : num 2.34 5.66 2.74 4.54 5.68 ...
## $ mDLBCL.19 : num 2.51 4.31 2.11 3.21 3.21 ...
## $ CHL.18 : num 2.64 6.22 1.88 2.41 3.18 ...
## $ CHL_mean : num 2.6 4.73 1.93 2.9 3.25 ...
## $ pDLBCL_mean : num 2.5 4.56 2.48 3.77 4.32 ...
## $ mDLBCL_mean : num 2.79 4.81 2.07 3.35 3.78 ...
## $ CHL_x_mean : num 2.48 5.21 1.74 2.88 3.18 ...
## $ mDLBCL_x_mean : num 3.25 4.51 2.23 3.81 4.08 ...
## $ pDLBCL_x_mean : num 2.14 4.85 3.26 4.38 5.6 ...
## $ CHL_y_mean : num 2.63 4.61 1.97 2.91 3.26 ...
## $ mDLBCL_y_mean : num 2.68 4.89 2.04 3.23 3.7 ...
## $ pDLBCL_y_mean : num 2.86 4.26 1.7 3.16 3.04 ...
## $ CHL_young72_mean : num 2.63 4.74 2.01 2.91 3.27 ...
## $ mDLBCL_young72_mean : num 3.11 5.05 2.15 3.23 4.09 ...
## $ pDLBCL_young72_mean : num 2.77 4.04 2.13 3.73 3.84 ...
## $ CHL_old : num 2.54 4.72 1.78 2.88 3.21 ...
## $ mDLBCL_old : num 2.66 4.71 2.04 3.39 3.64 ...
## $ pDLBCL_old : num 2.23 5.07 2.83 3.81 4.79 ...
## $ CHL_median : num 2.64 4.93 1.83 2.92 3.25 ...
## $ mDLBCL_median : num 2.48 4.89 1.97 3.09 3.33 ...
## $ pDLBCL_median : num 2.28 5.03 1.81 3.46 3.23 ...
## $ CHL_x_median : num 2.54 5.63 1.71 2.93 3.25 ...
## $ mDLBCL_x_median : num 2.58 4.45 1.98 3.47 4.17 ...
## $ pDLBCL_x_median : num 2.1 5.03 2.99 3.83 5.73 ...
## $ CHL_y_median : num 2.64 4.73 1.88 2.91 3.25 ...
## $ mDLBCL_y_median : num 2.37 4.9 1.97 3.03 3.3 ...
## $ pDLBCL_y_median : num 2.92 4.16 1.75 3.15 3.03 ...
## $ CHL_young72_median : num 2.65 4.83 1.92 2.93 3.25 ...
## $ mDLBCL_young72_median: num 2.49 5.38 1.98 3.29 3.54 ...
## $ pDLBCL_young72_median: num 2.8 4.06 1.81 3.65 3.23 ...
## $ CHL_old72_median : num 2.44 4.97 1.74 2.84 3.19 ...
## $ mDLBCL_old72_median : num 2.45 4.67 1.95 3.03 3.3 ...
## $ pDLBCL_old72_median : num 2.23 5.14 2.29 2.99 4.19 ...
## $ CHL_change : num 0.983 0.96 1.053 0.993 0.999 ...
## $ pDLBCL_change : num 1.094 0.905 1.367 1.09 1.335 ...
## $ mDLBCL_change : num 1.124 0.985 1.055 1.084 1.134 ...
## $ CHL_x_change : num 0.976 0.926 1.018 0.983 0.98 ...
## $ CHL_y_change : num 0.995 0.974 1.052 0.999 1.004 ...
## $ pDLBCL_x_change : num 1.016 0.963 1.089 1.143 0.976 ...
## $ pDLBCL_y_change : num 0.981 1.024 0.972 1.004 1.003 ...
## $ mDLBCL_x_change : num 1.26 1.014 1.123 1.098 0.977 ...
## $ mDLBCL_y_change : num 1.129 0.998 1.036 1.066 1.122 ...
## $ CHL_old72_change : num 1.043 0.949 1.024 1.016 1.007 ...
## $ CHL_young72_change : num 0.993 0.982 1.05 0.994 1.003 ...
## $ pDLBCL_old_change : num 0.997 0.986 1.235 1.273 1.145 ...
## $ pDLBCL_young72_change: num 0.99 0.996 1.177 1.022 1.188 ...
## $ mDLBCL_young72_change: num 1.248 0.938 1.089 0.984 1.157 ...
## $ mDLBCL_old72_change : num 1.09 1.01 1.05 1.12 1.1 ...
## $ SPOT_ID.1 : chr "NM_198152 // RefSeq // Homo sapiens urotensin 2B (UTS2B), mRNA. // chr3 // 100 // 100 // 0 // --- // 0 /// ENST"| __truncated__ "NM_001301175 // RefSeq // Homo sapiens ubiquitin specific peptidase 30 (USP30), transcript variant 2, mRNA. // "| __truncated__ "NM_001114387 // RefSeq // Homo sapiens transmembrane protease, serine 11A (TMPRSS11A), transcript variant 2, mR"| __truncated__ "NM_002353 // RefSeq // Homo sapiens tumor-associated calcium signal transducer 2 (TACSTD2), mRNA. // chr1 // 10"| __truncated__ ...
## $ Gene_ID : chr "UTS2B" "USP30" "TMPRSS11A" "TACSTD2" ...
## $ importance : chr "There were 8 genes found in the data of mDLBCL younger than 72 years of age genes to match any of the 20 probe "| __truncated__ "top gene pDLBCL avg/median group values" "top gene pDLBCL avg/median group values" "There were 7 genes found in the data of pDLBCL older than 72 years of age genes to match any of the 20 probe ID"| __truncated__ ...
paged_table(topGenes[1:10,])
lets get the samples that are male and female. These are integer values for index where a female or male is.
labels_t <- data.frame(t(labels))
females <- grep('female', labels_t$gender)
males <- grep('^male*', labels_t$gender)
gender <- "gender"
gender[females] <- "female"
gender[males] <- "male"
gender
## [1] "male" "male" "male" "male" "male" "female" "female" "male"
## [9] "male" "male" "male" "male" "female" "female" "male" "female"
## [17] "male" "male" "male" "male" "female" "male" "male" "female"
## [25] "male" "male" "male" "male" "male" "male" "male" "female"
## [33] "male" "female" "female" "male" "male" "male" "male" "male"
## [41] "female" "female" "male" "male" "male" "male" "male"
Lets get the samples that are by type of diagnosis to use PTPRD gene to predict a class of CHL or pDLBCL and a different class of mDLBCL.
CHL <- grep('CHL',labels_t$diagnosis)
pDLBCL <- grep('pDLBCL', labels_t$diagnosis)
mDLBCL <- grep('mDLBCL', labels_t$diagnosis)
diagnosis <- 'diagnosis'
diagnosis[c(CHL,pDLBCL)] <- 'CHL or pDLBCL'
diagnosis[mDLBCL] <- 'mDLBCL'
diagnosis
## [1] "CHL or pDLBCL" "CHL or pDLBCL" "CHL or pDLBCL" "mDLBCL"
## [5] "CHL or pDLBCL" "mDLBCL" "CHL or pDLBCL" "CHL or pDLBCL"
## [9] "CHL or pDLBCL" "CHL or pDLBCL" "CHL or pDLBCL" "mDLBCL"
## [13] "mDLBCL" "CHL or pDLBCL" "CHL or pDLBCL" "CHL or pDLBCL"
## [17] "CHL or pDLBCL" "mDLBCL" "mDLBCL" "mDLBCL"
## [21] "mDLBCL" "CHL or pDLBCL" "mDLBCL" "CHL or pDLBCL"
## [25] "CHL or pDLBCL" "CHL or pDLBCL" "CHL or pDLBCL" "mDLBCL"
## [29] "mDLBCL" "mDLBCL" "mDLBCL" "mDLBCL"
## [33] "mDLBCL" "CHL or pDLBCL" "CHL or pDLBCL" "mDLBCL"
## [37] "mDLBCL" "CHL or pDLBCL" "CHL or pDLBCL" "CHL or pDLBCL"
## [41] "CHL or pDLBCL" "CHL or pDLBCL" "CHL or pDLBCL" "mDLBCL"
## [45] "mDLBCL" "mDLBCL" "CHL or pDLBCL"
table(diagnosis)
## diagnosis
## CHL or pDLBCL mDLBCL
## 27 20
We are going to see if the PTPRD gene can predict diagnosis with a 2 class model, and if the BCL2 gene can predict gender of a 2 class model within all samples.
colnames(topGenes)
## [1] "ID" "pDLBCL" "CHL"
## [4] "pDLBCL.1" "mDLBCL" "CHL.1"
## [7] "mDLBCL.1" "pDLBCL.2" "CHL.2"
## [10] "CHL.3" "CHL.4" "CHL.5"
## [13] "mDLBCL.2" "mDLBCL.3" "CHL.6"
## [16] "CHL.7" "pDLBCL.3" "CHL.8"
## [19] "mDLBCL.4" "mDLBCL.5" "mDLBCL.6"
## [22] "mDLBCL.7" "CHL.9" "mDLBCL.8"
## [25] "CHL.10" "CHL.11" "CHL.12"
## [28] "CHL.13" "mDLBCL.9" "mDLBCL.10"
## [31] "mDLBCL.11" "mDLBCL.12" "mDLBCL.13"
## [34] "mDLBCL.14" "pDLBCL.4" "pDLBCL.5"
## [37] "mDLBCL.15" "mDLBCL.16" "CHL.14"
## [40] "pDLBCL.6" "pDLBCL.7" "CHL.15"
## [43] "CHL.16" "CHL.17" "mDLBCL.17"
## [46] "mDLBCL.18" "mDLBCL.19" "CHL.18"
## [49] "CHL_mean" "pDLBCL_mean" "mDLBCL_mean"
## [52] "CHL_x_mean" "mDLBCL_x_mean" "pDLBCL_x_mean"
## [55] "CHL_y_mean" "mDLBCL_y_mean" "pDLBCL_y_mean"
## [58] "CHL_young72_mean" "mDLBCL_young72_mean" "pDLBCL_young72_mean"
## [61] "CHL_old" "mDLBCL_old" "pDLBCL_old"
## [64] "CHL_median" "mDLBCL_median" "pDLBCL_median"
## [67] "CHL_x_median" "mDLBCL_x_median" "pDLBCL_x_median"
## [70] "CHL_y_median" "mDLBCL_y_median" "pDLBCL_y_median"
## [73] "CHL_young72_median" "mDLBCL_young72_median" "pDLBCL_young72_median"
## [76] "CHL_old72_median" "mDLBCL_old72_median" "pDLBCL_old72_median"
## [79] "CHL_change" "pDLBCL_change" "mDLBCL_change"
## [82] "CHL_x_change" "CHL_y_change" "pDLBCL_x_change"
## [85] "pDLBCL_y_change" "mDLBCL_x_change" "mDLBCL_y_change"
## [88] "CHL_old72_change" "CHL_young72_change" "pDLBCL_old_change"
## [91] "pDLBCL_young72_change" "mDLBCL_young72_change" "mDLBCL_old72_change"
## [94] "SPOT_ID.1" "Gene_ID" "importance"
BCL2 <- topGenes[grep('BCL2', topGenes$Gene_ID),c(2:48,95)]
PTPRD<- topGenes[grep('PTPRD', topGenes$Gene_ID),c(2:48,95)]
PTPRD
## pDLBCL CHL pDLBCL.1 mDLBCL CHL.1 mDLBCL.1 pDLBCL.2 CHL.2
## 22 3.685317 3.67643 3.148372 3.455512 4.022412 3.541898 3.398471 3.771869
## CHL.3 CHL.4 CHL.5 mDLBCL.2 mDLBCL.3 CHL.6 CHL.7 pDLBCL.3
## 22 3.356006 3.531764 4.031001 3.221535 3.692095 3.412819 3.451064 2.983141
## CHL.8 mDLBCL.4 mDLBCL.5 mDLBCL.6 mDLBCL.7 CHL.9 mDLBCL.8 CHL.10
## 22 4.32982 3.077683 3.609745 3.551329 3.633576 3.063946 3.638433 3.289788
## CHL.11 CHL.12 CHL.13 mDLBCL.9 mDLBCL.10 mDLBCL.11 mDLBCL.12 mDLBCL.13
## 22 3.486482 3.592392 3.67398 3.394398 4.003065 3.024652 2.729431 3.280114
## mDLBCL.14 pDLBCL.4 pDLBCL.5 mDLBCL.15 mDLBCL.16 CHL.14 pDLBCL.6 pDLBCL.7
## 22 3.446065 3.11189 3.248538 2.647033 3.586893 3.981202 3.500345 3.130425
## CHL.15 CHL.16 CHL.17 mDLBCL.17 mDLBCL.18 mDLBCL.19 CHL.18 Gene_ID
## 22 3.229043 3.55118 3.628847 3.120526 3.477699 3.912454 3.289102 PTPRD
PTPRD_t <- data.frame(t(PTPRD[1:47]))
colnames(PTPRD_t) <- "PTPRD"
PTPRD_t$class <- as.factor(diagnosis)
paged_table(PTPRD_t)
test the 2 class model with PTPRD gene that is another gene along 9p24.1 loci of high variation in CHL.
set.seed(123)
inTrain <- sample(1:47,.8*47)
training <- PTPRD_t[inTrain,]
testing <- PTPRD_t[-inTrain,]
table(training$class)
##
## CHL or pDLBCL mDLBCL
## 21 16
table(testing$class)
##
## CHL or pDLBCL mDLBCL
## 6 4
rf_PTPRD <- randomForest(training[1],training$class, ntree=5000, confusion=T)
rf_PTPRD$confusion
## CHL or pDLBCL mDLBCL class.error
## CHL or pDLBCL 8 13 0.6190476
## mDLBCL 13 3 0.8125000
Not very good at predicting the class in a 2 class model with high error. Lets see how well the model does on predicting the hold out set.
prediction_PTPRD <- predict(rf_PTPRD,testing)
result <- data.frame(predicted=prediction_PTPRD, actual=testing$class)
result
## predicted actual
## pDLBCL mDLBCL CHL or pDLBCL
## CHL CHL or pDLBCL CHL or pDLBCL
## mDLBCL.1 CHL or pDLBCL mDLBCL
## mDLBCL.6 CHL or pDLBCL mDLBCL
## mDLBCL.8 mDLBCL mDLBCL
## CHL.10 CHL or pDLBCL CHL or pDLBCL
## mDLBCL.13 CHL or pDLBCL mDLBCL
## pDLBCL.7 mDLBCL CHL or pDLBCL
## CHL.17 mDLBCL CHL or pDLBCL
## CHL.18 CHL or pDLBCL CHL or pDLBCL
Not very good as well, There were 6/10 incorrect for 40% accuracy over all. That is 3/6 for 50% accuracy in the CHL or pDLBCL class, and a 1/4 for 25% accuracy in the mDLBCL class.
Turns out that the PTPRD gene isn’t very good at predicting the class of lymphoma.
Lets now see if BCL2 is good at predicting gender.
BCL2_t <- data.frame(t(BCL2[1:47]))
colnames(BCL2_t) <- 'BCL2'
BCL2_t$class <- as.factor(gender)
paged_table(BCL2_t)
table(BCL2_t$class)
##
## female male
## 12 35
There are nearly 3 x the males as there are females.
set.seed(123)
inTrain <- sample(1:47, .8*47)
training <- BCL2_t[inTrain,]
testing <- BCL2_t[-inTrain,]
table(training$class)
##
## female male
## 9 28
table(testing$class)
##
## female male
## 3 7
rf_BCL2 <- randomForest(training[1],training$class, mtry=1, ntree=5000, confusion=T)
rf_BCL2$confusion
## female male class.error
## female 2 7 0.7777778
## male 6 22 0.2142857
The female had a 22% accuracy while the males were predicted with 78% accuracy in the training model. Lets see how well it predicts the hold out 20% of samples by gender.
predict_gender <- predict(rf_BCL2, testing)
result <- data.frame(prediction=predict_gender, actual=testing$class)
result
## prediction actual
## pDLBCL male male
## CHL male male
## mDLBCL.1 male female
## mDLBCL.6 female male
## mDLBCL.8 male male
## CHL.10 male female
## mDLBCL.13 male female
## pDLBCL.7 male male
## CHL.17 male male
## CHL.18 male male
Not too bad. It scored 6/10 correct with 60% accuracy in predicting gender, while 4/10 were incorrectly predicted. females were all incorrectly predicted with 0/3 or 0% accuracy, while 6/7 males were predicted correctly with 85% accuracy. It could be that BCL2 is a gene more associated with age. But could also be that there were 3x more males to train model on than females with 1/3 as many male samples.
Now we can leave the study genes alone that looked like they might be more relevant to gender or age group within or exclusive to the standard classification of large B-cell lymphoma.
Lets see by gender if we can get better at predicting class of lymphoma if we use only the males or females. And the same for the age group.
df <- topGenes[,c(2:48,95)]
males_df <- df[,c(males,48)]
CHL_m <- grep('CHL', colnames(males_df))
pDLBCL_m <- grep('pDLBCL', colnames(males_df))
mDLBCL_m <- grep('mDLBCL', colnames(males_df))
dx_m <- 'dx'
dx_m[CHL_m] <- 'CHL'
dx_m[pDLBCL_m] <- 'pDLBCL'
dx_m[mDLBCL_m] <- 'mDLBCL'
dx_m
## [1] "pDLBCL" "CHL" "pDLBCL" "mDLBCL" "CHL" "CHL" "CHL" "CHL"
## [9] "CHL" "mDLBCL" "CHL" "CHL" "mDLBCL" "mDLBCL" "mDLBCL" "CHL"
## [17] "mDLBCL" "CHL" "CHL" "CHL" "mDLBCL" "mDLBCL" "mDLBCL" "mDLBCL"
## [25] "mDLBCL" "mDLBCL" "mDLBCL" "CHL" "pDLBCL" "pDLBCL" "CHL" "mDLBCL"
## [33] "mDLBCL" "mDLBCL" "CHL"
paged_table(males_df)
Lets grep genes for list of genes in ‘and males’ from topGenes$importance
male_gene_index <- grep('and male', topGenes$importance)
genes_m <- topGenes$Gene_ID[male_gene_index]
genes_m
## [1] "SPRR1B" "SMPX" "MAL2" "LOC389834" "FABP4" "DSG3"
## [7] "CT45A6" "CT45A10" "CLDN10" "CHIT1"
The male data set of genes of importance to predict diagnosis of the 3 standard classes.
males_dx_df <- males_df[males_df$Gene_ID %in% genes_m,]
males_dx_df
## pDLBCL CHL pDLBCL.1 mDLBCL CHL.1 CHL.2 CHL.3 CHL.4
## 10 2.924230 3.272495 3.133263 3.118928 2.869639 3.151751 2.464758 2.683687
## 11 2.924230 3.272495 3.133263 3.118928 2.869639 3.151751 2.464758 2.683687
## 12 2.924230 3.272495 3.133263 3.118928 2.869639 3.151751 2.464758 2.683687
## 13 2.924230 3.272495 3.133263 3.118928 2.869639 3.151751 2.464758 2.683687
## 14 2.924230 3.272495 3.133263 3.118928 2.869639 3.151751 2.464758 2.683687
## 15 2.924230 3.272495 3.133263 3.118928 2.869639 3.151751 2.464758 2.683687
## 16 2.127182 2.788845 2.115515 2.305325 2.191573 2.005831 2.210159 2.185680
## 35 1.890996 2.975367 2.128983 1.633711 2.030586 1.854145 1.863012 1.694038
## 36 1.890996 2.975367 2.128983 1.633711 2.030586 1.854145 1.863012 1.694038
## 37 1.890996 2.975367 2.128983 1.633711 2.030586 1.854145 1.863012 1.694038
## 38 1.890996 2.975367 2.128983 1.633711 2.030586 1.854145 1.863012 1.694038
## 39 1.890996 2.975367 2.128983 1.633711 2.030586 1.854145 1.863012 1.694038
## 40 1.890996 2.975367 2.128983 1.633711 2.030586 1.854145 1.863012 1.694038
## 42 2.205227 2.763608 4.581370 3.330021 3.416666 3.257589 4.726385 3.378047
## 53 3.326863 2.709651 4.343689 2.320567 3.256265 2.106494 2.495920 2.629729
## 54 3.326863 2.709651 4.343689 2.320567 3.256265 2.106494 2.495920 2.629729
## 55 3.326863 2.709651 4.343689 2.320567 3.256265 2.106494 2.495920 2.629729
## 57 3.231147 2.498076 2.099723 1.925029 2.183705 2.090934 2.366762 2.516796
## 58 3.231147 2.498076 2.099723 1.925029 2.183705 2.090934 2.366762 2.516796
## 59 3.231147 2.498076 2.099723 1.925029 2.183705 2.090934 2.366762 2.516796
## 60 3.231147 2.498076 2.099723 1.925029 2.183705 2.090934 2.366762 2.516796
## 64 2.154457 2.088324 2.003630 1.840714 2.681566 1.651746 1.885876 2.007413
## 65 2.154457 2.088324 2.003630 1.840714 2.681566 1.651746 1.885876 2.007413
## 66 2.154457 2.088324 2.003630 1.840714 2.681566 1.651746 1.885876 2.007413
## 67 2.032138 1.850398 1.951956 1.826161 2.092506 1.812784 1.883707 1.923404
## 68 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 69 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 70 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 71 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 72 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 73 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 74 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 77 3.380794 3.635628 3.882431 4.293454 3.373098 7.227211 3.830759 4.864639
## CHL.5 mDLBCL.2 CHL.7 CHL.8 mDLBCL.4 mDLBCL.5 mDLBCL.6 CHL.9
## 10 2.666463 2.706390 3.283510 3.634387 2.826371 2.743203 2.755176 2.645335
## 11 2.666463 2.706390 3.283510 3.634387 2.826371 2.743203 2.755176 2.645335
## 12 2.666463 2.706390 3.283510 3.634387 2.826371 2.743203 2.755176 2.645335
## 13 2.666463 2.706390 3.283510 3.634387 2.826371 2.743203 2.755176 2.645335
## 14 2.666463 2.706390 3.283510 3.634387 2.826371 2.743203 2.755176 2.645335
## 15 2.666463 2.706390 3.283510 3.634387 2.826371 2.743203 2.755176 2.645335
## 16 2.006926 2.616547 2.273527 2.173246 2.175879 2.317447 2.647874 2.182016
## 35 2.676579 1.960693 1.803915 2.111299 1.957177 1.784722 1.676013 1.964451
## 36 2.676579 1.960693 1.803915 2.111299 1.957177 1.784722 1.676013 1.964451
## 37 2.676579 1.960693 1.803915 2.111299 1.957177 1.784722 1.676013 1.964451
## 38 2.676579 1.960693 1.803915 2.111299 1.957177 1.784722 1.676013 1.964451
## 39 2.676579 1.960693 1.803915 2.111299 1.957177 1.784722 1.676013 1.964451
## 40 2.676579 1.960693 1.803915 2.111299 1.957177 1.784722 1.676013 1.964451
## 42 3.271699 3.414658 2.732309 5.116151 4.316409 3.417756 4.541609 4.176644
## 53 3.101723 2.164108 2.029822 2.960409 8.133783 4.324922 2.072142 2.943281
## 54 3.101723 2.164108 2.029822 2.960409 8.133783 4.324922 2.072142 2.943281
## 55 3.101723 2.164108 2.029822 2.960409 8.133783 4.324922 2.072142 2.943281
## 57 2.982946 2.742360 2.321052 2.362872 3.270014 2.317579 2.142324 2.236284
## 58 2.982946 2.742360 2.321052 2.362872 3.270014 2.317579 2.142324 2.236284
## 59 2.982946 2.742360 2.321052 2.362872 3.270014 2.317579 2.142324 2.236284
## 60 2.982946 2.742360 2.321052 2.362872 3.270014 2.317579 2.142324 2.236284
## 64 2.090433 1.816739 2.177835 2.039986 2.055238 2.076733 1.965607 1.863729
## 65 2.090433 1.816739 2.177835 2.039986 2.055238 2.076733 1.965607 1.863729
## 66 2.090433 1.816739 2.177835 2.039986 2.055238 2.076733 1.965607 1.863729
## 67 1.946816 1.869453 1.692387 2.056874 1.898575 2.222977 2.296827 1.822425
## 68 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 69 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 70 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 71 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 72 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 73 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 74 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 77 2.838445 7.170012 5.561294 3.625181 3.818218 4.726057 5.893514 3.851825
## mDLBCL.8 CHL.11 CHL.12 CHL.13 mDLBCL.9 mDLBCL.10 mDLBCL.11 mDLBCL.12
## 10 2.847968 2.926479 2.967611 2.889223 2.912622 6.387654 2.730479 2.638690
## 11 2.847968 2.926479 2.967611 2.889223 2.912622 6.387654 2.730479 2.638690
## 12 2.847968 2.926479 2.967611 2.889223 2.912622 6.387654 2.730479 2.638690
## 13 2.847968 2.926479 2.967611 2.889223 2.912622 6.387654 2.730479 2.638690
## 14 2.847968 2.926479 2.967611 2.889223 2.912622 6.387654 2.730479 2.638690
## 15 2.847968 2.926479 2.967611 2.889223 2.912622 6.387654 2.730479 2.638690
## 16 2.301481 2.521647 2.230016 2.366452 2.123432 2.455331 2.081947 2.246569
## 35 1.812762 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840 1.879105
## 36 1.812762 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840 1.879105
## 37 1.812762 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840 1.879105
## 38 1.812762 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840 1.879105
## 39 1.812762 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840 1.879105
## 40 1.812762 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840 1.879105
## 42 4.550476 3.079089 4.669479 4.756083 2.395022 4.620422 3.699957 3.192031
## 53 2.679304 3.052082 6.836376 2.671998 5.904312 2.828835 2.462488 2.318022
## 54 2.679304 3.052082 6.836376 2.671998 5.904312 2.828835 2.462488 2.318022
## 55 2.679304 3.052082 6.836376 2.671998 5.904312 2.828835 2.462488 2.318022
## 57 3.005478 2.089293 1.976170 2.634121 2.263726 2.556427 2.214243 2.252333
## 58 3.005478 2.089293 1.976170 2.634121 2.263726 2.556427 2.214243 2.252333
## 59 3.005478 2.089293 1.976170 2.634121 2.263726 2.556427 2.214243 2.252333
## 60 3.005478 2.089293 1.976170 2.634121 2.263726 2.556427 2.214243 2.252333
## 64 2.260826 1.915579 1.655303 1.910050 1.951227 2.659688 1.857070 1.821691
## 65 2.260826 1.915579 1.655303 1.910050 1.951227 2.659688 1.857070 1.821691
## 66 2.260826 1.915579 1.655303 1.910050 1.951227 2.659688 1.857070 1.821691
## 67 1.916119 1.923644 1.897072 1.688631 1.913212 2.775583 1.664943 1.767089
## 68 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 69 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 70 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 71 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 72 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 73 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 74 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 77 3.786893 7.545068 3.734721 5.743182 6.984887 3.131724 3.553398 4.016649
## mDLBCL.14 mDLBCL.15 mDLBCL.16 CHL.14 pDLBCL.6 pDLBCL.7 CHL.17 mDLBCL.17
## 10 3.044227 7.408137 3.460930 3.881796 2.568014 2.787795 3.461040 4.147761
## 11 3.044227 7.408137 3.460930 3.881796 2.568014 2.787795 3.461040 4.147761
## 12 3.044227 7.408137 3.460930 3.881796 2.568014 2.787795 3.461040 4.147761
## 13 3.044227 7.408137 3.460930 3.881796 2.568014 2.787795 3.461040 4.147761
## 14 3.044227 7.408137 3.460930 3.881796 2.568014 2.787795 3.461040 4.147761
## 15 3.044227 7.408137 3.460930 3.881796 2.568014 2.787795 3.461040 4.147761
## 16 2.191737 2.195214 2.149873 2.361694 4.324170 2.138477 2.169210 2.250016
## 35 2.167296 5.255127 1.764277 1.652628 1.855264 1.535954 1.982091 3.926928
## 36 2.167296 5.255127 1.764277 1.652628 1.855264 1.535954 1.982091 3.926928
## 37 2.167296 5.255127 1.764277 1.652628 1.855264 1.535954 1.982091 3.926928
## 38 2.167296 5.255127 1.764277 1.652628 1.855264 1.535954 1.982091 3.926928
## 39 2.167296 5.255127 1.764277 1.652628 1.855264 1.535954 1.982091 3.926928
## 40 2.167296 5.255127 1.764277 1.652628 1.855264 1.535954 1.982091 3.926928
## 42 3.589921 4.103315 3.296677 2.540951 4.194828 4.775434 5.113265 2.929154
## 53 2.717477 2.774380 5.162850 2.610332 2.285040 3.017648 3.893279 3.168983
## 54 2.717477 2.774380 5.162850 2.610332 2.285040 3.017648 3.893279 3.168983
## 55 2.717477 2.774380 5.162850 2.610332 2.285040 3.017648 3.893279 3.168983
## 57 2.309280 5.858629 2.451799 2.559516 2.425482 2.273718 2.262537 3.537996
## 58 2.309280 5.858629 2.451799 2.559516 2.425482 2.273718 2.262537 3.537996
## 59 2.309280 5.858629 2.451799 2.559516 2.425482 2.273718 2.262537 3.537996
## 60 2.309280 5.858629 2.451799 2.559516 2.425482 2.273718 2.262537 3.537996
## 64 2.163669 1.847283 8.501844 1.996380 1.829853 1.963556 1.733200 1.668057
## 65 2.163669 1.847283 8.501844 1.996380 1.829853 1.963556 1.733200 1.668057
## 66 2.163669 1.847283 8.501844 1.996380 1.829853 1.963556 1.733200 1.668057
## 67 2.122229 2.192730 6.989247 1.590206 1.772256 1.910803 1.678924 1.838411
## 68 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 69 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 70 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 71 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 72 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 73 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 74 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 77 3.741841 4.220294 6.819141 3.649414 4.733757 3.542088 4.945895 3.566518
## mDLBCL.18 mDLBCL.19 CHL.18 Gene_ID
## 10 7.354649 3.027889 2.920757 SPRR1B
## 11 7.354649 3.027889 2.920757 SPRR1B
## 12 7.354649 3.027889 2.920757 SPRR1B
## 13 7.354649 3.027889 2.920757 SPRR1B
## 14 7.354649 3.027889 2.920757 SPRR1B
## 15 7.354649 3.027889 2.920757 SPRR1B
## 16 2.203880 2.064499 2.287019 SMPX
## 35 5.041233 3.994581 1.797710 MAL2
## 36 5.041233 3.994581 1.797710 MAL2
## 37 5.041233 3.994581 1.797710 MAL2
## 38 5.041233 3.994581 1.797710 MAL2
## 39 5.041233 3.994581 1.797710 MAL2
## 40 5.041233 3.994581 1.797710 MAL2
## 42 2.662405 4.044133 4.609380 LOC389834
## 53 2.633441 2.592530 2.795749 FABP4
## 54 2.633441 2.592530 2.795749 FABP4
## 55 2.633441 2.592530 2.795749 FABP4
## 57 6.522668 2.378329 2.074662 DSG3
## 58 6.522668 2.378329 2.074662 DSG3
## 59 6.522668 2.378329 2.074662 DSG3
## 60 6.522668 2.378329 2.074662 DSG3
## 64 1.835034 2.896035 1.905412 CT45A6
## 65 1.835034 2.896035 1.905412 CT45A6
## 66 1.835034 2.896035 1.905412 CT45A6
## 67 1.672015 2.331127 1.955676 CT45A10
## 68 4.413599 3.117395 2.730450 CLDN10
## 69 4.413599 3.117395 2.730450 CLDN10
## 70 4.413599 3.117395 2.730450 CLDN10
## 71 4.413599 3.117395 2.730450 CLDN10
## 72 4.413599 3.117395 2.730450 CLDN10
## 73 4.413599 3.117395 2.730450 CLDN10
## 74 4.413599 3.117395 2.730450 CLDN10
## 77 4.414295 3.257368 7.358518 CHIT1
males_DF <- males_dx_df[!duplicated(males_dx_df$Gene_ID),]
males_DF
## pDLBCL CHL pDLBCL.1 mDLBCL CHL.1 CHL.2 CHL.3 CHL.4
## 10 2.924230 3.272495 3.133263 3.118928 2.869639 3.151751 2.464758 2.683687
## 16 2.127182 2.788845 2.115515 2.305325 2.191573 2.005831 2.210159 2.185680
## 35 1.890996 2.975367 2.128983 1.633711 2.030586 1.854145 1.863012 1.694038
## 42 2.205227 2.763608 4.581370 3.330021 3.416666 3.257589 4.726385 3.378047
## 53 3.326863 2.709651 4.343689 2.320567 3.256265 2.106494 2.495920 2.629729
## 57 3.231147 2.498076 2.099723 1.925029 2.183705 2.090934 2.366762 2.516796
## 64 2.154457 2.088324 2.003630 1.840714 2.681566 1.651746 1.885876 2.007413
## 67 2.032138 1.850398 1.951956 1.826161 2.092506 1.812784 1.883707 1.923404
## 68 3.426300 3.508524 3.276908 2.942805 4.173509 3.400262 2.909614 3.068524
## 77 3.380794 3.635628 3.882431 4.293454 3.373098 7.227211 3.830759 4.864639
## CHL.5 mDLBCL.2 CHL.7 CHL.8 mDLBCL.4 mDLBCL.5 mDLBCL.6 CHL.9
## 10 2.666463 2.706390 3.283510 3.634387 2.826371 2.743203 2.755176 2.645335
## 16 2.006926 2.616547 2.273527 2.173246 2.175879 2.317447 2.647874 2.182016
## 35 2.676579 1.960693 1.803915 2.111299 1.957177 1.784722 1.676013 1.964451
## 42 3.271699 3.414658 2.732309 5.116151 4.316409 3.417756 4.541609 4.176644
## 53 3.101723 2.164108 2.029822 2.960409 8.133783 4.324922 2.072142 2.943281
## 57 2.982946 2.742360 2.321052 2.362872 3.270014 2.317579 2.142324 2.236284
## 64 2.090433 1.816739 2.177835 2.039986 2.055238 2.076733 1.965607 1.863729
## 67 1.946816 1.869453 1.692387 2.056874 1.898575 2.222977 2.296827 1.822425
## 68 3.524943 2.983981 2.801732 3.298979 3.179837 2.920549 3.096044 3.157164
## 77 2.838445 7.170012 5.561294 3.625181 3.818218 4.726057 5.893514 3.851825
## mDLBCL.8 CHL.11 CHL.12 CHL.13 mDLBCL.9 mDLBCL.10 mDLBCL.11 mDLBCL.12
## 10 2.847968 2.926479 2.967611 2.889223 2.912622 6.387654 2.730479 2.638690
## 16 2.301481 2.521647 2.230016 2.366452 2.123432 2.455331 2.081947 2.246569
## 35 1.812762 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840 1.879105
## 42 4.550476 3.079089 4.669479 4.756083 2.395022 4.620422 3.699957 3.192031
## 53 2.679304 3.052082 6.836376 2.671998 5.904312 2.828835 2.462488 2.318022
## 57 3.005478 2.089293 1.976170 2.634121 2.263726 2.556427 2.214243 2.252333
## 64 2.260826 1.915579 1.655303 1.910050 1.951227 2.659688 1.857070 1.821691
## 67 1.916119 1.923644 1.897072 1.688631 1.913212 2.775583 1.664943 1.767089
## 68 3.074838 2.783793 3.051870 2.947354 2.974613 2.991029 2.951059 5.146060
## 77 3.786893 7.545068 3.734721 5.743182 6.984887 3.131724 3.553398 4.016649
## mDLBCL.14 mDLBCL.15 mDLBCL.16 CHL.14 pDLBCL.6 pDLBCL.7 CHL.17 mDLBCL.17
## 10 3.044227 7.408137 3.460930 3.881796 2.568014 2.787795 3.461040 4.147761
## 16 2.191737 2.195214 2.149873 2.361694 4.324170 2.138477 2.169210 2.250016
## 35 2.167296 5.255127 1.764277 1.652628 1.855264 1.535954 1.982091 3.926928
## 42 3.589921 4.103315 3.296677 2.540951 4.194828 4.775434 5.113265 2.929154
## 53 2.717477 2.774380 5.162850 2.610332 2.285040 3.017648 3.893279 3.168983
## 57 2.309280 5.858629 2.451799 2.559516 2.425482 2.273718 2.262537 3.537996
## 64 2.163669 1.847283 8.501844 1.996380 1.829853 1.963556 1.733200 1.668057
## 67 2.122229 2.192730 6.989247 1.590206 1.772256 1.910803 1.678924 1.838411
## 68 2.991923 8.367649 3.030007 3.324361 2.791785 2.734316 3.126265 5.351248
## 77 3.741841 4.220294 6.819141 3.649414 4.733757 3.542088 4.945895 3.566518
## mDLBCL.18 mDLBCL.19 CHL.18 Gene_ID
## 10 7.354649 3.027889 2.920757 SPRR1B
## 16 2.203880 2.064499 2.287019 SMPX
## 35 5.041233 3.994581 1.797710 MAL2
## 42 2.662405 4.044133 4.609380 LOC389834
## 53 2.633441 2.592530 2.795749 FABP4
## 57 6.522668 2.378329 2.074662 DSG3
## 64 1.835034 2.896035 1.905412 CT45A6
## 67 1.672015 2.331127 1.955676 CT45A10
## 68 4.413599 3.117395 2.730450 CLDN10
## 77 4.414295 3.257368 7.358518 CHIT1
males_DF_t <- data.frame(t(males_DF[,1:35]))
colnames(males_DF_t) <- males_DF$Gene_ID
males_DF_t$class <- as.factor(dx_m)
paged_table(males_DF_t)
Now lets see how well the top genes over or under estimated in males can predict the standard class of 3 classes of lymphoma.
set.seed(123)
inTrain <- sample(1:35,.8*35)
training <- males_DF_t[inTrain,]
testing <- males_DF_t[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 11 13 4
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 3 0
set.seed(123)
rf_males <- randomForest(training[1:10], training$class, mtry=3, ntree=5000, confusion=T, importance=T)
rf_males$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 4 7 0 0.6363636
## mDLBCL 5 7 1 0.4615385
## pDLBCL 3 1 0 1.0000000
Not very good for the pDLBCL class with 0% accuracy, but better at CHL with 36% accuracy, and even better with the mDLBCL class with 53% accuracy.
rf_males$importance #added after part5b
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy
## SPRR1B -0.008014683 0.001349286 -0.0031000000 -0.0026258170
## SMPX 0.005711429 -0.013979444 0.0212333333 -0.0006002453
## MAL2 0.016310794 0.015042302 -0.0132000000 0.0110458580
## LOC389834 0.003998333 0.013412063 -0.0161666667 0.0041829976
## FABP4 -0.003300238 -0.002621905 -0.0035000000 -0.0020681735
## DSG3 0.006465238 0.003182937 -0.0170666667 0.0017487496
## CT45A6 0.008539048 -0.003874603 -0.0023666667 0.0015063031
## CT45A10 0.015344286 0.022681746 0.0002666667 0.0161856538
## CLDN10 -0.002895238 0.021357222 -0.0070000000 0.0068391903
## CHIT1 -0.005499524 -0.008040000 -0.0059333333 -0.0055789810
## MeanDecreaseGini
## SPRR1B 1.484792
## SMPX 1.878791
## MAL2 2.032820
## LOC389834 1.958738
## FABP4 1.281468
## DSG3 1.474768
## CT45A6 1.145961
## CT45A10 2.037384
## CLDN10 1.845981
## CHIT1 1.332283
Lets see how well these genes predict the hold out 20% samples.
predicted_males <- predict(rf_males,testing)
result <- data.frame(predicted= predicted_males, actual=testing$class)
result
## predicted actual
## CHL mDLBCL CHL
## CHL.2 mDLBCL CHL
## CHL.8 CHL CHL
## CHL.9 CHL CHL
## mDLBCL.8 CHL mDLBCL
## mDLBCL.12 mDLBCL mDLBCL
## mDLBCL.19 mDLBCL mDLBCL
The pDLBCL class was missing from the testing set. It had 7 samples to predict correctly but only predicted 4/7 correct, just over 50% accuracy. It predicted 2/3 mDLBCL correct with 66% accuracy, and 2/4 CHL for 50% accuracy. The male genes are not good genes to predict class of lymphoma, but it could also be using this measure of avg/median could be a terrible tool to use in finding top genes. Another way would be the more common PCA or principal component analysis. But we haven’t gotten too far along in testing these genes.
Lets see how well these genes can predict the class in all samples of males and females. We can recycle the df dataframe of 87 rows and 48 columns of 47 samples same order and the gene ID column.
DF47_maleGenes <- df[df$Gene_ID %in% genes_m,]
DF47_mg <- DF47_maleGenes[!duplicated(DF47_maleGenes$Gene_ID),]
DF47_mg_t <- data.frame(t(DF47_mg[,1:47]))
colnames(DF47_mg_t) <- DF47_mg$Gene_ID
DF47_mg_t$class <- 'diagnosis'
DF47_mg_t$class[CHL] <- "CHL"
DF47_mg_t$class[pDLBCL] <- "pDLBCL"
DF47_mg_t$class[mDLBCL] <- "mDLBCL"
DF47_mg_t$class <- as.factor(DF47_mg_t$class)
paged_table(DF47_mg_t)
set.seed(123)
inTrain <- sample(1:47, .8*47)
training <- DF47_mg_t[inTrain,]
testing <- DF47_mg_t[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 15 16 6
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 4 2
rf_mg47 <- randomForest(training[1:10], training$class, mtry=3, ntree=5000, confusion=T)
rf_mg47$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 6 9 0 0.6
## mDLBCL 8 8 0 0.5
## pDLBCL 2 4 0 1.0
prediction_mg47 <- predict(rf_mg47, testing)
result <- data.frame(predicted=prediction_mg47, actual=testing$class)
result
## predicted actual
## pDLBCL CHL pDLBCL
## CHL mDLBCL CHL
## mDLBCL.1 CHL mDLBCL
## mDLBCL.6 CHL mDLBCL
## mDLBCL.8 CHL mDLBCL
## CHL.10 CHL CHL
## mDLBCL.13 mDLBCL mDLBCL
## pDLBCL.7 CHL pDLBCL
## CHL.17 CHL CHL
## CHL.18 CHL CHL
These genes are terrible for prediction in training and the model. So we can forget about the male top genes This model had 10 samples to predict but only predicted 4/10 correct with 40% accuracy, but it does show that the pDLBCL samples were incorrectly predicted as CHL in males for all pDLBCL samples, and that only half the CHL samples were predicted correctly. But the mDLBCL classes also predicted more samples of that class as CHL too.
From here, I think we should switch it up and no longer use the demographics of the age or gender to make predictions of how well the genes from those demographics with higher or lower values of group average divided by group median.
We can also see if the genes not duplicated in the groups and subgroups can predict the class of 3 and then 4, or how the duplicated genes can predict the class of 3 and then 4. Lets look at the duplicated genes again and non duplicated. Some genes are in 5 groups.
duplicates <- df[duplicated(df$Gene_ID),"Gene_ID"]
du <- unique(duplicates)
du
## [1] "SPRR2A" "SPRR1B" "S100A7" "MUC7" "MAL2" "GCNT4" "FABP4" "DSG3"
## [9] "DMKN" "CT45A6" "CLDN10" "CLCA2"
notDuplicated <- df[-which(df$Gene_ID %in% du),"Gene_ID"]
noDu <- unique(notDuplicated)
noDu
## [1] "UTS2B" "USP30" "TMPRSS11A" "TACSTD2" "SPRR2D"
## [6] "SMPX" "SCRG1" "S100A12" "RGS13" "PTPRD"
## [11] "PDCD1LG2" "PAX5" "NOP10" "NM_201998" "NM_014117"
## [16] "NM_001040033" "NM_001033556" "MUM1" "MGST1" "MGAM2"
## [21] "LUM" "LOC389834" "KRT4" "KLRB1" "KIAA0825"
## [26] "JCHAIN" "IL7R" "IL23R" "IFNG" "IDO1"
## [31] "ERP44" "DDX3Y" "CT45A10" "CHIT1" "CD5"
## [36] "CD274" "CCL13" "BCL6" "BCL2" "85444"
## [41] "51633" "LDHA" "LDHC" "LDHD"
The duplicates is an idea to try but the not duplicated genes never shows the right amount, because we should have 87 genes but we get 43 genes that aren’t in the list of 31 duplicated genes because that adds to 74. There are 13 genes not accounted for.
For the remainder we will check the duplicate genes on predicting 3 and 4 classes of lymphoma, and then work down with predicting the class for females only, we did the males already, then the class by age of 72 or younger vs older than 72 years of age. So really just testing females only on class, then young on class, and old on class. Then we will test the separate genders on the new 4 classes, followed by the separate age groups on class of the 4 new classes.
So far the study genes scored the best on the 3 class model with 70% accuracy, but only 30% accuracy on the 4 new class model. We haven’t done any predictions on the 4 class model yet. We only got to the males on class with only male genes to predict class in the samples that were only males.
We also saw that BCL2 scored 60% accuracy in predicting gender out of all samples, but PTPRD scored 60% in predicting a 2 class model of combine CHL or pDLBCL vs mDLBCL regardless of gender or age.
du_dx <- topGenes[topGenes$Gene_ID %in% du,c(2:48,95)]
du_dx <- du_dx[!duplicated(du_dx$Gene_ID),]
paged_table(du_dx)
Lets see how well the duplicated genes in all the genes of the data are at predicting the 3 class then the 4 class model.
Lets add the class vector of the 3 classes to the labels_t table because we will be using it.
labels_t$class3 <- '3 classes'
labels_t$class3[CHL] <- "CHL"
labels_t$class3[mDLBCL] <- "mDLBCL"
labels_t$class3[pDLBCL] <- "pDLBCL"
paged_table(labels_t)
du_dx_t <- data.frame(t(du_dx[1:47]))
colnames(du_dx_t) <- du_dx$Gene_ID
du_dx_t$class <- as.factor(labels_t$class3)
paged_table(du_dx_t)
We have our matrix of duplicated genes, now lets see how well they perform.
set.seed(123)
inTrain <- sample(1:47, .8*47)
training <- du_dx_t[inTrain,]
testing <- du_dx_t[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 15 16 6
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 4 2
rf_duplicates <- randomForest(training[1:12], training$class, mtry=4, ntree=5000, confusion=T)
rf_duplicates$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 10 5 0 0.3333333
## mDLBCL 6 9 1 0.4375000
## pDLBCL 0 6 0 1.0000000
In training, the model scored very poor on all 6 pDLBCL samples all misclassified as mDLBCL. There were 10/15 CHL samples classified correctly but the other 5 were misclassified as mDLBCL. The mDLBCL class identified 9/17 samples correctly but 6/17 as CHL and 1/17 as pDLBCL.
Lets see how well the hold out validation set is predicted.
prediction_duplicates <- predict(rf_duplicates,testing)
results <- data.frame(predicted = prediction_duplicates, actual = testing$class)
results
## predicted actual
## pDLBCL mDLBCL pDLBCL
## CHL mDLBCL CHL
## mDLBCL.1 CHL mDLBCL
## mDLBCL.6 CHL mDLBCL
## mDLBCL.8 mDLBCL mDLBCL
## CHL.10 CHL CHL
## mDLBCL.13 mDLBCL mDLBCL
## pDLBCL.7 CHL pDLBCL
## CHL.17 CHL CHL
## CHL.18 CHL CHL
The model scored terribly. There were 10 samples to predict and only 4/10 predicted correctly. The mDLBCL had 2/4 correct with the other 2 incorrectly identified as CHL. The CHL had 3/4 correctly identified, but the 1/4 was incorrectly predicted to be mDLBCL. The pDLBCL was 0/2 predicted correct and each of the samples incorrectly identified as mDLBCL and the other as CHL.
The duplicate genes aren’t good at identifying the 3 classes of lymphoma, but lets see how well they do in predicting the 4 classes of the proposed groups of lymphoma.
du_dx_t$class <- as.factor(labels_t$group)
du_dx_t$class[29] <- as.factor("IS") #the machine won't take NAs and it was mDLBCL that is IS in new class
paged_table(du_dx_t)
set.seed(123)
inTrain <- sample(1:47, .8*47)
training <- du_dx_t[inTrain,]
testing <- du_dx_t[-inTrain,]
table(training$class)
##
## 9p24.1-H IFNG-H IFNG-L IS
## 6 4 17 10
table(testing$class)
##
## 9p24.1-H IFNG-H IFNG-L IS
## 3 5 1 1
rf_du_class4 <- randomForest(training[1:12], training$class, mtry=4, ntree=5000, confusion=T)
rf_du_class4$confusion
## 9p24.1-H IFNG-H IFNG-L IS class.error
## 9p24.1-H 0 0 4 2 1.0000000
## IFNG-H 0 0 3 1 1.0000000
## IFNG-L 1 0 14 2 0.1764706
## IS 0 1 7 2 0.8000000
The training went terribly with the 9p24.1-H and IFNG-H both 0% accuracy and IS with 20% accuracy while IFNG-L scored 82% accuracy. This is the new class as a transition from pDLBCL to CHL. Lets see if it predicts better than this.
prediction_duClass4 <- predict(rf_du_class4,testing)
results <- data.frame(predicted = prediction_duClass4, actual = testing$class)
results
## predicted actual
## pDLBCL IFNG-L IFNG-H
## CHL IS IFNG-L
## mDLBCL.1 IFNG-L 9p24.1-H
## mDLBCL.6 IFNG-L IS
## mDLBCL.8 IFNG-L IFNG-H
## CHL.10 IFNG-L 9p24.1-H
## mDLBCL.13 IFNG-L IFNG-H
## pDLBCL.7 IFNG-L IFNG-H
## CHL.17 IFNG-L 9p24.1-H
## CHL.18 IFNG-L IFNG-H
With the testing set the model predicted all the be IFNG-L or the transition class except 1 as the IS class for mDLBCL in immune senescence. It scored 0%. The IFNG-L class that there was only 1 of was misidentified as IS.
I was expecting some amazing results with this but the problem could be using the avg/median per group as a variability factor. Not any of these gene sets scored well on the class predictions, even the genes that were in the study.
The best model has been the study genes used in predicting the 3 class model with 70% accuracy and the 4 class model with 30% accuracy.
I re-ran all the code to get those genes from the study that performed the best in the 3 class model with 70% while others were 0-60% accuracy. It scored terrible in the 4 class model though, and so did the other gene sets.
genes_rs
## [1] "PTPRD" "PDCD1LG2" "PAX5" "MUM1" "IFNG" "IDO1"
## [7] "ERP44" "CD5" "CD274" "BCL6" "BCL2" "LDHA"
## [13] "LDHC" "LDHD"
Those are the genes to identify the 3 classes of lymphoma as CHL, mDLBCL, or pDLBCL. But when used as the genes from the research study, they do not predict the 4 class model well at all using a standard random forest classifier algorith.
I will leave this research analysis here. We know now that there is overlap between the large B-cell lymphomas with EBV in CHL, mDLBCL, and pDLBCL. It is likely there is a transition state because the genes of the study scored poor on the 4 class model that turns the 3 classes of these lymphomas into 4 classes. The EBV infection is a factor in all these samples and the study bases the finding from the immune senescence of aging that can turn deadly in the immune escape that lets the active EBV go undetected to do damage. We can say these lymphomas are EBV associated, and leave off the LDH genes that were not used to determine class in the study but for determining the latency type of EBV in the type of lymphoma from basic blood work.
We will add in only the genes that the study represented and reasoning in the next part.
===========================================================================
***** Part5b
I actually want to test out the females as a set to see how well the genes we saw earlier in females could predict the class of lymphoma.
Lets read in the chunks from Part 5 and use some of those data frames.
We will use the labels_t and topGenes dataframes. We can remove the others.
ls()
## [1] "BCL2" "BCL2_t" "CHL"
## [4] "CHL_m" "class" "Data"
## [7] "df" "df_group" "DF47_maleGenes"
## [10] "DF47_mg" "DF47_mg_t" "diagnosis"
## [13] "du" "du_dx" "du_dx_t"
## [16] "duplicates" "dx_m" "features"
## [19] "females" "gender" "genes_m"
## [22] "genes_rs" "group" "inTrain"
## [25] "labels" "labels_t" "LDH"
## [28] "LDH_data" "LDH_df" "male_gene_index"
## [31] "males" "males_df" "males_DF"
## [34] "males_DF_t" "males_dx_df" "mDLBCL"
## [37] "mDLBCL_m" "noDu" "notDuplicated"
## [40] "pDLBCL" "pDLBCL_m" "predict_gender"
## [43] "predicted" "predicted_males" "prediction"
## [46] "prediction_duClass4" "prediction_duplicates" "prediction_mg47"
## [49] "prediction_PTPRD" "PTPRD" "PTPRD_t"
## [52] "r3_gender" "researchGenes" "result"
## [55] "results" "rf" "rf_BCL2"
## [58] "rf_du_class4" "rf_duplicates" "rf_group4"
## [61] "rf_males" "rf_mg47" "rf_PTPRD"
## [64] "rf_study5" "rs3" "rs3_6age"
## [67] "sample_rs_df" "samples_rs" "select_df"
## [70] "testing" "topGenes" "topGenes2"
## [73] "training"
rm("BCL2" , "BCL2_t" , "CHL" , "CHL_m" ,
"df" , "DF47_maleGenes" , "DF47_mg" , "DF47_mg_t" ,
"diagnosis" , "du" , "du_dx" , "du_dx_t" ,
"duplicates" , "dx_m" , "females" , "gender" ,
"genes_m" , "inTrain" , "labels" ,
"male_gene_index" , "males" , "males_df" , "males_DF" ,
"males_DF_t" , "males_dx_df" , "mDLBCL" , "mDLBCL_m" ,
"noDu" , "notDuplicated" , "pDLBCL" , "pDLBCL_m" ,
"predict_gender" , "predicted_males" , "prediction_duClass4" , "prediction_duplicates"
, "prediction_mg47" , "prediction_PTPRD" , "PTPRD" , "PTPRD_t" ,
"result" , "results" , "rf_BCL2" ,"rf_du_class4" ,
"rf_duplicates" , "rf_males" , "rf_mg47" , "rf_PTPRD" ,
"testing" , "training" )
ls()
## [1] "class" "Data" "df_group" "features"
## [5] "genes_rs" "group" "labels_t" "LDH"
## [9] "LDH_data" "LDH_df" "predicted" "prediction"
## [13] "r3_gender" "researchGenes" "rf" "rf_group4"
## [17] "rf_study5" "rs3" "rs3_6age" "sample_rs_df"
## [21] "samples_rs" "select_df" "topGenes" "topGenes2"
paged_table(labels_t)
Lets manually change the group entry 29 from NA to IS to use later in machine learning.
labels_t$group[29] <- "IS"
labels_t$group
## [1] "IFNG-H" "IFNG-L" "IFNG-H" "IFNG-L" "IFNG-L" "9p24.1-H"
## [7] "IFNG-L" "IFNG-L" "9p24.1-H" "9p24.1-H" "9p24.1-H" "IFNG-L"
## [13] "IS" "IFNG-L" "IFNG-L" "IFNG-L" "IFNG-L" "IS"
## [19] "IS" "IS" "IS" "IFNG-L" "IFNG-H" "9p24.1-H"
## [25] "IFNG-L" "9p24.1-H" "9p24.1-H" "IS" "IS" "IS"
## [31] "IFNG-L" "IFNG-H" "9p24.1-H" "IFNG-L" "IFNG-H" "IFNG-L"
## [37] "IFNG-H" "IFNG-L" "IFNG-H" "IFNG-H" "IFNG-L" "IFNG-L"
## [43] "9p24.1-H" "IS" "IS" "IS" "IFNG-H"
paged_table(topGenes)
Lets see how many of same entries for the importance feature there are.
table(topGenes$importance)
##
## Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 14
## There were 2 genes found in the data of genes of CHL younger than 72 years of age to match any of the 20 probe IDs found. Change is the avg/median group values.
## 2
## There were 5 genes found in the data of pDLBCL younger than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 5
## There were 7 genes found in the data of pDLBCL older than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 7
## There were 8 genes found in the data of mDLBCL older than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 8
## There were 8 genes found in the data of mDLBCL younger than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 8
## These are from the top 20 genes of mDLBCL and females, but only 4 genes were matched from their probe IDs to a gene in the features data.
## 4
## These are from the top 20 genes of mDLBCL and males, but only 7 genes were matched from their probe IDs to a gene in the features data.
## 7
## These are from the top 20 genes of pDLBCL and females, but only 3 genes were matched from their probe IDs to a gene in the features data.
## 3
## These are from the top 20 genes of pDLBCL and males, but only 2 genes were matched from their probe IDs to a gene in the features data.
## 2
## This is the top genes from the CHL group of females only, the number Gene_IDs are Entrez IDs because the other Gene ID wasn't available or there is not a Gene ID for it.
## 9
## This is the top genes from the CHL group of males only, there was only 1 gene of CHL and males from the available features genes of 21k that matched up to the top 20 genes in the data of 27k probe IDs
## 1
## top gene CHL avg/median group values
## 2
## top gene mDLBCL avg/median group values
## 8
## top gene pDLBCL avg/median group values
## 7
Lets get all the genes of the females for CHL, mDLBCL, and pDLBCL to see if they can predict the class of lymhpoma and the new 4 classes of lymphoma by only selecting the females in the data.
female_genes <- topGenes[grep('female', topGenes$importance),]
paged_table(female_genes)
female_genes$Gene_ID
## [1] "S100A12" "RGS13" "NM_014117" "NM_001040033" "NM_001033556"
## [6] "MUC7" "MAL2" "KRT4" "JCHAIN" "IL7R"
## [11] "GCNT4" "CLDN10" "CLCA2" "CCL13" "85444"
## [16] "51633"
None of the genes look the same, they are all unique. Now lets only keep the samples that are females plus the Gene_ID column.
samples_females <- grep('female',labels_t$gender)
female_genes_samples <- female_genes[,c(samples_females,95)]
paged_table(female_genes_samples)
CHL_x <- grep('CHL', colnames(female_genes_samples))
mDLBCL_x <- grep("mDLBCL", colnames(female_genes_samples))
pDLBCL_x <- grep("pDLBCL", colnames(female_genes_samples))
class <- 'class'
class[CHL_x] <- 'CHL'
class[mDLBCL_x] <- 'mDLBCL'
class[pDLBCL_x] <- 'pDLBCL'
table(class)
## class
## CHL mDLBCL pDLBCL
## 3 7 2
There are more than 2x the CHL and 3x the pDLBCL number of samples in the mDLBCL class. Lets make this into a matrix and test how well these genes that are top variability genes in the females as a group will do in predicting the type of lymphoma.
females_mx <- data.frame(t(female_genes_samples[,1:12]))
colnames(females_mx) <- female_genes_samples$Gene_ID
females_mx$class <- as.factor(class)
paged_table(females_mx)
set.seed(123)
inTrain <- sample(1:12,.8*12)
training <- females_mx[inTrain,]
testing <- females_mx[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 2 5 2
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 1 2 0
There aren’t any pDLBCL samples in the testing set. Lets take one of the CHL from the training set and put it in the testing set. We will take 11 since it is a pDLBCL sample.
inTrain
## [1] 3 12 10 2 6 11 5 4 9
inTrain2 <- inTrain[-6] #removes by index number in inTrain vector of 9 digits
inTrain2
## [1] 3 12 10 2 6 5 4 9
training <- females_mx[inTrain2,]
testing <- females_mx[-(inTrain2),]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 2 5 1
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 1 2 1
At least now there is a sample of each lymphoma in the testing set and more of each in the training set except pDLBCL which there are only a total of 2 female samples for.
rf_females3 <- randomForest(training[1:16], training$class, strata=training$class, mtry=5, ntree=5000, confusion=T, importance=T)
rf_females3$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 0 2 0 1
## mDLBCL 0 5 0 0
## pDLBCL 1 0 0 1
The classes are not balanced and it shows in the error, with all the mDLBCL samples predicted correctly in the training model,but the only pDLBCL sample was incorrectly predicted as CHL and the 2 CHL incorrectly predicted as mDLBCL.
rf_females3$importance
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy MeanDecreaseGini
## S100A12 -0.0014 0.0039833333 0 0.0013700000 0.20509762
## RGS13 0.0056 0.0057333333 0 0.0052200000 0.26415667
## NM_014117 -0.0056 -0.0030500000 0 -0.0034766667 0.06301810
## NM_001040033 0.0020 -0.0032666667 0 -0.0011300000 0.27265619
## NM_001033556 -0.0038 -0.0013833333 0 -0.0019466667 0.12079905
## MUC7 -0.0026 0.0018500000 0 0.0001066667 0.25786714
## MAL2 -0.0010 -0.0035833333 0 -0.0025500000 0.18346000
## KRT4 0.0016 -0.0040000000 0 -0.0016933333 0.29244762
## JCHAIN -0.0034 0.0003333333 0 -0.0005066667 0.27560714
## IL7R -0.0068 0.0123166667 0 0.0041966667 0.34830286
## GCNT4 0.0276 0.0539833333 0 0.0385233333 0.66378238
## CLDN10 -0.0012 -0.0008500000 0 -0.0008533333 0.18073667
## CLCA2 -0.0028 0.0017666667 0 -0.0003333333 0.27892238
## CCL13 0.0012 -0.0011500000 0 -0.0002066667 0.14317048
## 85444 -0.0056 0.0008833333 0 -0.0019566667 0.19853286
## 51633 -0.0048 -0.0020333333 0 -0.0028000000 0.06144286
The gene GCNT4 seems to have the most importance than other genes, its the only one in the 1/100ths of weight determinance in predicting the CHL and mDLBCL samples. This was the training data, now lets see how it predicts the validation set in our testing set.
predicted_rf_females3 <- predict(rf_females3, testing)
results <- data.frame(predicted=predicted_rf_females3,actual=testing$class)
results
## predicted actual
## CHL.1 mDLBCL CHL
## mDLBCL.8 mDLBCL mDLBCL
## mDLBCL.12 mDLBCL mDLBCL
## pDLBCL.7 mDLBCL pDLBCL
The model scored 50% accuracy over all in predicting 2/4 samples correctly. All the mDLBCL samples were predicted correctly, but all predicted samples were mDLBCL. The CHL class scored 0/1 correct and the pDLBCL sample was incorrectly predicted with a score of 0/1 as well.
The genes that looked like top variation genes for females turned out to not be, and this could be due to the imbalance in the classes, with so few samples. The most important feature in the set was GCNT4 which is a protein metabolism gene that is shown to make males act aggressively towards other males according to genecards.org.
Lets see how well these genes predict the 4 proposed classes of lymphoma.
female_group4 <- labels_t$group[labels_t$gender=="female"]
female_group4
## [1] "9p24.1-H" "IFNG-L" "IS" "IFNG-L" "IFNG-L" "IS"
## [7] "9p24.1-H" "IFNG-H" "IFNG-L" "IFNG-H" "IFNG-L" "IFNG-L"
females_mx$class <- as.factor(female_group4)
paged_table(females_mx)
table(females_mx$class)
##
## 9p24.1-H IFNG-H IFNG-L IS
## 2 2 6 2
These classes are a little more balanced but the IFNG-L group is 3x the number of samples as the other groups.
This is such a small data set lets input the samples manually so each set has 1 sample each at the minimum.
set.seed(123)
training <- females_mx[c(1,2,3,9,10,11,12),]
testing <- females_mx[c(4:8),]
table(training$class)
##
## 9p24.1-H IFNG-H IFNG-L IS
## 1 1 4 1
table(testing$class)
##
## 9p24.1-H IFNG-H IFNG-L IS
## 1 1 2 1
rf_fem4 <- randomForest(training[1:16], training$class, strata=training$class, mtry=5, ntree=5000, confusion=T, importance=T)
rf_fem4$confusion
## 9p24.1-H IFNG-H IFNG-L IS class.error
## 9p24.1-H 0 0 0 1 1
## IFNG-H 0 0 1 0 1
## IFNG-L 0 0 4 0 0
## IS 0 0 1 0 1
The IFNG-L class scored 100% accuracy but the other classes scored 0% accuracy. All classes predicted as the class with the most samples of IFNG-L except the 9p24.1-H class that was predicted as the IS class.
rf_fem4$importance
## 9p24.1-H IFNG-H IFNG-L IS MeanDecreaseAccuracy
## S100A12 0 0 -0.001166667 0 -0.0007833333
## RGS13 0 0 -0.005200000 0 -0.0025233333
## NM_014117 0 0 -0.004966667 0 -0.0026333333
## NM_001040033 0 0 -0.002300000 0 -0.0013166667
## NM_001033556 0 0 0.001000000 0 0.0009166667
## MUC7 0 0 0.006866667 0 0.0033333333
## MAL2 0 0 0.004500000 0 0.0028900000
## KRT4 0 0 0.012000000 0 0.0053666667
## JCHAIN 0 0 0.005100000 0 0.0029066667
## IL7R 0 0 -0.005566667 0 -0.0026666667
## GCNT4 0 0 0.010700000 0 0.0048000000
## CLDN10 0 0 -0.001066667 0 -0.0006100000
## CLCA2 0 0 0.006100000 0 0.0028000000
## CCL13 0 0 -0.004100000 0 -0.0023233333
## 85444 0 0 0.006266667 0 0.0028333333
## 51633 0 0 -0.004466667 0 -0.0021000000
## MeanDecreaseGini
## S100A12 0.1121352
## RGS13 0.1138000
## NM_014117 0.1280771
## NM_001040033 0.1271324
## NM_001033556 0.2477467
## MUC7 0.2960600
## MAL2 0.2761095
## KRT4 0.3755686
## JCHAIN 0.3726829
## IL7R 0.1997210
## GCNT4 0.3561581
## CLDN10 0.2574933
## CLCA2 0.2578257
## CCL13 0.1348000
## 85444 0.3646486
## 51633 0.1509552
The KRT4 gene seemed to show importance in 1/100ths as only gene for predicting IFNG-L the class with the most samples.
Lets see how well it scores if we just remove the extra IFNG-L samples and let the machine classify the 4 classes.
female_group4
## [1] "9p24.1-H" "IFNG-L" "IS" "IFNG-L" "IFNG-L" "IS"
## [7] "9p24.1-H" "IFNG-H" "IFNG-L" "IFNG-H" "IFNG-L" "IFNG-L"
training <- females_mx[c(1,2,3,10),]
testing <- females_mx[c(5,6,7,8)]
rf_fem4b <- randomForest(training[1:16], training$class, mtry=3, ntree=5000, confusion=T, importance=T)
rf_fem4b$confusion
## 9p24.1-H IFNG-H IFNG-L IS class.error
## 9p24.1-H 0 0 0 1 1
## IFNG-H 1 0 0 0 1
## IFNG-L 0 0 0 1 1
## IS 0 0 1 0 1
There weren’t any samples really to train so all scored 0%.
But the GCNT4 gene seems to be of interest. Lets see importance.
rf_fem4b$importance
## 9p24.1-H IFNG-H IFNG-L IS MeanDecreaseAccuracy MeanDecreaseGini
## S100A12 0 0 0 0 0 0.1389333
## RGS13 0 0 0 0 0 0.1471667
## NM_014117 0 0 0 0 0 0.1365000
## NM_001040033 0 0 0 0 0 0.1400000
## NM_001033556 0 0 0 0 0 0.1473333
## MUC7 0 0 0 0 0 0.1409667
## MAL2 0 0 0 0 0 0.1527000
## KRT4 0 0 0 0 0 0.1384667
## JCHAIN 0 0 0 0 0 0.1481333
## IL7R 0 0 0 0 0 0.1458000
## GCNT4 0 0 0 0 0 0.1553667
## CLDN10 0 0 0 0 0 0.1439000
## CLCA2 0 0 0 0 0 0.1376333
## CCL13 0 0 0 0 0 0.1396333
## 85444 0 0 0 0 0 0.1338667
## 51633 0 0 0 0 0 0.1418000
None of the features have importance with only 1 sample each to train.
There weren’t any genes really in this set of few sample per 4 groups to say could be target genes.
=========================
Lets now see about age of patient.Those younger or equal to 72 years of age and those older than 72 years of age. We will see if any of their top genes can predict the class of lymphoma of the 3 classes and then the 4 groups.
table(topGenes$importance)
##
## Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 14
## There were 2 genes found in the data of genes of CHL younger than 72 years of age to match any of the 20 probe IDs found. Change is the avg/median group values.
## 2
## There were 5 genes found in the data of pDLBCL younger than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 5
## There were 7 genes found in the data of pDLBCL older than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 7
## There were 8 genes found in the data of mDLBCL older than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 8
## There were 8 genes found in the data of mDLBCL younger than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 8
## These are from the top 20 genes of mDLBCL and females, but only 4 genes were matched from their probe IDs to a gene in the features data.
## 4
## These are from the top 20 genes of mDLBCL and males, but only 7 genes were matched from their probe IDs to a gene in the features data.
## 7
## These are from the top 20 genes of pDLBCL and females, but only 3 genes were matched from their probe IDs to a gene in the features data.
## 3
## These are from the top 20 genes of pDLBCL and males, but only 2 genes were matched from their probe IDs to a gene in the features data.
## 2
## This is the top genes from the CHL group of females only, the number Gene_IDs are Entrez IDs because the other Gene ID wasn't available or there is not a Gene ID for it.
## 9
## This is the top genes from the CHL group of males only, there was only 1 gene of CHL and males from the available features genes of 21k that matched up to the top 20 genes in the data of 27k probe IDs
## 1
## top gene CHL avg/median group values
## 2
## top gene mDLBCL avg/median group values
## 8
## top gene pDLBCL avg/median group values
## 7
Lets work with those younger than 72 years of age.
y72 <- topGenes[grep('younger than 72',topGenes$importance),]
y72$Gene_ID
## [1] "UTS2B" "SPRR2A" "SPRR2A" "SPRR1B" "SPRR1B" "SCRG1"
## [7] "S100A7" "NOP10" "NM_201998" "MAL2" "LUM" "KIAA0825"
## [13] "GCNT4" "CLDN10" "CLDN10"
y72_df <- y72[,c(2:48,95)]
colnames(y72_df)
## [1] "pDLBCL" "CHL" "pDLBCL.1" "mDLBCL" "CHL.1" "mDLBCL.1"
## [7] "pDLBCL.2" "CHL.2" "CHL.3" "CHL.4" "CHL.5" "mDLBCL.2"
## [13] "mDLBCL.3" "CHL.6" "CHL.7" "pDLBCL.3" "CHL.8" "mDLBCL.4"
## [19] "mDLBCL.5" "mDLBCL.6" "mDLBCL.7" "CHL.9" "mDLBCL.8" "CHL.10"
## [25] "CHL.11" "CHL.12" "CHL.13" "mDLBCL.9" "mDLBCL.10" "mDLBCL.11"
## [31] "mDLBCL.12" "mDLBCL.13" "mDLBCL.14" "pDLBCL.4" "pDLBCL.5" "mDLBCL.15"
## [37] "mDLBCL.16" "CHL.14" "pDLBCL.6" "pDLBCL.7" "CHL.15" "CHL.16"
## [43] "CHL.17" "mDLBCL.17" "mDLBCL.18" "mDLBCL.19" "CHL.18" "Gene_ID"
y72_mx <- data.frame(t(y72_df[,1:47]))
colnames(y72_mx) <- y72_df$Gene_ID
y72_mx$class <- 'class'
CHL_y72 <- grep("CHL", colnames(y72_df))
mDLBCL_y72 <- grep("mDLBCL", colnames(y72_df))
pDLBCL_y72 <- grep("pDLBCL", colnames(y72_df))
y72_mx$class[CHL_y72] <- "CHL"
y72_mx$class[mDLBCL_y72] <- "mDLBCL"
y72_mx$class[pDLBCL_y72] <- "pDLBCL"
y72_mx$class <- as.factor(y72_mx$class)
paged_table(y72_mx)
Looks good, so now we can predict the class of the 3 lymphomas out of all 15 genes for 47 samples. But not quite, we want to predict the class of lymphoma on only the younger than 72 years of age group. But lets try it with all samples first.
set.seed(123)
inTrain <- sample(1:47,.8*47)
training <- y72_mx[inTrain,]
testing <- y72_mx[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 15 16 6
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 4 2
rf_y72_47 <- randomForest(training[1:15],training$class, mtry=5, ntree=5000, confusion=T, importance=T)
rf_y72_47$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 6 9 0 0.6000
## mDLBCL 7 9 0 0.4375
## pDLBCL 1 5 0 1.0000
The CHL scored 6/15 correct and 9/15 incorrect as mDLBCL. The mDLBCL scored 9/16 correct and 7/16 incorrect as mDLBCL. None of the pDLBCL class scored correctly with 1/6 incorrectly predicted as CHL and 5/6 incorrectly predicted as mDLBCL.
rf_y72_47$importance
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy
## UTS2B 5.204690e-04 -0.0081535931 -0.0008633333 -0.0032216240
## SPRR2A 3.228961e-03 -0.0057306421 0.0059933333 -0.0005249300
## SPRR2A.1 9.458874e-06 -0.0021849278 0.0006233333 -0.0007101362
## SPRR1B -2.963723e-03 -0.0044339033 0.0030500000 -0.0027433797
## SPRR1B.1 -8.793651e-04 -0.0065432684 0.0043866667 -0.0028587680
## SCRG1 4.909452e-04 -0.0090698268 0.0139700000 -0.0016431811
## S100A7 -9.147619e-04 -0.0039138312 0.0381500000 0.0036004271
## NOP10 1.903550e-03 0.0073429870 -0.0023900000 0.0033190474
## NM_201998 -3.835166e-03 -0.0063239610 -0.0037233333 -0.0051604873
## MAL2 6.473896e-03 0.0005084127 -0.0059066667 0.0013456611
## LUM 1.676697e-02 0.0168103968 0.0131600000 0.0155665899
## KIAA0825 -6.307547e-03 -0.0041718975 -0.0075933333 -0.0055093497
## GCNT4 4.531398e-02 0.0265963925 -0.0035866667 0.0269884384
## CLDN10 -6.380325e-03 -0.0003719841 0.0024066667 -0.0028180954
## CLDN10.1 -4.834127e-03 -0.0012796032 0.0031300000 -0.0020975470
## MeanDecreaseGini
## UTS2B 1.3580017
## SPRR2A 1.2200398
## SPRR2A.1 1.1745552
## SPRR1B 0.9401375
## SPRR1B.1 1.0071813
## SCRG1 1.6220900
## S100A7 1.8653951
## NOP10 1.4843159
## NM_201998 1.0920815
## MAL2 1.9269523
## LUM 2.3167806
## KIAA0825 1.1902492
## GCNT4 3.2139849
## CLDN10 0.9849677
## CLDN10.1 1.0046618
The weights of the genes in importance in decreasing the sample prediction or increasing it if not negative. Lets see how well it predicts the hold out set, but it wouldn’t because it gave an error, I tried it without the importance parameter set to TRUE and still same error of variables missing from training set. Not sure why, so lets only work with the samples of those younger than 72 years of age. for these same genes.
y72s <- labels_t[which(labels_t$age >= 72),]
paged_table(y72s)
y72_idx <- row.names(y72s)
y72_idx
## [1] "mDLBCL.1" "pDLBCL.2" "CHL.2" "CHL.5" "CHL.6" "mDLBCL.4"
## [7] "mDLBCL.6" "mDLBCL.7" "CHL.9" "mDLBCL.8" "CHL.10" "CHL.12"
## [13] "CHL.13" "mDLBCL.9" "mDLBCL.10" "mDLBCL.12" "mDLBCL.13" "mDLBCL.14"
## [19] "pDLBCL.5" "mDLBCL.16" "pDLBCL.6" "pDLBCL.7" "CHL.17" "mDLBCL.17"
## [25] "mDLBCL.18" "mDLBCL.19"
y72_mx_26 <- y72_mx[which(row.names(y72_mx) %in% y72_idx),]
paged_table(y72_mx_26)
Lets see how well these genes of those between 50-72 years of age including boundaries are good at predicting class of lymphoma in only those aged 50-72 years of age.
inTrain <- sample(1:26,.8*26)
training <- y72_mx_26[inTrain,]
testing <- y72_mx_26[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 6 11 3
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 2 3 1
rf_72_26 <- randomForest(training[1:15], training$class, strata=training$class, mtry=5, ntree=5000, confusion=T, importance=T)
rf_72_26$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 1 5 0 0.8333333
## mDLBCL 3 8 0 0.2727273
## pDLBCL 2 1 0 1.0000000
rf_72_26$importance
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy
## UTS2B -0.011666667 0.006751429 -0.0034 -0.0006871284
## SPRR2A -0.013876667 -0.002212619 0.0030 -0.0049347475
## SPRR2A.1 -0.010613333 -0.001098571 0.0055 -0.0028676696
## SPRR1B -0.003050000 -0.004775714 -0.0011 -0.0039229365
## SPRR1B.1 -0.004833333 -0.004044286 -0.0002 -0.0036862915
## SCRG1 0.003306667 -0.009000476 -0.0111 -0.0065602092
## S100A7 -0.006620000 -0.004933810 -0.0042 -0.0053010245
## NOP10 0.009773333 -0.004030238 0.0053 0.0005131385
## NM_201998 -0.005760000 -0.002718571 0.0018 -0.0029014430
## MAL2 -0.007740000 -0.006200714 -0.0086 -0.0065332684
## LUM -0.004056667 0.057295952 0.0438 0.0339465368
## KIAA0825 -0.005366667 -0.008261667 -0.0009 -0.0066513492
## GCNT4 0.005273333 -0.001271667 -0.0100 -0.0011872944
## CLDN10 -0.004023333 0.010723095 0.0265 0.0084736075
## CLDN10.1 -0.003356667 0.008898810 0.0206 0.0065077778
## MeanDecreaseGini
## UTS2B 0.7928557
## SPRR2A 0.6702171
## SPRR2A.1 0.6249305
## SPRR1B 0.5676094
## SPRR1B.1 0.5633314
## SCRG1 0.5722757
## S100A7 0.5388445
## NOP10 0.9513128
## NM_201998 0.5647244
## MAL2 0.3753888
## LUM 1.8760218
## KIAA0825 0.4670116
## GCNT4 0.9227978
## CLDN10 0.8005720
## CLDN10.1 0.7944664
predict5 <- predict(rf_72_26, testing)
Error in predict.randomForest(rf_72_26, testing) : variables in the training data missing in newdata
Now the model isn’t allowing prediction of the testing set and says the variables in the training data are missing in the newdata. This started after adding the importance parameter.
Since predict function isn’t working lets just use all the 26 samples to see how the model trains on those genes.
set.seed(123)
rf_y72_26 <- randomForest(y72_mx_26[1:15], y72_mx_26$class, mtry=5, ntree=5000, confusion=T, importance=T)
rf_y72_26$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 4 3 1 0.50000000
## mDLBCL 1 13 0 0.07142857
## pDLBCL 2 2 0 1.00000000
Out of these 26 samples, the mDLBCL class scored the best with 93% accuracy in predicting 13/14 correct and 1/14 as CHL. The CHL was next best with 50% accuracy in predicting 4/8 correct and 3/4 as mDLBCL and 1/4 as pDLBCL. The pDLBCL class scored 0% accuracy and predicted 2/4 as CHL and 2/4 as mDLBCL.
rf_y72_26$importance
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy
## UTS2B -0.004921905 -0.0078669048 -0.007866667 -0.006995352
## SPRR2A -0.006336667 -0.0014532540 0.012066667 -0.001316326
## SPRR2A.1 -0.007730000 -0.0031553968 0.013533333 -0.002122177
## SPRR1B -0.003055238 -0.0044924603 0.004733333 -0.002574820
## SPRR1B.1 -0.004906667 -0.0059356349 0.007166667 -0.003362537
## SCRG1 0.004000000 -0.0089527778 0.003900000 -0.002535634
## S100A7 -0.005980000 -0.0066020635 0.009266667 -0.003847689
## NOP10 -0.004996667 -0.0007676984 0.004833333 -0.001234947
## NM_201998 -0.009135238 0.0008504762 -0.003833333 -0.002430403
## MAL2 -0.003466667 -0.0035800794 -0.007066667 -0.004606131
## LUM 0.013640000 0.0974238095 0.107066667 0.068323628
## KIAA0825 -0.009131905 -0.0047123810 -0.005933333 -0.005936916
## GCNT4 0.071846667 0.0258205556 -0.006333333 0.032601391
## CLDN10 -0.002358571 0.0070901587 0.021566667 0.006474703
## CLDN10.1 -0.005471905 0.0045999206 0.018233333 0.003201456
## MeanDecreaseGini
## UTS2B 0.5095992
## SPRR2A 0.7364200
## SPRR2A.1 0.6908854
## SPRR1B 0.6325358
## SPRR1B.1 0.6553222
## SCRG1 0.8839646
## S100A7 0.9846226
## NOP10 0.9937391
## NM_201998 0.6118691
## MAL2 0.5604682
## LUM 3.1539450
## KIAA0825 0.4064231
## GCNT4 2.3053039
## CLDN10 0.8188338
## CLDN10.1 0.8340988
The GCNT4 gene helped predict CHL by 7.1%, The LUM gene helped predict mDLBCL by 9.7%, and the LUM gene helped predict pDLBCL by 10.7%. Although none of the predictions for pDLBCL were correct on the training model. These were in the samples of those between 50-72 years of age including boundaries.
============================= Now lets look at the older than 72 age group in predicting lymphomas.
o72 <- topGenes[grep('older than', topGenes$importance),]
old72 <- o72[,c(2:48,95)]
old72$Gene_ID
## [1] "TACSTD2" "SPRR1B" "MUC7" "MGAM2" "MAL2" "MAL2" "FABP4"
## [8] "DSG3" "DSG3" "DMKN" "DDX3Y" "CT45A6" "CLDN10" "CLDN10"
## [15] "CLCA2"
old72_mx <- data.frame(t(old72[,1:47]))
colnames(old72_mx) <- old72$Gene_ID
old72_mx$class <- 'class'
o72_idx <- labels_t[which(labels_t$age > 72),]
paged_table(o72_idx)
There are 25 samples all older than 72
summary(as.numeric(o72_idx$age))
## Min. 1st Qu. Median Mean 3rd Qu. Max.
## 73 76 79 80 84 94
old72_25 <- old72_mx[which(row.names(old72_mx) %in% row.names(o72_idx)),]
paged_table(old72_25)
CHL_o72 <- grep("CHL", row.names(old72_25))
mDLBCL_o72 <- grep("mDLBCL", row.names(old72_25))
pDLBCL_o72 <- grep("pDLBCL", row.names(old72_25))
old72_25$class[CHL_o72] <- "CHL"
old72_25$class[mDLBCL_o72] <- "mDLBCL"
old72_25$class[pDLBCL_o72] <- "pDLBCL"
old72_25$class <- as.factor(old72_25$class)
summary(old72_25)
## TACSTD2 SPRR1B MUC7 MGAM2
## Min. :2.376 Min. :2.568 Min. :1.763 Min. :1.599
## 1st Qu.:2.756 1st Qu.:2.826 1st Qu.:1.996 1st Qu.:1.867
## Median :2.952 Median :3.028 Median :2.135 Median :2.123
## Mean :3.317 Mean :3.888 Mean :2.323 Mean :2.276
## 3rd Qu.:3.210 3rd Qu.:3.461 3rd Qu.:2.381 3rd Qu.:2.374
## Max. :6.581 Max. :9.252 Max. :5.647 Max. :4.922
## MAL2 MAL2 FABP4 DSG3
## Min. :1.536 Min. :1.536 Min. :2.072 Min. :1.976
## 1st Qu.:1.813 1st Qu.:1.813 1st Qu.:2.672 1st Qu.:2.252
## Median :1.982 Median :1.982 Median :2.943 Median :2.425
## Mean :2.520 Mean :2.520 Mean :3.424 Mean :2.996
## 3rd Qu.:2.677 3rd Qu.:2.677 3rd Qu.:3.224 3rd Qu.:3.005
## Max. :5.041 Max. :5.041 Max. :8.134 Max. :7.203
## DSG3 DMKN DDX3Y CT45A6
## Min. :1.976 Min. :2.351 Min. :2.830 Min. :1.640
## 1st Qu.:2.252 1st Qu.:3.012 1st Qu.:3.523 1st Qu.:1.822
## Median :2.425 Median :3.370 Median :4.952 Median :1.864
## Mean :2.996 Mean :4.020 Mean :4.615 Mean :2.226
## 3rd Qu.:3.005 3rd Qu.:4.378 3rd Qu.:5.545 3rd Qu.:2.090
## Max. :7.203 Max. :7.304 Max. :6.323 Max. :8.502
## CLDN10 CLDN10 CLCA2 class
## Min. :2.734 Min. :2.734 Min. :1.339 CHL : 7
## 1st Qu.:2.992 1st Qu.:2.992 1st Qu.:1.628 mDLBCL:14
## Median :3.126 Median :3.126 Median :1.674 pDLBCL: 4
## Mean :3.743 Mean :3.743 Mean :1.922
## 3rd Qu.:3.525 3rd Qu.:3.525 3rd Qu.:1.759
## Max. :8.900 Max. :8.900 Max. :4.987
set.seed(123)
rf_old72_25 <- randomForest(old72_25[1:15], old72_25$class, mtry=4, ntree=5000, confusion=T, importance=T)
rf_old72_25$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 1 6 0 0.8571429
## mDLBCL 4 10 0 0.2857143
## pDLBCL 1 3 0 1.0000000
In the older than 72 years of age from 73-94 years of age with Lymphoma, there were 25 samples, and the best scoring class was the mDLBCL with 72% accuracy in predicting 10/14 correct and the other 4/14 as CHL. The next best class performed poorly with 1/7 CHL predicted correctly but 6/7 incorrectly predicted as mDLBCL. The worst class is pDLBCL that again scored 0% accuracy with these genes in predicting 4 classes incorrectly. The pDLBCL class predicted 1/4 as CHL and 3/4 as mDLBCL.
Lets see how many samples were in each class as we didn’t do that with this as it was done on all samples since the predict function is not working for this data right now.
table(old72_25$class)
##
## CHL mDLBCL pDLBCL
## 7 14 4
The mDLBCL class scored the best again and pDLBCL scored the worst as they have the most and least samples of the class of lymphomas respectively.
rf_old72_25$importance
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy
## TACSTD2 -0.0086866667 -0.0022625397 0.0056666667 -0.0021289055
## SPRR1B -0.0064466667 -0.0052607937 0.0002666667 -0.0039169042
## MUC7 -0.0029133333 -0.0044700000 -0.0048000000 -0.0040438345
## MGAM2 -0.0066633333 -0.0031702381 -0.0095000000 -0.0047801171
## MAL2 -0.0068833333 0.0007275397 -0.0055333333 -0.0023897175
## MAL2.1 -0.0111366667 0.0007120635 -0.0076000000 -0.0035726263
## FABP4 0.0052466667 -0.0026131746 -0.0094333333 -0.0015919719
## DSG3 0.0046133333 -0.0032990476 0.0015666667 -0.0001888012
## DSG3.1 0.0063166667 -0.0013016667 0.0011333333 0.0004591531
## DMKN 0.0031966667 -0.0048229365 0.0070333333 -0.0005444178
## DDX3Y 0.0578933333 0.0232614286 -0.0097666667 0.0243700666
## CT45A6 -0.0009933333 0.0026649206 -0.0084333333 0.0002214907
## CLDN10 -0.0040100000 0.0084064286 0.0193333333 0.0062033516
## CLDN10.1 -0.0015000000 0.0099531746 0.0225333333 0.0079183394
## CLCA2 -0.0066700000 -0.0087072222 -0.0003666667 -0.0067946748
## MeanDecreaseGini
## TACSTD2 0.8926602
## SPRR1B 0.9441474
## MUC7 0.8582549
## MGAM2 0.6565210
## MAL2 0.4781162
## MAL2.1 0.5511091
## FABP4 0.9187983
## DSG3 1.0332026
## DSG3.1 1.0389037
## DMKN 0.8775447
## DDX3Y 2.2316296
## CT45A6 0.7012828
## CLDN10 1.0663736
## CLDN10.1 1.0484142
## CLCA2 0.6892016
In the 73-94 year old group, DDX3Y gave a weight of 5.7% to CHL with this model, the gene DDX3Y also gave a weight of 2.3 to mDLBCL in predicting the class as such, and the gene giving more importance or weight to pDLBCL was CLDN10 with 1.9 %.
I will end this here. Whether by age or group when getting top genes without a control or baseline but using variation within the samples by avg/median per group, it doesn’t really help find the target gene. The best scoring set was the study gene set.
There may be a control to use of just EBV for fold change values of EBV only compared to EBV with CHL or mDLBCL or pDLBCL. We have worked with another study but of tumor cells not LCLs of blood RNA that had EBV alone and with CHL and with CHL as well as HIV but those samples were all younger than 50 years old an not good controls as well as not the same type of cell line.
We did notice though that in the older and younger than 72 years of age both sets had much more mDLBCL samples than the other two groups and much fewer samples of pDLBCL than the other 2 groups.
table(old72_25$class)
##
## CHL mDLBCL pDLBCL
## 7 14 4
table(y72_mx_26$class)
##
## CHL mDLBCL pDLBCL
## 8 14 4
And for the females…
fe <- labels_t[labels_t$gender == "female",]
table(fe$class)
##
## CHL mDLBCL pDLBCL
## 4 4 4
The females had an equal number of samples in each class, but not enough to train the model with a fair 80% training set and 20% validation set. For the females, the model scored terribly with genes selected as top genes by over or under expression of avg/median for this group. It scored 50% accuracy in predicting on validation set before that function stopped working. The group predicted all mDLBCL and the top importance gene with over 5% weighted importance in selecting mdLBCL in predictio was GCNT4 gene. That may be a gene of importance or not. It showed up in the younger than 72 as well.
And for males, the sample spread per group was…
male <- labels_t[labels_t$gender=='male',]
table(male$class)
##
## CHL mDLBCL pDLBCL
## 15 16 4
There were many more samples of CHL and mDLBCL but 1/4 as many samples of pDLBCL.
In Part 5 I added the importance feature and got: CHL mDLBCL pDLBCL MeanDecreaseAccuracy MeanDecreaseGini SPRR1B -0.008014683 0.001349286 -0.0031000000 -0.0026258170 1.484792 SMPX 0.005711429 -0.013979444 0.0212333333 -0.0006002453 1.878791 MAL2 0.016310794 0.015042302 -0.0132000000 0.0110458580 2.032820 LOC389834 0.003998333 0.013412063 -0.0161666667 0.0041829976 1.958738 FABP4 -0.003300238 -0.002621905 -0.0035000000 -0.0020681735 1.281468 DSG3 0.006465238 0.003182937 -0.0170666667 0.0017487496 1.474768 CT45A6 0.008539048 -0.003874603 -0.0023666667 0.0015063031 1.145961 CT45A10 0.015344286 0.022681746 0.0002666667 0.0161856538 2.037384 CLDN10 -0.002895238 0.021357222 -0.0070000000 0.0068391903 1.845981 CHIT1 -0.005499524 -0.008040000 -0.0059333333 -0.0055789810 1.332283
For the males, they predicted 4/7 correctly and had CT45A10 add 1.5% and 2.3% weighted importance to CHL and mDLBCL respectively, while MAL2 added 1.6% and 1.5% respectively to CHL and mDLBCL. The pDLBCL was added weight by SMPX of 2.1% but deducted 1.7%, 1.6%, and 1.3 % by DSG3, LOC389834, and MAL2 respectively.
MAL2 could be a gene of interest as it has weighted importance in the males as well as being a gene relevant in the study’s published article, it is in the data of research study genes. DDX3Y in those 73-94 years old with CHL of mDLBCL in both genes. The LUM gene in both DLBCL 50-72 years of age, and GCNT4 gene in CHL of younger than 72 years of age.
The pDLBCL class of lymphoma struggles with being correctly identified in all subgroups. But in all groups of just the 3 lymphomas it was actually the one that was correctly predicted in the Part 4 on the research genes data using the validation test set.
Some genes to test for consideration into our larger database of pathologie for elderly large B-cell lymphomas are the research study genes as well as these most importance genes of the gender and age subgroups: CT45A10, MAL2, SMPX, LUM, GCNT4, and DDX3Y.
rg <- topGenes[grep("Research", topGenes$importance),]
rg$Gene_ID
## [1] "PTPRD" "PDCD1LG2" "PAX5" "MUM1" "IFNG" "IDO1"
## [7] "ERP44" "CD5" "CD274" "BCL6" "BCL2" "LDHA"
## [13] "LDHC" "LDHD"
We can see how well these genes predict the class of lymphoma right now.
total <- c(rg$Gene_ID,"CT45A10","MAL2","SMPX","LUM","GCNT4","DDX3Y")
total
## [1] "PTPRD" "PDCD1LG2" "PAX5" "MUM1" "IFNG" "IDO1"
## [7] "ERP44" "CD5" "CD274" "BCL6" "BCL2" "LDHA"
## [13] "LDHC" "LDHD" "CT45A10" "MAL2" "SMPX" "LUM"
## [19] "GCNT4" "DDX3Y"
tg <- topGenes[which(topGenes$Gene_ID %in% total),]
tg
## ID pDLBCL CHL pDLBCL.1 mDLBCL CHL.1 mDLBCL.1
## 16 TC0X00009227.hg.1 2.127182 2.788845 2.115515 2.305325 2.191573 2.212230
## 22 TC0900009520.hg.1 3.685317 3.676430 3.148372 3.455512 4.022412 3.541898
## 23 TC0900006560.hg.1 4.634469 2.942214 4.499253 4.373373 3.864916 5.254167
## 24 TC0900009996.hg.1 5.837732 7.448931 6.307865 6.419925 6.990574 7.070463
## 30 TC1900006526.hg.1 1.878937 2.237178 1.766060 2.484003 2.135487 2.082015
## 35 TC0800008663.hg.1 1.890996 2.975367 2.128983 1.633711 2.030586 1.798673
## 36 TC0800008663.hg.1 1.890996 2.975367 2.128983 1.633711 2.030586 1.798673
## 37 TC0800008663.hg.1 1.890996 2.975367 2.128983 1.633711 2.030586 1.798673
## 38 TC0800008663.hg.1 1.890996 2.975367 2.128983 1.633711 2.030586 1.798673
## 39 TC0800008663.hg.1 1.890996 2.975367 2.128983 1.633711 2.030586 1.798673
## 40 TC0800008663.hg.1 1.890996 2.975367 2.128983 1.633711 2.030586 1.798673
## 41 TC1200011495.hg.1 3.260346 3.458338 3.151006 5.130047 2.721448 3.182379
## 49 TC1200011177.hg.1 3.069225 2.962287 3.226458 3.193519 4.000244 2.865105
## 50 TC0800007382.hg.1 5.266947 3.515371 5.319546 3.651946 3.497938 3.424882
## 51 TC0500011157.hg.1 2.670680 2.730650 2.303896 3.572696 2.508714 2.633943
## 52 TC0500011157.hg.1 2.670680 2.730650 2.303896 3.572696 2.508714 2.633943
## 56 TC0900011013.hg.1 5.575510 4.191834 5.138372 5.291534 3.627553 5.344731
## 63 TC0Y00006632.hg.1 4.729324 4.442029 5.586965 5.886503 5.041583 3.522928
## 67 TC0X00010919.hg.1 2.032138 1.850398 1.951956 1.826161 2.092506 2.241136
## 78 TC1100007790.hg.1 6.412200 6.252281 6.460336 6.647232 6.405831 6.283571
## 79 TC0900006559.hg.1 6.521790 4.592286 7.084118 6.452860 4.696020 7.835426
## 81 TC0300013471.hg.1 4.810390 4.601292 4.573067 5.211272 5.291846 5.040143
## 82 TC1800008891.hg.1 6.988205 7.230086 7.455283 7.019910 7.822121 6.847939
## 85 TC1100007003.hg.1 8.658361 7.858679 9.184861 9.338661 5.792496 8.716444
## 86 TC1100007005.hg.1 3.985598 4.007080 4.101672 3.650014 4.342355 3.828057
## 87 TC1600010866.hg.1 5.712537 6.230099 5.258146 5.503446 5.596182 5.653517
## pDLBCL.2 CHL.2 CHL.3 CHL.4 CHL.5 mDLBCL.2 mDLBCL.3 CHL.6
## 16 2.625499 2.005831 2.210159 2.185680 2.006926 2.616547 2.725236 2.448354
## 22 3.398471 3.771869 3.356006 3.531764 4.031001 3.221535 3.692095 3.412819
## 23 4.465464 4.698898 4.789598 4.302539 4.900090 5.578819 3.659990 4.314726
## 24 6.104317 6.380601 6.751569 6.779292 6.554107 6.658492 6.705532 6.135404
## 30 2.482157 2.270221 2.262848 2.694966 2.766866 2.434437 2.699674 2.744835
## 35 2.072465 1.854145 1.863012 1.694038 2.676579 1.960693 2.266690 2.245026
## 36 2.072465 1.854145 1.863012 1.694038 2.676579 1.960693 2.266690 2.245026
## 37 2.072465 1.854145 1.863012 1.694038 2.676579 1.960693 2.266690 2.245026
## 38 2.072465 1.854145 1.863012 1.694038 2.676579 1.960693 2.266690 2.245026
## 39 2.072465 1.854145 1.863012 1.694038 2.676579 1.960693 2.266690 2.245026
## 40 2.072465 1.854145 1.863012 1.694038 2.676579 1.960693 2.266690 2.245026
## 41 5.337861 3.032603 2.834858 4.170451 6.316056 4.525430 3.006970 3.831408
## 49 2.636234 3.312958 2.993484 2.872059 2.846098 1.954850 2.565927 3.621671
## 50 3.835786 3.445356 4.282418 3.533667 3.440680 3.004267 3.535909 3.842913
## 51 2.328919 3.527398 2.904966 4.279073 3.237367 2.506160 2.650434 3.476415
## 52 2.328919 3.527398 2.904966 4.279073 3.237367 2.506160 2.650434 3.476415
## 56 5.076654 5.082100 5.143249 5.088958 5.213799 5.620760 5.279476 5.313366
## 63 2.830357 6.080812 6.318606 5.683482 6.015394 5.993447 4.562960 3.750895
## 67 2.101659 1.812784 1.883707 1.923404 1.946816 1.869453 2.011222 1.951627
## 78 6.417821 7.262511 7.126876 7.336942 6.569752 6.542083 6.968191 6.705105
## 79 6.744887 6.579888 6.194723 6.055063 6.050932 6.054614 5.597942 7.242420
## 81 5.131215 5.081345 5.115395 5.670942 5.445840 5.290428 5.105497 5.332240
## 82 7.239416 7.108641 7.002661 7.059933 7.129604 6.492504 7.272078 6.981597
## 85 8.707534 8.685312 8.980201 8.782031 8.994080 10.007422 8.880994 8.760310
## 86 4.128118 3.997067 4.064068 3.970572 4.475421 3.969665 4.494151 4.522051
## 87 5.386853 5.428130 5.699283 5.174769 5.795505 5.112403 5.504082 5.147836
## CHL.7 pDLBCL.3 CHL.8 mDLBCL.4 mDLBCL.5 mDLBCL.6 mDLBCL.7 CHL.9
## 16 2.273527 2.369173 2.173246 2.175879 2.317447 2.647874 2.321997 2.182016
## 22 3.451064 2.983141 4.329820 3.077683 3.609745 3.551329 3.633576 3.063946
## 23 3.479858 4.062027 3.876076 4.935213 4.231856 4.578427 4.960384 3.718218
## 24 6.052747 7.398400 6.762964 7.208099 7.431777 6.782725 7.397093 6.606534
## 30 2.223445 2.139963 2.403510 4.337290 2.415194 2.250006 2.399275 2.597851
## 35 1.803915 1.807764 2.111299 1.957177 1.784722 1.676013 2.074073 1.964451
## 36 1.803915 1.807764 2.111299 1.957177 1.784722 1.676013 2.074073 1.964451
## 37 1.803915 1.807764 2.111299 1.957177 1.784722 1.676013 2.074073 1.964451
## 38 1.803915 1.807764 2.111299 1.957177 1.784722 1.676013 2.074073 1.964451
## 39 1.803915 1.807764 2.111299 1.957177 1.784722 1.676013 2.074073 1.964451
## 40 1.803915 1.807764 2.111299 1.957177 1.784722 1.676013 2.074073 1.964451
## 41 3.967865 4.435109 4.213169 4.802820 5.022067 3.781744 3.916393 3.646477
## 49 2.899106 3.404577 2.003622 2.505606 2.953850 2.900375 2.973138 2.899324
## 50 3.281838 4.762571 3.442793 3.189192 3.590060 3.672584 3.495786 3.231478
## 51 4.580725 2.440818 4.396889 2.317857 3.094497 2.209653 2.533333 2.738789
## 52 4.580725 2.440818 4.396889 2.317857 3.094497 2.209653 2.533333 2.738789
## 56 5.088203 5.496741 5.562172 5.563635 5.504069 6.149064 5.632225 5.176768
## 63 6.240052 2.863159 4.787857 4.984767 5.380479 3.407114 2.905741 5.689285
## 67 1.692387 2.209577 2.056874 1.898575 2.222977 2.296827 1.448551 1.822425
## 78 7.547240 7.051024 7.066170 6.232854 6.860914 6.692568 6.852710 6.962995
## 79 6.261641 6.556098 5.898913 7.673782 5.898791 5.837361 7.344261 5.383059
## 81 5.701903 5.345204 4.730280 5.180383 5.566423 5.418009 5.424370 5.429172
## 82 7.263808 7.176817 7.074783 7.098472 7.270708 6.945680 7.081180 7.226607
## 85 8.390140 9.195272 8.636065 9.858830 9.411728 10.192753 9.538618 8.203157
## 86 3.688503 3.708710 3.929166 3.244598 3.710451 3.895005 3.659041 4.450271
## 87 5.363676 5.116153 5.299886 5.224443 5.223130 5.609946 5.521872 5.581232
## mDLBCL.8 CHL.10 CHL.11 CHL.12 CHL.13 mDLBCL.9 mDLBCL.10 mDLBCL.11
## 16 2.301481 1.998574 2.521647 2.230016 2.366452 2.123432 2.455331 2.081947
## 22 3.638433 3.289788 3.486482 3.592392 3.673980 3.394398 4.003065 3.024652
## 23 4.949566 4.854521 4.865561 6.170380 4.249046 5.363083 3.558593 4.500945
## 24 6.216256 6.575761 6.376813 6.207869 6.533770 7.032194 7.322739 6.940962
## 30 2.173263 2.680258 2.245216 2.768394 2.852737 2.972367 1.893677 2.005839
## 35 1.812762 1.808683 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840
## 36 1.812762 1.808683 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840
## 37 1.812762 1.808683 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840
## 38 1.812762 1.808683 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840
## 39 1.812762 1.808683 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840
## 40 1.812762 1.808683 1.806734 1.650264 1.843799 2.344507 3.004668 2.128840
## 41 3.450354 6.125091 7.561275 6.752428 3.320851 4.386356 3.466170 4.577952
## 49 3.714553 2.972220 2.833512 2.915523 2.697077 2.293754 3.120178 2.215032
## 50 4.702419 3.412869 3.270835 3.817595 3.442922 3.494170 4.035177 3.550920
## 51 2.809192 2.444709 2.246335 2.215298 3.977876 2.158012 2.434838 2.398846
## 52 2.809192 2.444709 2.246335 2.215298 3.977876 2.158012 2.434838 2.398846
## 56 5.199758 4.840189 5.851499 5.756560 5.280367 6.078944 4.829168 5.336893
## 63 5.258770 3.601001 5.510998 5.872358 5.606708 5.372304 3.213704 5.879588
## 67 1.916119 1.849721 1.923644 1.897072 1.688631 1.913212 2.775583 1.664943
## 78 6.253627 6.821408 6.528702 6.601854 6.999369 6.485916 6.485993 6.806347
## 79 7.616847 7.047635 5.557824 7.383035 6.014271 7.417413 5.027237 5.379237
## 81 5.824775 5.136576 5.084341 5.915606 5.360682 4.993347 5.372846 5.262921
## 82 7.124863 7.394500 7.110367 7.105207 7.400672 7.438141 7.411634 7.394885
## 85 9.712842 8.428529 8.651220 9.391049 7.980798 9.063086 9.446182 9.497101
## 86 4.151815 3.789925 3.863195 3.386810 3.950610 4.057919 4.283066 4.380149
## 87 5.587457 5.632588 5.475959 5.158768 5.547694 5.761411 5.455434 5.684329
## mDLBCL.12 mDLBCL.13 mDLBCL.14 pDLBCL.4 pDLBCL.5 mDLBCL.15 mDLBCL.16 CHL.14
## 16 2.246569 2.186792 2.191737 2.297036 2.093381 2.195214 2.149873 2.361694
## 22 2.729431 3.280114 3.446065 3.111890 3.248538 2.647033 3.586893 3.981202
## 23 5.675743 5.450906 5.200995 4.543541 3.932478 4.358680 4.855219 4.211558
## 24 6.698119 6.779600 6.928266 6.501964 6.263106 7.318072 7.485727 6.903905
## 30 2.835851 2.551476 2.777856 2.428017 2.205217 2.749662 2.434373 2.015950
## 35 1.879105 4.973944 2.167296 3.105209 4.960235 5.255127 1.764277 1.652628
## 36 1.879105 4.973944 2.167296 3.105209 4.960235 5.255127 1.764277 1.652628
## 37 1.879105 4.973944 2.167296 3.105209 4.960235 5.255127 1.764277 1.652628
## 38 1.879105 4.973944 2.167296 3.105209 4.960235 5.255127 1.764277 1.652628
## 39 1.879105 4.973944 2.167296 3.105209 4.960235 5.255127 1.764277 1.652628
## 40 1.879105 4.973944 2.167296 3.105209 4.960235 5.255127 1.764277 1.652628
## 41 3.558495 4.791267 4.619052 4.740109 5.492673 4.449728 5.137586 3.281031
## 49 2.810134 2.879991 3.027688 2.902845 2.779238 2.458244 2.394065 2.197446
## 50 4.298867 4.253456 3.812757 3.992336 4.760222 3.066835 3.501029 3.652181
## 51 2.259000 3.285865 2.657891 5.671400 2.738380 2.787181 2.322830 2.287320
## 52 2.259000 3.285865 2.657891 5.671400 2.738380 2.787181 2.322830 2.287320
## 56 5.395473 6.052639 5.145139 5.364440 5.632315 5.464782 5.695070 4.102102
## 63 4.257136 3.124913 4.952093 2.722700 3.023548 5.844505 4.862272 4.833059
## 67 1.767089 1.867756 2.122229 1.549269 1.777176 2.192730 6.989247 1.590206
## 78 6.905681 6.881819 6.655850 6.892991 6.814038 6.671599 6.493284 6.810164
## 79 6.765949 6.377471 6.982544 5.378472 6.466849 5.119697 6.647098 5.499239
## 81 4.870469 5.052154 5.326902 5.232217 4.857462 5.320457 5.240318 4.854063
## 82 6.901166 7.052345 7.315581 7.316012 6.972438 7.099695 7.610189 6.991149
## 85 9.781190 8.907587 8.819691 8.458703 9.000184 9.675630 9.904595 7.335124
## 86 3.909456 3.207274 3.748995 3.555433 3.570633 3.294096 3.421933 3.944531
## 87 5.955431 5.252791 5.658986 5.531630 5.398580 5.464599 5.499535 5.980378
## pDLBCL.6 pDLBCL.7 CHL.15 CHL.16 CHL.17 mDLBCL.17 mDLBCL.18 mDLBCL.19
## 16 4.324170 2.138477 2.556369 2.189032 2.169210 2.250016 2.203880 2.064499
## 22 3.500345 3.130425 3.229043 3.551180 3.628847 3.120526 3.477699 3.912454
## 23 6.198815 6.192865 4.723221 4.134288 4.129567 4.505849 4.412282 7.327919
## 24 6.627168 6.503495 6.578960 7.528055 6.737099 6.622961 7.378854 6.642691
## 30 2.051298 2.847189 2.935235 2.763743 2.836168 2.390182 2.305522 1.602243
## 35 1.855264 1.535954 1.735947 2.060597 1.982091 3.926928 5.041233 3.994581
## 36 1.855264 1.535954 1.735947 2.060597 1.982091 3.926928 5.041233 3.994581
## 37 1.855264 1.535954 1.735947 2.060597 1.982091 3.926928 5.041233 3.994581
## 38 1.855264 1.535954 1.735947 2.060597 1.982091 3.926928 5.041233 3.994581
## 39 1.855264 1.535954 1.735947 2.060597 1.982091 3.926928 5.041233 3.994581
## 40 1.855264 1.535954 1.735947 2.060597 1.982091 3.926928 5.041233 3.994581
## 41 6.038296 5.820881 7.945361 4.598108 5.842693 4.643859 4.543454 2.319973
## 49 3.340810 2.771015 2.299081 3.430004 2.587612 2.950387 3.130588 2.376897
## 50 6.899326 6.879421 3.116050 3.261750 3.407501 4.166414 3.411087 3.237192
## 51 2.225384 3.200423 3.756094 4.764557 3.549531 2.678795 1.910101 3.166516
## 52 2.225384 3.200423 3.756094 4.764557 3.549531 2.678795 1.910101 3.166516
## 56 6.122227 6.658610 5.566924 5.846060 5.734322 6.061316 5.473001 5.232096
## 63 5.114663 6.323326 3.326681 3.075305 5.545422 5.347540 5.999314 4.784708
## 67 1.772256 1.910803 1.849019 1.893797 1.678924 1.838411 1.672015 2.331127
## 78 6.559307 6.593189 6.794859 7.171274 6.918259 6.452621 6.558975 6.462646
## 79 7.867803 7.101126 5.486161 5.100444 6.914670 7.538983 6.055738 6.074863
## 81 5.539399 5.533159 5.409903 5.608524 5.419001 5.043645 5.669209 4.830440
## 82 6.898820 6.885508 7.072722 7.482945 7.374372 6.847151 7.066109 7.098906
## 85 9.761196 8.909913 9.031017 8.432458 9.025153 9.456874 9.917845 8.877298
## 86 3.562440 3.005343 3.439547 3.338988 3.597280 3.879847 3.894580 4.129958
## 87 5.465887 5.397123 5.435433 5.266639 5.339224 5.475541 5.467432 5.556917
## CHL.18 CHL_mean pDLBCL_mean mDLBCL_mean CHL_x_mean mDLBCL_x_mean
## 16 2.287019 2.270851 2.511304 2.288665 2.298082 2.361564
## 22 3.289102 3.598376 3.275812 3.402207 3.370707 3.536921
## 23 5.549601 4.409204 4.816114 4.886600 4.506689 4.831362
## 24 6.153209 6.634640 6.443006 6.952027 6.704545 6.988172
## 30 3.269919 2.563412 2.224855 2.489710 2.781018 2.433110
## 35 1.797710 1.976677 2.419609 2.672251 1.962563 2.778345
## 36 1.797710 1.976677 2.419609 2.672251 1.962563 2.778345
## 37 1.797710 1.976677 2.419609 2.672251 1.962563 2.778345
## 38 1.797710 1.976677 2.419609 2.672251 1.962563 2.778345
## 39 1.797710 1.976677 2.419609 2.672251 1.962563 2.778345
## 40 1.797710 1.976677 2.419609 2.672251 1.962563 2.778345
## 41 6.021590 4.717953 4.784535 4.165605 5.624992 3.724252
## 49 3.542248 2.941346 3.016300 2.764194 3.080744 2.821040
## 50 4.542451 3.549400 5.214519 3.654747 3.408395 3.677508
## 51 4.695629 3.385176 2.947488 2.619382 3.610444 2.775894
## 52 4.695629 3.385176 2.947488 2.619382 3.610444 2.775894
## 56 6.237398 5.194917 5.633109 5.517489 5.391635 5.577268
## 63 6.043098 5.129717 4.149255 4.777039 3.438471 3.529136
## 67 1.955676 1.861033 1.913104 2.243268 1.886041 1.892166
## 78 6.943623 6.885538 6.650113 6.609724 6.873161 6.746573
## 79 6.834273 6.041710 6.715143 6.484906 6.219165 6.788775
## 81 4.973301 5.271697 5.127764 5.252200 5.371811 5.155541
## 82 7.058475 7.204750 7.116563 7.119457 7.232941 7.063386
## 85 9.037384 8.441853 8.984503 9.450268 8.663078 9.010911
## 86 3.554003 3.911129 3.702243 3.840504 3.772628 3.797131
## 87 5.245798 5.494688 5.408364 5.508635 5.370624 5.483066
## pDLBCL_x_mean CHL_y_mean mDLBCL_y_mean pDLBCL_y_mean CHL_young72_mean
## 16 2.346272 2.263589 2.270441 2.676336 2.312052
## 22 3.185510 3.659088 3.368528 3.366115 3.639698
## 23 4.250877 4.383208 4.900410 5.381351 4.286527
## 24 6.566947 6.615999 6.942991 6.319065 6.725635
## 30 2.313839 2.505384 2.503860 2.135871 2.454810
## 35 2.986418 1.980441 2.645727 1.852799 1.948832
## 36 2.986418 1.980441 2.645727 1.852799 1.948832
## 37 2.986418 1.980441 2.645727 1.852799 1.948832
## 38 2.986418 1.980441 2.645727 1.852799 1.948832
## 39 2.986418 1.980441 2.645727 1.852799 1.948832
## 40 2.986418 1.980441 2.645727 1.852799 1.948832
## 41 5.001438 4.476076 4.275943 4.567632 4.483841
## 49 2.930723 2.904173 2.749982 3.101877 2.945504
## 50 4.337729 3.587002 3.649057 6.091310 3.570221
## 51 3.294879 3.325104 2.580254 2.600096 3.556529
## 52 3.294879 3.325104 2.580254 2.600096 3.556529
## 56 5.392537 5.142459 5.502544 5.873680 5.115671
## 63 2.859941 5.580716 5.089015 5.438570 5.115297
## 67 1.909420 1.854364 2.331044 1.916788 1.877034
## 78 6.793968 6.888838 6.575512 6.506258 6.937206
## 79 6.286577 5.994389 6.408938 7.143709 5.729706
## 81 5.141524 5.245001 5.276365 5.114004 5.176928
## 82 7.176171 7.197232 7.133475 7.056954 7.189808
## 85 8.840423 8.382859 9.560108 9.128583 8.301011
## 86 3.740724 3.948062 3.851347 3.663763 3.844923
## 87 5.358304 5.527772 5.515028 5.458423 5.516353
## mDLBCL_young72_mean pDLBCL_young72_mean CHL_old mDLBCL_old pDLBCL_old
## 16 2.373619 2.227226 2.200221 2.252256 2.795382
## 22 3.275095 3.232180 3.527539 3.456683 3.319445
## 23 4.450610 4.434823 4.619507 5.073453 5.197405
## 24 6.912460 6.511490 6.478649 6.968985 6.374521
## 30 2.464801 2.053244 2.749587 2.500386 2.396465
## 35 2.504964 2.233238 2.024413 2.743946 2.605980
## 36 2.504964 2.233238 2.024413 2.743946 2.605980
## 37 2.504964 2.233238 2.024413 2.743946 2.605980
## 38 2.504964 2.233238 2.024413 2.743946 2.605980
## 39 2.504964 2.233238 2.024413 2.743946 2.605980
## 40 2.504964 2.233238 2.024413 2.743946 2.605980
## 41 4.452032 3.896642 5.119286 4.042850 5.672428
## 49 2.556904 3.150776 2.934218 2.853033 2.881824
## 50 3.399990 4.835350 3.513708 3.763929 5.593689
## 51 2.834969 3.271698 3.091426 2.526988 2.623277
## 52 2.834969 3.271698 3.091426 2.526988 2.623277
## 56 5.416252 5.393766 5.330767 5.560876 5.872451
## 63 5.591247 3.975537 5.154437 4.428093 4.322974
## 67 1.964581 1.935735 1.833602 2.362706 1.890473
## 78 6.749394 6.704138 6.796963 6.549865 6.596089
## 79 5.750523 6.385119 6.576574 6.799641 7.045166
## 81 5.292833 4.990220 5.434160 5.234786 5.265309
## 82 7.091630 7.234080 7.230365 7.131383 6.999046
## 85 9.468589 8.874299 8.683297 9.442417 9.094707
## 86 3.916421 3.837853 4.024624 3.807967 3.566634
## 87 5.415331 5.404617 5.457549 5.548622 5.412111
## CHL_median mDLBCL_median pDLBCL_median CHL_x_median mDLBCL_x_median
## 16 2.210159 2.229399 2.217757 2.318693 2.267113
## 22 3.551180 3.466606 3.198455 3.351304 3.587737
## 23 4.302539 4.895216 4.521397 4.518973 5.107275
## 24 6.578960 6.934614 6.404914 6.577360 6.925031
## 30 2.680258 2.424783 2.172590 2.754289 2.475376
## 35 1.854145 2.101456 1.981731 1.934640 2.170381
## 36 1.854145 2.101456 1.981731 1.934640 2.170381
## 37 1.854145 2.101456 1.981731 1.934640 2.170381
## 38 1.854145 2.101456 1.981731 1.934640 2.170381
## 39 1.854145 2.101456 1.981731 1.934640 2.170381
## 40 1.854145 2.101456 1.981731 1.934640 2.170381
## 41 4.170451 4.487579 5.038985 5.361600 3.549386
## 49 2.899324 2.872548 2.986035 3.201112 2.872548
## 50 3.442922 3.543415 5.014759 3.337309 3.515847
## 51 3.476415 2.583638 2.555749 3.616255 2.642188
## 52 3.476415 2.583638 2.555749 3.616255 2.642188
## 56 5.213799 5.468891 5.536125 5.440145 5.488478
## 63 5.545422 4.968430 3.876436 3.463841 3.323921
## 67 1.883707 1.914666 1.931379 1.871759 1.939489
## 78 6.918259 6.603103 6.576248 6.808133 6.867265
## 79 6.050932 6.415165 6.650493 6.266898 6.860866
## 81 5.332240 5.251620 5.181716 5.371072 5.078825
## 82 7.110367 7.098689 7.082511 7.233611 7.066763
## 85 8.651220 9.476988 8.955049 8.596384 8.894291
## 86 3.944531 3.887213 3.639672 3.614736 3.743549
## 87 5.435433 5.503764 5.397851 5.351036 5.512977
## pDLBCL_x_median CHL_y_median mDLBCL_y_median pDLBCL_y_median
## 16 2.333105 2.210159 2.225225 2.132830
## 22 3.180214 3.628847 3.450789 3.324358
## 23 4.263745 4.249046 4.716823 5.413667
## 24 6.382535 6.606534 6.934614 6.405680
## 30 2.316617 2.403510 2.424783 1.965117
## 35 2.588837 1.854145 2.044766 1.873130
## 36 2.588837 1.854145 2.044766 1.873130
## 37 2.588837 1.854145 2.044766 1.873130
## 38 2.588837 1.854145 2.044766 1.873130
## 39 2.588837 1.854145 2.044766 1.873130
## 40 2.588837 1.854145 2.044766 1.873130
## 41 5.038985 3.967865 4.534442 4.540613
## 49 2.841041 2.899106 2.855255 3.147842
## 50 4.376279 3.445356 3.570490 6.099484
## 51 2.589599 3.237367 2.470499 2.487288
## 52 2.589599 3.237367 2.470499 2.487288
## 56 5.430591 5.176768 5.468891 5.848868
## 63 2.846758 5.683482 5.303155 5.350814
## 67 1.939417 1.883707 1.914666 1.931379
## 78 6.853515 6.943623 6.550529 6.509822
## 79 6.511474 6.050932 6.263861 7.092622
## 81 5.181716 5.291846 5.276675 5.171774
## 82 7.208117 7.110367 7.099300 6.943512
## 85 8.853859 8.651220 9.586366 9.047387
## 86 3.639672 3.950610 3.894792 3.774019
## 87 5.392716 5.475959 5.501491 5.431505
## CHL_young72_median mDLBCL_young72_median pDLBCL_young72_median
## 16 2.241843 2.311386 2.212109
## 22 3.541472 3.338523 3.130131
## 23 4.257049 4.366026 4.521397
## 24 6.757266 6.823247 6.404914
## 30 2.266534 2.459220 2.009450
## 35 1.830439 2.044766 2.009990
## 36 1.830439 2.044766 2.009990
## 37 1.830439 2.044766 2.009990
## 38 1.830439 2.044766 2.009990
## 39 1.830439 2.044766 2.009990
## 40 1.830439 2.044766 2.009990
## 41 4.069158 4.551691 3.847727
## 49 2.930696 2.512086 3.147842
## 50 3.471647 3.543415 5.014759
## 51 3.641746 2.718807 2.555749
## 52 3.641746 2.718807 2.555749
## 56 5.116104 5.400837 5.430591
## 63 5.276291 5.862046 3.796242
## 67 1.888752 1.940337 1.992047
## 78 7.004896 6.738973 6.676664
## 79 5.728369 5.748366 6.538944
## 81 5.099868 5.276675 5.021303
## 82 7.091712 7.185201 7.246415
## 85 8.643643 9.454415 8.921611
## 86 3.936849 3.840058 3.847154
## 87 5.431782 5.484022 5.394888
## CHL_old72_median mDLBCL_old72_median pDLBCL_old72_median CHL_change
## 16 2.182016 2.208055 2.381988 1.0274607
## 22 3.592392 3.509799 3.323504 1.0132904
## 23 4.314726 4.954975 5.329164 1.0247912
## 24 6.554107 6.980230 6.383300 1.0084634
## 30 2.766866 2.394729 2.343687 0.9564051
## 35 1.964451 2.120684 1.963865 1.0660857
## 36 1.964451 2.120684 1.963865 1.0660857
## 37 1.964451 2.120684 1.963865 1.0660857
## 38 1.964451 2.120684 1.963865 1.0660857
## 39 1.964451 2.120684 1.963865 1.0660857
## 40 1.964451 2.120684 1.963865 1.0660857
## 41 5.842693 4.151375 5.656777 1.1312813
## 49 2.899324 2.890183 2.775126 1.0144939
## 50 3.440680 3.586806 5.819822 1.0309266
## 51 3.237367 2.484085 2.533650 0.9737546
## 52 3.237367 2.484085 2.533650 0.9737546
## 56 5.280367 5.518318 5.877271 0.9963785
## 63 5.606708 4.823490 4.069106 0.9250364
## 67 1.849721 1.914666 1.843989 0.9879631
## 78 6.821408 6.489638 6.576248 0.9952703
## 79 6.914670 6.874246 6.923007 0.9984760
## 81 5.419001 5.210350 5.332187 0.9886459
## 82 7.226607 7.089826 6.935629 1.0132740
## 85 8.760310 9.497746 8.955049 0.9757991
## 86 3.950610 3.887213 3.566536 0.9915320
## 87 5.547694 5.539394 5.397851 1.0109017
## pDLBCL_change mDLBCL_change CHL_x_change CHL_y_change pDLBCL_x_change
## 16 1.1323624 1.0265838 0.9911110 1.0241751 1.0056438
## 22 1.0241858 0.9814230 1.0057899 1.0083334 1.0016652
## 23 1.0651827 0.9982401 0.9972816 1.0315745 0.9969820
## 24 1.0059472 1.0025111 1.0193367 1.0014327 1.0288932
## 30 1.0240562 1.0267764 1.0097044 1.0423853 0.9988005
## 35 1.2209574 1.2716185 1.0144332 1.0681157 1.1535752
## 36 1.2209574 1.2716185 1.0144332 1.0681157 1.1535752
## 37 1.2209574 1.2716185 1.0144332 1.0681157 1.1535752
## 38 1.2209574 1.2716185 1.0144332 1.0681157 1.1535752
## 39 1.2209574 1.2716185 1.0144332 1.0681157 1.1535752
## 40 1.2209574 1.2716185 1.0144332 1.0681157 1.1535752
## 41 0.9495037 0.9282521 1.0491257 1.1280816 0.9925487
## 49 1.0101355 0.9622795 0.9623980 1.0017481 1.0315665
## 50 1.0398345 1.0314197 1.0213004 1.0411120 0.9911911
## 51 1.1532775 1.0138347 0.9983931 1.0271014 1.2723512
## 52 1.1532775 1.0138347 0.9983931 1.0271014 1.2723512
## 56 1.0175182 1.0088861 0.9910829 0.9933725 0.9929928
## 63 1.0703788 0.9614787 0.9926756 0.9819185 1.0046309
## 67 0.9905377 1.1716238 1.0076303 0.9844228 0.9845328
## 78 1.0112321 1.0010026 1.0095515 0.9921100 0.9913116
## 79 1.0097211 1.0108712 0.9923833 0.9906555 0.9654614
## 81 0.9895880 1.0001106 1.0001376 0.9911477 0.9922436
## 82 1.0048078 1.0029256 0.9999074 1.0122168 0.9955681
## 85 1.0032892 0.9971806 1.0077585 0.9689800 0.9984825
## 86 1.0171915 0.9879837 1.0436801 0.9993551 1.0277640
## 87 1.0019475 1.0008851 1.0036606 1.0094619 0.9936187
## pDLBCL_y_change mDLBCL_x_change mDLBCL_y_change CHL_old72_change
## 16 1.2548288 1.0416610 1.0203197 1.0083432
## 22 1.0125607 0.9858361 0.9761619 0.9819472
## 23 0.9940306 0.9459763 1.0389218 1.0706374
## 24 0.9864784 1.0091177 1.0012080 0.9884869
## 30 1.0868923 0.9829256 1.0326120 0.9937550
## 35 0.9891461 1.2801184 1.2939021 1.0305235
## 36 0.9891461 1.2801184 1.2939021 1.0305235
## 37 0.9891461 1.2801184 1.2939021 1.0305235
## 38 0.9891461 1.2801184 1.2939021 1.0305235
## 39 0.9891461 1.2801184 1.2939021 1.0305235
## 40 0.9891461 1.2801184 1.2939021 1.0305235
## 41 1.0059505 1.0492667 0.9429921 0.8761862
## 49 0.9853981 0.9820690 0.9631304 1.0120353
## 50 0.9986599 1.0459806 1.0220046 1.0212250
## 51 1.0453538 1.0506040 1.0444264 0.9549200
## 52 1.0453538 1.0506040 1.0444264 0.9549200
## 56 1.0042421 1.0161774 1.0061535 1.0095448
## 63 1.0164004 1.0617389 0.9596203 0.9193340
## 67 0.9924451 0.9756004 1.2174676 0.9912860
## 78 0.9994526 0.9824250 1.0038139 0.9964165
## 79 1.0072029 0.9894924 1.0231610 0.9511046
## 81 0.9888296 1.0151050 0.9999414 1.0027972
## 82 1.0163378 0.9995221 1.0048138 1.0005201
## 85 1.0089745 1.0131118 0.9972609 0.9912088
## 86 0.9707856 1.0143131 0.9888452 1.0187348
## 87 1.0049560 0.9945744 1.0024606 0.9837509
## CHL_young72_change pDLBCL_old_change pDLBCL_young72_change
## 16 1.0313176 1.1735498 1.0068339
## 22 1.0277358 0.9987784 1.0326021
## 23 1.0069247 0.9752758 0.9808523
## 24 0.9953189 0.9986247 1.0166397
## 30 1.0830676 1.0225193 1.0217941
## 35 1.0646796 1.3269649 1.1110695
## 36 1.0646796 1.3269649 1.1110695
## 37 1.0646796 1.3269649 1.1110695
## 38 1.0646796 1.3269649 1.1110695
## 39 1.0646796 1.3269649 1.1110695
## 40 1.0646796 1.3269649 1.1110695
## 41 1.1019090 1.0027667 1.0127127
## 49 1.0050527 1.0384479 1.0009323
## 50 1.0283938 0.9611444 0.9642239
## 51 0.9766000 1.0353747 1.2801330
## 52 0.9766000 1.0353747 1.2801330
## 56 0.9999154 0.9991800 0.9932190
## 63 0.9694873 1.0623891 1.0472298
## 67 0.9937958 1.0252084 0.9717316
## 78 0.9903367 1.0030170 1.0041149
## 79 1.0002335 1.0176455 0.9764756
## 81 1.0151102 0.9874576 0.9938096
## 82 1.0138324 1.0091436 0.9982977
## 85 0.9603602 1.0155955 0.9946969
## 86 0.9766500 1.0000272 0.9975824
## 87 1.0155697 1.0026417 1.0018033
## mDLBCL_young72_change mDLBCL_old72_change
## 16 1.0269248 1.0200182
## 22 0.9810011 0.9848665
## 23 1.0193733 1.0239110
## 24 1.0130749 0.9983890
## 30 1.0022697 1.0441206
## 35 1.2250611 1.2938962
## 36 1.2250611 1.2938962
## 37 1.2250611 1.2938962
## 38 1.2250611 1.2938962
## 39 1.2250611 1.2938962
## 40 1.2250611 1.2938962
## 41 0.9781052 0.9738582
## 49 1.0178409 0.9871461
## 50 0.9595235 1.0493818
## 51 1.0427252 1.0172708
## 52 1.0427252 1.0172708
## 56 1.0028542 1.0077121
## 63 0.9538046 0.9180268
## 67 1.0124945 1.2340041
## 78 1.0015464 1.0092805
## 79 1.0003752 0.9891471
## 81 1.0030622 1.0046899
## 82 0.9869772 1.0058614
## 85 1.0014993 0.9941745
## 86 1.0198859 0.9796137
## 87 0.9874743 1.0016659
## SPOT_ID.1
## 16 NM_014332 // RefSeq // Homo sapiens small muscle protein, X-linked (SMPX), transcript variant 1, mRNA. // chrX // 100 // 100 // 0 // --- // 0 /// NR_045617 // RefSeq // Homo sapiens small muscle protein, X-linked (SMPX), transcript variant 2, non-coding RNA. // chrX // 100 // 100 // 0 // --- // 0 /// ENST00000379494 // ENSEMBL // small muscle protein, X-linked [gene_biotype:protein_coding transcript_biotype:protein_coding] // chrX // 100 // 100 // 0 // --- // 0 /// ENST00000494525 // ENSEMBL // small muscle protein, X-linked [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrX // 100 // 100 // 0 // --- // 0 /// BC005948 // GenBank // Homo sapiens small muscle protein, X-linked, mRNA (cDNA clone MGC:14584 IMAGE:4246501), complete cds. // chrX // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000056023 // Havana transcript // small muscle protein, X-linked[gene_biotype:protein_coding transcript_biotype:protein_coding] // chrX // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000056024 // Havana transcript // small muscle protein, X-linked[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrX // 100 // 100 // 0 // --- // 0 /// CCDS14200.1 // ccdsGene // small muscle protein, X-linked [Source:HGNC Symbol;Acc:HGNC:11122] // chrX // 100 // 100 // 0 // --- // 0 /// uc004daa.4 // UCSC Genes // small muscle protein, X-linked [Source:HGNC Symbol;Acc:HGNC:11122] // chrX // 100 // 100 // 0 // --- // 0 /// uc022btv.2 // UCSC Genes // small muscle protein, X-linked [Source:HGNC Symbol;Acc:HGNC:11122] // chrX // 100 // 100 // 0 // --- // 0 /// NONHSAT136462 // lncRNAWiki // Non-coding transcript identified by NONCODE // chrX // 100 // 100 // 0 // --- // 0 /// NONHSAT136462 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chrX // 100 // 100 // 0 // --- // 0
## 22 NM_001040712 // RefSeq // Homo sapiens protein tyrosine phosphatase, receptor type, D (PTPRD), transcript variant 5, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001171025 // RefSeq // Homo sapiens protein tyrosine phosphatase, receptor type, D (PTPRD), transcript variant 6, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_002839 // RefSeq // Homo sapiens protein tyrosine phosphatase, receptor type, D (PTPRD), transcript variant 1, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_130391 // RefSeq // Homo sapiens protein tyrosine phosphatase, receptor type, D (PTPRD), transcript variant 2, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_130392 // RefSeq // Homo sapiens protein tyrosine phosphatase, receptor type, D (PTPRD), transcript variant 3, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_130393 // RefSeq // Homo sapiens protein tyrosine phosphatase, receptor type, D (PTPRD), transcript variant 4, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000355233 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000356435 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000381196 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000397606 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000397611 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000397617 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000463477 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000471274 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000477552 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000481079 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000486161 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000488774 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000537002 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000540109 // ENSEMBL // protein tyrosine phosphatase, receptor type, D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// BC106713 // GenBank // Homo sapiens protein tyrosine phosphatase, receptor type, D, mRNA (cDNA clone MGC:119750 IMAGE:40027581), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC106714 // GenBank // Homo sapiens protein tyrosine phosphatase, receptor type, D, mRNA (cDNA clone MGC:119751 IMAGE:40027582), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC106715 // GenBank // Homo sapiens protein tyrosine phosphatase, receptor type, D, mRNA (cDNA clone MGC:119752 IMAGE:40027584), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC106716 // GenBank // Homo sapiens protein tyrosine phosphatase, receptor type, D, mRNA (cDNA clone MGC:119753 IMAGE:40027585), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000055393 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000055395 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000055396 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000055397 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000055398 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000355536 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000355537 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000355538 // Havana transcript // protein tyrosine phosphatase, receptor type, D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zkt.1 // UCSC Genes // Homo sapiens protein tyrosine phosphatase, receptor type, D (PTPRD), transcript variant 1, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS43786.1 // ccdsGene // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS55288.1 // ccdsGene // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS55289.1 // ccdsGene // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS55290.1 // ccdsGene // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS6472.2 // ccdsGene // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS75813.1 // ccdsGene // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086351 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086352 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086353 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086354 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086355 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086356 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON, UTR5 best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086357 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086358 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086359 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086360 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON, UTR5 best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086361 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0086362 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_002839 // chr9 // 100 // 100 // 0 // --- // 0 /// PTPRD.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5789, RefSeq ID(s) NM_130392 // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zkp.4 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zkq.4 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zkr.4 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zks.4 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc022bdj.2 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064scf.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064scg.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064sch.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064sci.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064scj.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064sck.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064scl.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064scm.1 // UCSC Genes // protein tyrosine phosphatase, receptor type, D [Source:HGNC Symbol;Acc:HGNC:9668] // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT130187 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT130187 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr9 // 100 // 100 // 0 // --- // 0
## 23 NM_025239 // RefSeq // Homo sapiens programmed cell death 1 ligand 2 (PDCD1LG2), mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000397747 // ENSEMBL // programmed cell death 1 ligand 2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// BC074766 // GenBank // Homo sapiens programmed cell death 1 ligand 2, mRNA (cDNA clone MGC:103803 IMAGE:30915184), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC113678 // GenBank // Homo sapiens programmed cell death 1 ligand 2, mRNA (cDNA clone MGC:142238 IMAGE:8322730), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC113680 // GenBank // Homo sapiens programmed cell death 1 ligand 2, mRNA (cDNA clone MGC:142240 IMAGE:8322732), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000051634 // Havana transcript // programmed cell death 1 ligand 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS6465.1 // ccdsGene // programmed cell death 1 ligand 2 [Source:HGNC Symbol;Acc:HGNC:18731] // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zjg.5 // UCSC Genes // programmed cell death 1 ligand 2 [Source:HGNC Symbol;Acc:HGNC:18731] // chr9 // 100 // 100 // 0 // --- // 0 /// chr9_5569953_5572835 // Guo // circRNA transcript identified by Guo, et al. on chr9 from 5569953-5572835 on Hg19 // chr9 // 100 // 100 // 0 // --- // 0
## 24 NM_001280547 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 2, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280548 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 3, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280549 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 4, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280550 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 5, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280551 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 6, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280552 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 7, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280553 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 8, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280554 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 9, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280555 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 10, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_001280556 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 11, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_016734 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 1, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NR_103999 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 12, non-coding RNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NR_104000 // RefSeq // Homo sapiens paired box 5 (PAX5), transcript variant 13, non-coding RNA. // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000358127 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000377840 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000377847 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000377852 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000377853 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000414447 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000446742 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000520083 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000520154 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000520281 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000522003 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000522932 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000523145 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000523241 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000523493 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000524340 // ENSEMBL // paired box 5 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000052433 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379545 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379546 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379547 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379548 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379549 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379550 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379551 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379552 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379553 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379554 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379555 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379556 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379557 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379558 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000379559 // Havana transcript // paired box 5[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr9 // 100 // 100 // 0 // --- // 0 /// BC156927 // GenBank // Synthetic construct Homo sapiens clone IMAGE:100063578, MGC:190799 paired box 5 (PAX5) mRNA, encodes complete protein. // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65039.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65040.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65041.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65042.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65043.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65044.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65045.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65046.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65047.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS65048.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS6607.1 // ccdsGene // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0001857 // circbase // Memczak2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL best transcript NM_016734 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0001858 // circbase // Memczak2013 ANNOTATED, CDS, coding, INTERNAL best transcript NM_016734 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.bAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.hAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.iAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.kAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.lAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.mAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// PAX5.nAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 5079 // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zzo.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc010mlo.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc010mlp.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc010mlr.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc010mls.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc011lpw.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc011lpx.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc011lpy.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc011lpz.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc011lqa.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc011lqc.3 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064tbd.1 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064tbe.1 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064tbf.1 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064tbg.1 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064tbi.1 // UCSC Genes // paired box 5 [Source:HGNC Symbol;Acc:HGNC:8619] // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131020 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131020 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131021 // NONCODE // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131022 // NONCODE // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131023 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131023 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131027 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131027 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131028 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131028 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT131030 // NONCODE // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0
## 30 NM_032853 // RefSeq // Homo sapiens melanoma associated antigen (mutated) 1 (MUM1), transcript variant 1, mRNA. // chr19 // 100 // 100 // 0 // --- // 0 /// NR_024247 // RefSeq // Homo sapiens melanoma associated antigen (mutated) 1 (MUM1), transcript variant 2, non-coding RNA. // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000415183 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000585399 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000586067 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000586996 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000587460 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000588810 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000588888 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000590695 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000590866 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000591337 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000591433 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000591453 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000591627 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000591806 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000592374 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000626522 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// ENST00000627377 // ENSEMBL // melanoma associated antigen (mutated) 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// BC110874 // GenBank // Homo sapiens melanoma associated antigen (mutated) 1, mRNA (cDNA clone MGC:131891 IMAGE:4933735), complete cds. // chr19 // 100 // 100 // 0 // --- // 0 /// BC130443 // GenBank // Homo sapiens melanoma associated antigen (mutated) 1, mRNA (cDNA clone MGC:163315 IMAGE:40146474), complete cds. // chr19 // 100 // 100 // 0 // --- // 0 /// BC144138 // GenBank // Homo sapiens melanoma associated antigen (mutated) 1, mRNA (cDNA clone MGC:177675 IMAGE:9052658), complete cds. // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449503 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449504 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449505 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449506 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449507 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449508 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449509 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449510 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449512 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449513 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449514 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449515 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449517 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000449736 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr19 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000450552 // Havana transcript // melanoma associated antigen (mutated) 1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr19 // 100 // 100 // 0 // --- // 0 /// CCDS12062.1 // ccdsGene // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0048219 // circbase // Salzman2013 ANNOTATED, ncRNA, OVCODE, OVEXON best transcript NR_024247 // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0048220 // circbase // Salzman2013 ANNOTATED, ncRNA, OVCODE, OVEXON best transcript NR_024247 // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0048221 // circbase // Salzman2013 ANNOTATED, ncRNA, OVCODE, OVEXON best transcript NR_024247 // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0048222 // circbase // Salzman2013 ANNOTATED, INTERNAL, ncRNA, OVCODE, OVEXON best transcript NR_024247 // chr19 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0048223 // circbase // Salzman2013 ANNOTATED, INTERNAL, ncRNA, OVCODE, OVEXON best transcript NR_024247 // chr19 // 100 // 100 // 0 // --- // 0 /// MUM1.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 84939, RefSeq ID(s) NR_024247 // chr19 // 100 // 100 // 0 // --- // 0 /// MUM1.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 84939 // chr19 // 100 // 100 // 0 // --- // 0 /// uc002lsd.3 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzb.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzd.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qze.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzf.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzg.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzh.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzi.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzj.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzk.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzl.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzm.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzn.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzo.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzp.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzq.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// uc060qzs.1 // UCSC Genes // melanoma associated antigen (mutated) 1 [Source:HGNC Symbol;Acc:HGNC:29641] // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060282 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060282 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060283 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060283 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060284 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060284 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060285 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060285 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060286 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060286 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060288 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr19 // 100 // 100 // 0 // --- // 0 /// NONHSAT060288 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr19 // 100 // 100 // 0 // --- // 0
## 35 NM_052886 // RefSeq // Homo sapiens mal, T-cell differentiation protein 2 (gene/pseudogene) (MAL2), mRNA. // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522112 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000531508 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000534619 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000614891 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// BC012367 // GenBank // Homo sapiens mal, T-cell differentiation protein 2, mRNA (cDNA clone MGC:17366 IMAGE:3860009), complete cds. // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000381227 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383353 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383354 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383355 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// CCDS75780.1 // ccdsGene // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0085386 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_052886 // chr8 // 100 // 100 // 0 // --- // 0 /// uc033bxh.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064ptg.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pth.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pti.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:1 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128422 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:2 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128423 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:3 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:4 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:5 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128425 // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128422 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128423 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128425 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0
## 36 NM_052886 // RefSeq // Homo sapiens mal, T-cell differentiation protein 2 (gene/pseudogene) (MAL2), mRNA. // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522112 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000531508 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000534619 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000614891 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// BC012367 // GenBank // Homo sapiens mal, T-cell differentiation protein 2, mRNA (cDNA clone MGC:17366 IMAGE:3860009), complete cds. // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000381227 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383353 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383354 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383355 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// CCDS75780.1 // ccdsGene // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0085386 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_052886 // chr8 // 100 // 100 // 0 // --- // 0 /// uc033bxh.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064ptg.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pth.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pti.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:1 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128422 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:2 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128423 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:3 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:4 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:5 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128425 // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128422 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128423 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128425 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0
## 37 NM_052886 // RefSeq // Homo sapiens mal, T-cell differentiation protein 2 (gene/pseudogene) (MAL2), mRNA. // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522112 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000531508 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000534619 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000614891 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// BC012367 // GenBank // Homo sapiens mal, T-cell differentiation protein 2, mRNA (cDNA clone MGC:17366 IMAGE:3860009), complete cds. // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000381227 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383353 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383354 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383355 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// CCDS75780.1 // ccdsGene // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0085386 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_052886 // chr8 // 100 // 100 // 0 // --- // 0 /// uc033bxh.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064ptg.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pth.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pti.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:1 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128422 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:2 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128423 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:3 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:4 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:5 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128425 // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128422 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128423 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128425 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0
## 38 NM_052886 // RefSeq // Homo sapiens mal, T-cell differentiation protein 2 (gene/pseudogene) (MAL2), mRNA. // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522112 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000531508 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000534619 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000614891 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// BC012367 // GenBank // Homo sapiens mal, T-cell differentiation protein 2, mRNA (cDNA clone MGC:17366 IMAGE:3860009), complete cds. // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000381227 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383353 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383354 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383355 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// CCDS75780.1 // ccdsGene // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0085386 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_052886 // chr8 // 100 // 100 // 0 // --- // 0 /// uc033bxh.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064ptg.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pth.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pti.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:1 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128422 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:2 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128423 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:3 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:4 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:5 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128425 // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128422 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128423 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128425 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0
## 39 NM_052886 // RefSeq // Homo sapiens mal, T-cell differentiation protein 2 (gene/pseudogene) (MAL2), mRNA. // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522112 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000531508 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000534619 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000614891 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// BC012367 // GenBank // Homo sapiens mal, T-cell differentiation protein 2, mRNA (cDNA clone MGC:17366 IMAGE:3860009), complete cds. // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000381227 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383353 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383354 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383355 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// CCDS75780.1 // ccdsGene // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0085386 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_052886 // chr8 // 100 // 100 // 0 // --- // 0 /// uc033bxh.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064ptg.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pth.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pti.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:1 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128422 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:2 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128423 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:3 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:4 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:5 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128425 // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128422 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128423 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128425 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0
## 40 NM_052886 // RefSeq // Homo sapiens mal, T-cell differentiation protein 2 (gene/pseudogene) (MAL2), mRNA. // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522112 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000531508 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000534619 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000614891 // ENSEMBL // mal, T-cell differentiation protein 2 (gene/pseudogene) [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// BC012367 // GenBank // Homo sapiens mal, T-cell differentiation protein 2, mRNA (cDNA clone MGC:17366 IMAGE:3860009), complete cds. // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000381227 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383353 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383354 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000383355 // Havana transcript // mal, T-cell differentiation protein 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// CCDS75780.1 // ccdsGene // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0085386 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_052886 // chr8 // 100 // 100 // 0 // --- // 0 /// uc033bxh.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064ptg.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pth.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064pti.1 // UCSC Genes // mal, T-cell differentiation protein 2 (gene/pseudogene) [Source:HGNC Symbol;Acc:HGNC:13634] // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:1 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128422 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:2 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128423 // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:3 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:4 // lncRNAWiki // Transcript Originally Identified by LNCipedia // chr8 // 100 // 100 // 0 // --- // 0 /// lnc-COLEC10-1:5 // lncRNAWiki // Transcript Originally Identified by LNCipedia, alternate transcript name: NONHSAT128425 // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128422 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128423 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128424 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0 /// NONHSAT128425 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr8 // 100 // 100 // 0 // --- // 0
## 41 NM_002345 // RefSeq // Homo sapiens lumican (LUM), mRNA. // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000266718 // ENSEMBL // lumican [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000546642 // ENSEMBL // lumican [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000548071 // ENSEMBL // lumican [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// BC007038 // GenBank // Homo sapiens lumican, mRNA (cDNA clone MGC:12410 IMAGE:3950745), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// BC035997 // GenBank // Homo sapiens lumican, mRNA (cDNA clone MGC:32797 IMAGE:4688606), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000407150 // Havana transcript // lumican[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000407151 // Havana transcript // lumican[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000407152 // Havana transcript // lumican[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr12 // 100 // 100 // 0 // --- // 0 /// CCDS9038.1 // ccdsGene // lumican [Source:HGNC Symbol;Acc:HGNC:6724] // chr12 // 100 // 100 // 0 // --- // 0 /// LUM.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 4060 // chr12 // 100 // 100 // 0 // --- // 0 /// uc001tbm.4 // UCSC Genes // lumican [Source:HGNC Symbol;Acc:HGNC:6724] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058rqh.1 // UCSC Genes // lumican [Source:HGNC Symbol;Acc:HGNC:6724] // chr12 // 100 // 100 // 0 // --- // 0 /// uc058rqi.1 // UCSC Genes // lumican [Source:HGNC Symbol;Acc:HGNC:6724] // chr12 // 100 // 100 // 0 // --- // 0
## 49 NM_000619 // RefSeq // Homo sapiens interferon, gamma (IFNG), mRNA. // chr12 // 100 // 100 // 0 // --- // 0 /// ENST00000229135 // ENSEMBL // interferon, gamma [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// BC070256 // GenBank // Homo sapiens interferon, gamma, mRNA (cDNA clone MGC:88243 IMAGE:30414644), complete cds. // chr12 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000402301 // Havana transcript // interferon, gamma[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr12 // 100 // 100 // 0 // --- // 0 /// CCDS8980.1 // ccdsGene // interferon, gamma [Source:HGNC Symbol;Acc:HGNC:5438] // chr12 // 100 // 100 // 0 // --- // 0 /// IFNG.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3458, RefSeq ID(s) NM_000619 // chr12 // 100 // 100 // 0 // --- // 0 /// uc001stw.2 // UCSC Genes // interferon, gamma [Source:HGNC Symbol;Acc:HGNC:5438] // chr12 // 100 // 100 // 0 // --- // 0 /// NONHSAT029287 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr12 // 100 // 100 // 0 // --- // 0 /// NONHSAT029287 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr12 // 100 // 100 // 0 // --- // 0
## 50 NM_002164 // RefSeq // Homo sapiens indoleamine 2,3-dioxygenase 1 (IDO1), mRNA. // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000253513 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000518237 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000518804 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000519154 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000521480 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000521636 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522495 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000522840 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// ENST00000523779 // ENSEMBL // indoleamine 2,3-dioxygenase 1 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr8 // 100 // 100 // 0 // --- // 0 /// BC027882 // GenBank // Homo sapiens indoleamine 2,3-dioxygenase 1, mRNA (cDNA clone MGC:34586 IMAGE:5208340), complete cds. // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000376985 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000376986 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000376987 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000376988 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000377672 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000377712 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000377713 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000377714 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr8 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000377715 // Havana transcript // indoleamine 2,3-dioxygenase 1[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr8 // 100 // 100 // 0 // --- // 0 /// CCDS47847.1 // ccdsGene // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc003xnm.5 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mfx.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mfy.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mfz.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mga.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mgc.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mge.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mgg.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0 /// uc064mgh.1 // UCSC Genes // indoleamine 2,3-dioxygenase 1 [Source:HGNC Symbol;Acc:HGNC:6059] // chr8 // 100 // 100 // 0 // --- // 0
## 51 NM_016591 // RefSeq // Homo sapiens glucosaminyl (N-acetyl) transferase 4, core 2 (GCNT4), mRNA. // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000322348 // ENSEMBL // glucosaminyl (N-acetyl) transferase 4, core 2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000254040 // Havana transcript // glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// BC160070 // GenBank // Synthetic construct Homo sapiens clone IMAGE:100064006, MGC:193185 glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase) (GCNT4) mRNA, encodes complete protein. // chr5 // 100 // 100 // 0 // --- // 0 /// CCDS4026.1 // ccdsGene // glucosaminyl (N-acetyl) transferase 4, core 2 [Source:HGNC Symbol;Acc:HGNC:17973] // chr5 // 100 // 100 // 0 // --- // 0 /// GCNT4.aAug10-unspliced // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 51301, RefSeq ID(s) NM_016591 // chr5 // 100 // 100 // 0 // --- // 0 /// uc003kdn.4 // UCSC Genes // glucosaminyl (N-acetyl) transferase 4, core 2 [Source:HGNC Symbol;Acc:HGNC:17973] // chr5 // 100 // 100 // 0 // --- // 0
## 52 NM_016591 // RefSeq // Homo sapiens glucosaminyl (N-acetyl) transferase 4, core 2 (GCNT4), mRNA. // chr5 // 100 // 100 // 0 // --- // 0 /// ENST00000322348 // ENSEMBL // glucosaminyl (N-acetyl) transferase 4, core 2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000254040 // Havana transcript // glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase)[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr5 // 100 // 100 // 0 // --- // 0 /// BC160070 // GenBank // Synthetic construct Homo sapiens clone IMAGE:100064006, MGC:193185 glucosaminyl (N-acetyl) transferase 4, core 2 (beta-1,6-N-acetylglucosaminyltransferase) (GCNT4) mRNA, encodes complete protein. // chr5 // 100 // 100 // 0 // --- // 0 /// CCDS4026.1 // ccdsGene // glucosaminyl (N-acetyl) transferase 4, core 2 [Source:HGNC Symbol;Acc:HGNC:17973] // chr5 // 100 // 100 // 0 // --- // 0 /// GCNT4.aAug10-unspliced // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 51301, RefSeq ID(s) NM_016591 // chr5 // 100 // 100 // 0 // --- // 0 /// uc003kdn.4 // UCSC Genes // glucosaminyl (N-acetyl) transferase 4, core 2 [Source:HGNC Symbol;Acc:HGNC:17973] // chr5 // 100 // 100 // 0 // --- // 0
## 56 NM_015051 // RefSeq // Homo sapiens endoplasmic reticulum protein 44 (ERP44), mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000262455 // ENSEMBL // endoplasmic reticulum protein 44 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// BC005374 // GenBank // Homo sapiens endoplasmic reticulum protein 44, mRNA (cDNA clone MGC:12490 IMAGE:3934201), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000053402 // Havana transcript // endoplasmic reticulum protein 44[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS35082.1 // ccdsGene // endoplasmic reticulum protein 44 [Source:HGNC Symbol;Acc:HGNC:18311] // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0001877 // circbase // Memczak2013 ALT_ACCEPTOR, ALT_DONOR, coding, INTERNAL, UTR3 best transcript NM_015051 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087748 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3 best transcript NM_015051 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087749 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_015051 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087750 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_015051 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087751 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_015051 // chr9 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0087752 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_015051 // chr9 // 100 // 100 // 0 // --- // 0 /// uc004bam.4 // UCSC Genes // endoplasmic reticulum protein 44 [Source:HGNC Symbol;Acc:HGNC:18311] // chr9 // 100 // 100 // 0 // --- // 0
## 63 NM_001122665 // RefSeq // Homo sapiens DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked (DDX3Y), transcript variant 1, mRNA. // chrY // 100 // 100 // 0 // --- // 0 /// NM_001302552 // RefSeq // Homo sapiens DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked (DDX3Y), transcript variant 3, mRNA. // chrY // 100 // 100 // 0 // --- // 0 /// NM_004660 // RefSeq // Homo sapiens DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked (DDX3Y), transcript variant 2, mRNA. // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000336079 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000360160 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000440554 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000454054 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000463199 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000469101 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000472510 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000493363 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// ENST00000495478 // ENSEMBL // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// BC034942 // GenBank // Homo sapiens DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked, mRNA (cDNA clone MGC:25989 IMAGE:4826417), complete cds. // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088405 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088406 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088407 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088408 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088409 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:protein_coding] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088410 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088411 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088412 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000088413 // Havana transcript // DEAD (Asp-Glu-Ala-Asp) box polypeptide 3, Y-linked[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chrY // 100 // 100 // 0 // --- // 0 /// CCDS14782.1 // ccdsGene // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// DDX3Y.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 8653, RefSeq ID(s) NM_004660 // chrY // 100 // 100 // 0 // --- // 0 /// DDX3Y.oAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 8653 // chrY // 100 // 100 // 0 // --- // 0 /// hsa_circ_0005757 // circbase // Jeck2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001122665 // chrY // 100 // 100 // 0 // --- // 0 /// hsa_circ_0008297 // circbase // Jeck2013, Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001122665 // chrY // 100 // 100 // 0 // --- // 0 /// hsa_circ_0092260 // circbase // Salzman2013 ALT_ACCEPTOR, CDS, coding, INTERNAL, intronic, OVCODE, OVEXON best transcript NM_001122665 // chrY // 100 // 100 // 0 // --- // 0 /// hsa_circ_0092261 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001122665 // chrY // 100 // 100 // 0 // --- // 0 /// hsa_circ_0092262 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001122665 // chrY // 100 // 100 // 0 // --- // 0 /// hsa_circ_0092263 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVERLAPTX, OVEXON, UTR3 best transcript NM_001122665 // chrY // 100 // 100 // 0 // --- // 0 /// uc004fsu.2 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc004fsv.3 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc065crs.1 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc065crt.1 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc065cru.1 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc065crv.1 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc065crw.1 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc065crx.1 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// uc065cry.1 // UCSC Genes // DEAD (Asp-Glu-Ala-Asp) box helicase 3, Y-linked [Source:HGNC Symbol;Acc:HGNC:2699] // chrY // 100 // 100 // 0 // --- // 0 /// NONHSAT139494 // lncRNAWiki // Non-coding transcript identified by NONCODE // chrY // 100 // 100 // 0 // --- // 0 /// NONHSAT139494 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chrY // 100 // 100 // 0 // --- // 0 /// NONHSAT139495 // lncRNAWiki // Non-coding transcript identified by NONCODE // chrY // 100 // 100 // 0 // --- // 0 /// NONHSAT139495 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chrY // 100 // 100 // 0 // --- // 0
## 67 NM_001291527 // RefSeq // Homo sapiens cancer/testis antigen family 45, member A10 (CT45A10), transcript variant 1, mRNA. // chrX // 100 // 100 // 0 // --- // 0 /// NM_001291528 // RefSeq // Homo sapiens cancer/testis antigen family 45, member A10 (CT45A10), transcript variant 2, mRNA. // chrX // 100 // 100 // 0 // --- // 0 /// NM_001291529 // RefSeq // Homo sapiens cancer/testis antigen family 45, member A10 (CT45A10), transcript variant 3, mRNA. // chrX // 100 // 100 // 0 // --- // 0 /// NM_001291530 // RefSeq // Homo sapiens cancer/testis antigen family 45, member A10 (CT45A10), transcript variant 4, mRNA. // chrX // 100 // 100 // 0 // --- // 0 /// ENST00000611668 // ENSEMBL // cancer/testis antigen family 45, member A10 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chrX // 100 // 100 // 0 // --- // 0 /// ENST00000617981 // ENSEMBL // cancer/testis antigen family 45, member A10 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chrX // 100 // 100 // 0 // --- // 0 /// BC070138 // GenBank // Homo sapiens cancer/testis antigen family 45, member A5, mRNA (cDNA clone MGC:88118 IMAGE:4685945), complete cds. // chrX // 100 // 100 // 0 // --- // 0 /// BC144429 // GenBank // Homo sapiens cancer/testis antigen family 45, member A5, mRNA (cDNA clone MGC:177967 IMAGE:9052950), complete cds. // chrX // 100 // 100 // 0 // --- // 0 /// BC144430 // GenBank // Homo sapiens cancer/testis antigen family 45, member A5, mRNA (cDNA clone MGC:177968 IMAGE:9052951), complete cds. // chrX // 100 // 100 // 0 // --- // 0 /// BC144527 // GenBank // Homo sapiens cancer/testis antigen family 45, member A5, mRNA (cDNA clone MGC:178071 IMAGE:9053054), complete cds. // chrX // 100 // 100 // 0 // --- // 0 /// BC144528 // GenBank // Homo sapiens cancer/testis antigen family 45, member A5, mRNA (cDNA clone MGC:178072 IMAGE:9053055), complete cds. // chrX // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000058443 // Havana transcript // cancer/testis antigen family 45, member A10[gene_biotype:protein_coding transcript_biotype:protein_coding] // chrX // 100 // 100 // 0 // --- // 0 /// CCDS76035.1 // ccdsGene // cancer/testis antigen family 45, member A10 [Source:HGNC Symbol;Acc:HGNC:51263] // chrX // 100 // 100 // 0 // --- // 0 /// uc033ewp.2 // UCSC Genes // cancer/testis antigen family 45, member A10 [Source:HGNC Symbol;Acc:HGNC:51263] // chrX // 100 // 100 // 0 // --- // 0 /// uc065bgj.1 // UCSC Genes // cancer/testis antigen family 45, member A10 [Source:HGNC Symbol;Acc:HGNC:51263] // chrX // 100 // 100 // 0 // --- // 0
## 78 NM_014207 // RefSeq // Homo sapiens CD5 molecule (CD5), mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000347785 // ENSEMBL // CD5 molecule [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000544014 // ENSEMBL // CD5 molecule [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC027901 // GenBank // Homo sapiens CD5 molecule, mRNA (cDNA clone MGC:34370 IMAGE:5228913), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000396465 // Havana transcript // CD5 molecule[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000396466 // Havana transcript // CD5 molecule[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS8000.1 // ccdsGene // CD5 molecule [Source:HGNC Symbol;Acc:HGNC:1685] // chr11 // 100 // 100 // 0 // --- // 0 /// uc009ynk.4 // UCSC Genes // CD5 molecule [Source:HGNC Symbol;Acc:HGNC:1685] // chr11 // 100 // 100 // 0 // --- // 0 /// uc058bxm.1 // UCSC Genes // CD5 molecule [Source:HGNC Symbol;Acc:HGNC:1685] // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT021624 // NONCODE // Non-coding transcript identified by NONCODE // chr11 // 100 // 100 // 0 // --- // 0
## 79 NM_001267706 // RefSeq // Homo sapiens CD274 molecule (CD274), transcript variant 2, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NM_014143 // RefSeq // Homo sapiens CD274 molecule (CD274), transcript variant 1, mRNA. // chr9 // 100 // 100 // 0 // --- // 0 /// NR_052005 // RefSeq // Homo sapiens CD274 molecule (CD274), transcript variant 3, non-coding RNA. // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000381573 // ENSEMBL // CD274 molecule [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000381577 // ENSEMBL // CD274 molecule [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000474218 // ENSEMBL // CD274 molecule [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000492923 // ENSEMBL // CD274 molecule [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// ENST00000498261 // ENSEMBL // CD274 molecule [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// BC069381 // GenBank // Homo sapiens CD274 molecule, mRNA (cDNA clone MGC:96999 IMAGE:7262208), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC074984 // GenBank // Homo sapiens CD274 molecule, mRNA (cDNA clone MGC:103912 IMAGE:30915301), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC113734 // GenBank // Homo sapiens CD274 molecule, mRNA (cDNA clone MGC:142294 IMAGE:8322786), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// BC113736 // GenBank // Homo sapiens CD274 molecule, mRNA (cDNA clone MGC:142296 IMAGE:8322788), complete cds. // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000051631 // Havana transcript // CD274 molecule[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000051632 // Havana transcript // CD274 molecule[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000051633 // Havana transcript // CD274 molecule[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000207346 // Havana transcript // CD274 molecule[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS59118.1 // ccdsGene // CD274 molecule [Source:HGNC Symbol;Acc:HGNC:17635] // chr9 // 100 // 100 // 0 // --- // 0 /// CCDS6464.1 // ccdsGene // CD274 molecule [Source:HGNC Symbol;Acc:HGNC:17635] // chr9 // 100 // 100 // 0 // --- // 0 /// CD274.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 29126 // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zje.4 // UCSC Genes // CD274 molecule [Source:HGNC Symbol;Acc:HGNC:17635] // chr9 // 100 // 100 // 0 // --- // 0 /// uc003zjf.5 // UCSC Genes // CD274 molecule [Source:HGNC Symbol;Acc:HGNC:17635] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064rzq.1 // UCSC Genes // CD274 molecule [Source:HGNC Symbol;Acc:HGNC:17635] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064rzr.1 // UCSC Genes // CD274 molecule [Source:HGNC Symbol;Acc:HGNC:17635] // chr9 // 100 // 100 // 0 // --- // 0 /// uc064rzs.1 // UCSC Genes // CD274 molecule [Source:HGNC Symbol;Acc:HGNC:17635] // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT130102 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT130102 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT130103 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr9 // 100 // 100 // 0 // --- // 0 /// NONHSAT130103 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr9 // 100 // 100 // 0 // --- // 0
## 81 NM_001130845 // RefSeq // Homo sapiens B-cell CLL/lymphoma 6 (BCL6), transcript variant 2, mRNA. // chr3 // 100 // 100 // 0 // --- // 0 /// NM_001134738 // RefSeq // Homo sapiens B-cell CLL/lymphoma 6 (BCL6), transcript variant 3, mRNA. // chr3 // 100 // 100 // 0 // --- // 0 /// NM_001706 // RefSeq // Homo sapiens B-cell CLL/lymphoma 6 (BCL6), transcript variant 1, mRNA. // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000232014 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000406870 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000419510 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000430339 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000438077 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000450123 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000470319 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000479110 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000480458 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000496823 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr3 // 100 // 100 // 0 // --- // 0 /// ENST00000621333 // ENSEMBL // B-cell CLL/lymphoma 6 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// BC142705 // GenBank // Homo sapiens B-cell CLL/lymphoma 6, mRNA (cDNA clone MGC:165045 IMAGE:40148809), complete cds. // chr3 // 100 // 100 // 0 // --- // 0 /// BC150184 // GenBank // Homo sapiens B-cell CLL/lymphoma 6, mRNA (cDNA clone MGC:164962 IMAGE:40148297), complete cds. // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344202 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344204 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344205 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344206 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344207 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344208 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344209 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344210 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344211 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr3 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000344212 // Havana transcript // B-cell CLL/lymphoma 6[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr3 // 100 // 100 // 0 // --- // 0 /// BCL6.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 604 // chr3 // 100 // 100 // 0 // --- // 0 /// BCL6.mAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 604 // chr3 // 100 // 100 // 0 // --- // 0 /// CCDS3289.1 // ccdsGene // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// CCDS46975.1 // ccdsGene // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0068493 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVERLAPTX, OVEXON best transcript NM_001130845 // chr3 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0068494 // circbase // Salzman2013 ANNOTATED, coding, OVEXON, UTR5 best transcript NM_001130845 // chr3 // 100 // 100 // 0 // --- // 0 /// uc003frp.4 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc003frq.3 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc011bsf.2 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhe.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhf.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhg.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhh.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhi.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhj.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhk.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// uc062rhl.1 // UCSC Genes // B-cell CLL/lymphoma 6 [Source:HGNC Symbol;Acc:HGNC:1001] // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT093890 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT093890 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT093891 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT093891 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT093892 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr3 // 100 // 100 // 0 // --- // 0 /// NONHSAT093892 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr3 // 100 // 100 // 0 // --- // 0
## 82 NM_000633 // RefSeq // Homo sapiens B-cell CLL/lymphoma 2 (BCL2), transcript variant alpha, mRNA. // chr18 // 100 // 100 // 0 // --- // 0 /// NM_000657 // RefSeq // Homo sapiens B-cell CLL/lymphoma 2 (BCL2), transcript variant beta, mRNA. // chr18 // 100 // 100 // 0 // --- // 0 /// ENST00000333681 // ENSEMBL // B-cell CLL/lymphoma 2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr18 // 100 // 100 // 0 // --- // 0 /// ENST00000398117 // ENSEMBL // B-cell CLL/lymphoma 2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr18 // 100 // 100 // 0 // --- // 0 /// ENST00000589955 // ENSEMBL // B-cell CLL/lymphoma 2 [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr18 // 100 // 100 // 0 // --- // 0 /// ENST00000590515 // ENSEMBL // B-cell CLL/lymphoma 2 [gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr18 // 100 // 100 // 0 // --- // 0 /// BC027258 // GenBank // Homo sapiens B-cell CLL/lymphoma 2, mRNA (cDNA clone MGC:21366 IMAGE:4511027), complete cds. // chr18 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000256199 // Havana transcript // B-cell CLL/lymphoma 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr18 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000450052 // Havana transcript // B-cell CLL/lymphoma 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr18 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000450053 // Havana transcript // B-cell CLL/lymphoma 2[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr18 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000451065 // Havana transcript // B-cell CLL/lymphoma 2[gene_biotype:protein_coding transcript_biotype:processed_transcript] // chr18 // 100 // 100 // 0 // --- // 0 /// BCL2.dAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 596 // chr18 // 100 // 100 // 0 // --- // 0 /// CCDS11981.1 // ccdsGene // B-cell CLL/lymphoma 2 [Source:HGNC Symbol;Acc:HGNC:990] // chr18 // 100 // 100 // 0 // --- // 0 /// CCDS45882.1 // ccdsGene // B-cell CLL/lymphoma 2 [Source:HGNC Symbol;Acc:HGNC:990] // chr18 // 100 // 100 // 0 // --- // 0 /// uc002lit.2 // UCSC Genes // B-cell CLL/lymphoma 2 [Source:HGNC Symbol;Acc:HGNC:990] // chr18 // 100 // 100 // 0 // --- // 0 /// uc002liu.2 // UCSC Genes // B-cell CLL/lymphoma 2 [Source:HGNC Symbol;Acc:HGNC:990] // chr18 // 100 // 100 // 0 // --- // 0 /// uc060pur.1 // UCSC Genes // B-cell CLL/lymphoma 2 [Source:HGNC Symbol;Acc:HGNC:990] // chr18 // 100 // 100 // 0 // --- // 0 /// uc060puu.1 // UCSC Genes // B-cell CLL/lymphoma 2 [Source:HGNC Symbol;Acc:HGNC:990] // chr18 // 100 // 100 // 0 // --- // 0 /// NONHSAT059654 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr18 // 100 // 100 // 0 // --- // 0 /// NONHSAT059654 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr18 // 100 // 100 // 0 // --- // 0
## 85 NM_001135239 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165414 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165415 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 4, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_001165416 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 5, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_005566 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NR_028500 // RefSeq // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 6, non-coding RNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000227157 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000375710 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000379412 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396222 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000422447 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000430553 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000460405 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000469976 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000478970 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000486690 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000494573 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000495052 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536528 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537296 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000538451 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539814 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000540430 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541097 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000542179 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543445 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000543695 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545215 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545467 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000625635 // ENSEMBL // lactate dehydrogenase A [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC067223 // GenBank // Homo sapiens lactate dehydrogenase A, mRNA (cDNA clone MGC:72033 IMAGE:4096518), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258172 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258173 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258174 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258175 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258176 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258177 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258178 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258179 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000258180 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395876 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395877 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395878 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395879 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395880 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395881 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395882 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395883 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395885 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395886 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395887 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395888 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395889 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395890 // Havana transcript // lactate dehydrogenase A[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdd.2 // UCSC Genes // Homo sapiens lactate dehydrogenase A (LDHA), transcript variant 3, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS44549.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53609.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53610.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS53611.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7839.1 // ccdsGene // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0006469 // circbase // Jeck2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021446 // circbase // Salzman2013 ANNOTATED, coding, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021447 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021448 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR5 best transcript NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021449 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021450 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021451 // circbase // Salzman2013 ANNOTATED, CDS, coding, OVCODE, OVEXON, UTR3 best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021452 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// hsa_circ_0021453 // circbase // Salzman2013 ANNOTATED, CDS, coding, INTERNAL, OVCODE, OVEXON best transcript NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.aAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165414 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.cAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_005566 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001135239 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NM_001165415 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.gAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939, RefSeq ID(s) NR_028500 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.pAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.uAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHA.vgAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3939 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mok.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mol.4 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc010rdc.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc021qep.2 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqs.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqt.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqu.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqv.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqw.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqx.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqy.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zqz.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zra.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrb.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrc.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrd.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zre.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrf.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrg.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrh.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zri.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrj.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrk.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrl.1 // UCSC Genes // lactate dehydrogenase A [Source:HGNC Symbol;Acc:HGNC:6535] // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // lncRNAWiki // Non-coding transcript identified by NONCODE // chr11 // 100 // 100 // 0 // --- // 0 /// NONHSAT018284 // NONCODE // Non-coding transcript identified by NONCODE: Exonic // chr11 // 100 // 100 // 0 // --- // 0
## 86 NM_002301 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 1, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// NM_017448 // RefSeq // Homo sapiens lactate dehydrogenase C (LDHC), transcript variant 2, mRNA. // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000280704 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000396215 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000535809 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000536880 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000537486 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000539369 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000541669 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000544105 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000545848 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// ENST00000546146 // ENSEMBL // lactate dehydrogenase C [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// BC019249 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:26530 IMAGE:4839028), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC064388 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:74967 IMAGE:5744600), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// BC090043 // GenBank // Homo sapiens lactate dehydrogenase C, mRNA (cDNA clone MGC:111073 IMAGE:30387780), complete cds. // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395892 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395893 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395894 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395895 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395896 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395897 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395898 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395899 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395900 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000395901 // Havana transcript // actate dehydrogenase C[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr11 // 100 // 100 // 0 // --- // 0 /// CCDS7840.1 // ccdsGene // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.eAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// LDHC.fAug10 // Ace View // Transcript Identified by AceView, Entrez Gene ID(s) 3948 // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mom.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc001mon.5 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrn.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zro.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrp.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrq.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrr.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrs.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zrt.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0 /// uc057zru.1 // UCSC Genes // lactate dehydrogenase C [Source:HGNC Symbol;Acc:HGNC:6544] // chr11 // 100 // 100 // 0 // --- // 0
## 87 NM_153486 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 1, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// NM_194436 // RefSeq // Homo sapiens lactate dehydrogenase D (LDHD), transcript variant 2, mRNA. // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000300051 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000450168 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000568164 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// ENST00000569876 // ENSEMBL // lactate dehydrogenase D [gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// BC040279 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:34649 IMAGE:5162826), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// BC047902 // GenBank // Homo sapiens lactate dehydrogenase D, mRNA (cDNA clone MGC:57726 IMAGE:5762691), complete cds. // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000269018 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434651 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:protein_coding] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434652 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:retained_intron] // chr16 // 100 // 100 // 0 // --- // 0 /// OTTHUMT00000434653 // Havana transcript // lactate dehydrogenase D[gene_biotype:protein_coding transcript_biotype:nonsense_mediated_decay] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS10913.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// CCDS45529.1 // ccdsGene // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdm.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc002fdn.4 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xeh.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0 /// uc059xei.1 // UCSC Genes // lactate dehydrogenase D [Source:HGNC Symbol;Acc:HGNC:19708] // chr16 // 100 // 100 // 0 // --- // 0
## Gene_ID
## 16 SMPX
## 22 PTPRD
## 23 PDCD1LG2
## 24 PAX5
## 30 MUM1
## 35 MAL2
## 36 MAL2
## 37 MAL2
## 38 MAL2
## 39 MAL2
## 40 MAL2
## 41 LUM
## 49 IFNG
## 50 IDO1
## 51 GCNT4
## 52 GCNT4
## 56 ERP44
## 63 DDX3Y
## 67 CT45A10
## 78 CD5
## 79 CD274
## 81 BCL6
## 82 BCL2
## 85 LDHA
## 86 LDHC
## 87 LDHD
## importance
## 16 These are from the top 20 genes of pDLBCL and males, but only 2 genes were matched from their probe IDs to a gene in the features data.
## 22 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 23 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 24 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 30 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 35 top gene mDLBCL avg/median group values
## 36 These are from the top 20 genes of mDLBCL and females, but only 4 genes were matched from their probe IDs to a gene in the features data.
## 37 These are from the top 20 genes of mDLBCL and males, but only 7 genes were matched from their probe IDs to a gene in the features data.
## 38 There were 7 genes found in the data of pDLBCL older than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 39 There were 8 genes found in the data of mDLBCL younger than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 40 There were 8 genes found in the data of mDLBCL older than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 41 There were 2 genes found in the data of genes of CHL younger than 72 years of age to match any of the 20 probe IDs found. Change is the avg/median group values.
## 49 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 50 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 51 These are from the top 20 genes of pDLBCL and females, but only 3 genes were matched from their probe IDs to a gene in the features data.
## 52 There were 5 genes found in the data of pDLBCL younger than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 56 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 63 There were 8 genes found in the data of mDLBCL older than 72 years of age genes to match any of the 20 probe IDs found. Change is the avg/median group values.
## 67 These are from the top 20 genes of mDLBCL and males, but only 7 genes were matched from their probe IDs to a gene in the features data.
## 78 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 79 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 81 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 82 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 85 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 86 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
## 87 Research Article GSE305165 genes in the data that had an ID match a gene from the study importance genes
tg_df <- tg[,c(2:48,95)]
tg_mx <- data.frame(t(tg_df[,1:47]))
colnames(tg_mx) <- tg_df$Gene_ID
tg_mx$class <- 'class'
CHL_tg <- grep("CHL", row.names(tg_mx))
mDLBCL_tg <- grep("mDLBCL", row.names(tg_mx))
pDLBCL_tg <- grep("pDLBCL", row.names(tg_mx))
tg_mx$class[CHL_tg] <- "CHL"
tg_mx$class[mDLBCL_tg] <- "mDLBCL"
tg_mx$class[pDLBCL_tg] <- "pDLBCL"
paged_table(tg_mx)
tg_mx$class <- as.factor(tg_mx$class)
summary(tg_mx)
## SMPX PTPRD PDCD1LG2 PAX5
## Min. :1.999 Min. :2.647 Min. :2.942 Min. :5.838
## 1st Qu.:2.171 1st Qu.:3.239 1st Qu.:4.222 1st Qu.:6.461
## Median :2.212 Median :3.478 Median :4.544 Median :6.698
## Mean :2.319 Mean :3.460 Mean :4.682 Mean :6.737
## 3rd Qu.:2.364 3rd Qu.:3.636 3rd Qu.:4.955 3rd Qu.:7.011
## Max. :4.324 Max. :4.330 Max. :7.328 Max. :7.528
## MUM1 MAL2 MAL2 MAL2
## Min. :1.602 Min. :1.536 Min. :1.536 Min. :1.536
## 1st Qu.:2.214 1st Qu.:1.805 1st Qu.:1.805 1st Qu.:1.805
## Median :2.428 Median :1.961 Median :1.961 Median :1.961
## Mean :2.474 Mean :2.348 Mean :2.348 Mean :2.348
## 3rd Qu.:2.757 3rd Qu.:2.256 3rd Qu.:2.256 3rd Qu.:2.256
## Max. :4.337 Max. :5.255 Max. :5.255 Max. :5.255
## MAL2 MAL2 MAL2 LUM
## Min. :1.536 Min. :1.536 Min. :1.536 Min. :2.320
## 1st Qu.:1.805 1st Qu.:1.805 1st Qu.:1.805 1st Qu.:3.462
## Median :1.961 Median :1.961 Median :1.961 Median :4.450
## Mean :2.348 Mean :2.348 Mean :2.348 Mean :4.494
## 3rd Qu.:2.256 3rd Qu.:2.256 3rd Qu.:2.256 3rd Qu.:5.134
## Max. :5.255 Max. :5.255 Max. :5.255 Max. :7.945
## IFNG IDO1 GCNT4 GCNT4
## Min. :1.955 Min. :3.004 Min. :1.910 Min. :1.910
## 1st Qu.:2.612 1st Qu.:3.419 1st Qu.:2.364 1st Qu.:2.364
## Median :2.899 Median :3.536 Median :2.679 Median :2.679
## Mean :2.879 Mean :3.878 Mean :2.985 Mean :2.985
## 3rd Qu.:3.095 3rd Qu.:4.101 3rd Qu.:3.381 3rd Qu.:3.381
## Max. :4.000 Max. :6.899 Max. :5.671 Max. :5.671
## ERP44 DDX3Y CT45A10 CD5
## Min. :3.628 Min. :2.723 Min. :1.449 Min. :6.233
## 1st Qu.:5.161 1st Qu.:3.676 1st Qu.:1.818 1st Qu.:6.490
## Median :5.395 Median :5.042 Median :1.899 Median :6.693
## Mean :5.407 Mean :4.813 Mean :2.033 Mean :6.728
## 3rd Qu.:5.664 3rd Qu.:5.767 3rd Qu.:2.045 3rd Qu.:6.912
## Max. :6.659 Max. :6.323 Max. :6.989 Max. :7.547
## CD274 BCL6 BCL2 LDHA
## Min. :4.592 Min. :4.573 Min. :6.493 Min. : 5.792
## 1st Qu.:5.718 1st Qu.:5.048 1st Qu.:7.011 1st Qu.: 8.672
## Median :6.377 Median :5.263 Median :7.105 Median : 8.994
## Mean :6.345 Mean :5.239 Mean :7.153 Mean : 8.963
## 3rd Qu.:7.015 3rd Qu.:5.422 3rd Qu.:7.294 3rd Qu.: 9.452
## Max. :7.868 Max. :5.916 Max. :7.822 Max. :10.193
## LDHC LDHD class
## Min. :3.005 Min. :5.112 CHL :19
## 1st Qu.:3.584 1st Qu.:5.320 mDLBCL:20
## Median :3.895 Median :5.476 pDLBCL: 8
## Mean :3.846 Mean :5.486
## 3rd Qu.:4.061 3rd Qu.:5.603
## Max. :4.522 Max. :6.230
Lets now see how well these genes predict the class of the 3 large b-cell lymphomas.
set.seed(123)
inTrain <- sample(1:47,.8*47)
training <- tg_mx[inTrain,]
testing <- tg_mx[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 15 16 6
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 4 2
rf <- randomForest(training[1:26],training$class, mtry=8, ntree=5000, confusion=T, importance=T)
rf$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 11 3 1 0.2666667
## mDLBCL 3 13 0 0.1875000
## pDLBCL 2 4 0 1.0000000
The training set of 80% data scored terribly with the pDLBCL class using the genes selected with 0/6 predicted correctly with 4/6 predicted mDLBCL and 2/6 predicted CHL. But the CHL class scored better with 11/15 predicted correctly, 3/15 predicted as mDLBCL, and 1/16 predicted as pDLBCL. The best scoring class was mDLBCL that predicted 13/16 correctly and 3/16 as CHL.
Lets see how the importance was ranked for each gene in each class.
rf$importance
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy
## SMPX 0.0008045238 -0.0023823882 -0.0031466667 -0.0013225356
## PTPRD 0.0005868254 -0.0013995238 0.0045933333 0.0002881081
## PDCD1LG2 0.0026409524 0.0016065079 0.0002566667 0.0018468751
## PAX5 0.0043316667 0.0376871501 0.0154166667 0.0191257370
## MUM1 0.0003610317 -0.0010064286 0.0061900000 0.0007669837
## MAL2 0.0037134921 0.0007594444 -0.0014900000 0.0015356305
## MAL2.1 0.0041012698 0.0018519986 -0.0016200000 0.0020248270
## MAL2.2 0.0032440476 0.0022512626 -0.0012933333 0.0019805344
## MAL2.3 0.0045199206 0.0024255556 -0.0015566667 0.0023460414
## MAL2.4 0.0033826190 0.0022975397 -0.0021666667 0.0017649676
## MAL2.5 0.0036538889 0.0023357071 -0.0005233333 0.0021090298
## LUM 0.0097550000 0.0139877362 -0.0019433333 0.0092232067
## IFNG -0.0025583333 0.0105998773 0.0067300000 0.0044605714
## IDO1 0.0063089683 0.0037399229 0.0728166667 0.0151562135
## GCNT4 0.0096023232 0.0076044733 -0.0024700000 0.0059419670
## GCNT4.1 0.0084695238 0.0085808802 -0.0022266667 0.0066023479
## ERP44 0.0017092063 0.0009880087 -0.0020333333 0.0004674041
## DDX3Y 0.0025138817 0.0004803968 0.0211666667 0.0042550036
## CT45A10 0.0076915079 0.0014125613 -0.0035100000 0.0028202803
## CD5 0.0059765296 0.0086950072 -0.0071233333 0.0048072602
## CD274 -0.0001079365 -0.0043188889 0.0002066667 -0.0016558980
## BCL6 -0.0005150866 -0.0015545815 -0.0009100000 -0.0008990559
## BCL2 -0.0008119048 -0.0017465945 -0.0022966667 -0.0013475171
## LDHA 0.0914074603 0.0959046825 0.0017466667 0.0740006225
## LDHC -0.0013596104 -0.0025621356 0.0005933333 -0.0014784351
## LDHD -0.0010249351 -0.0004738095 0.0038333333 -0.0001083339
## MeanDecreaseGini
## SMPX 0.4070452
## PTPRD 0.6285362
## PDCD1LG2 0.5916813
## PAX5 1.7541990
## MUM1 0.5092912
## MAL2 0.5360132
## MAL2.1 0.5109626
## MAL2.2 0.5049725
## MAL2.3 0.5347139
## MAL2.4 0.5248140
## MAL2.5 0.5231421
## LUM 0.9562033
## IFNG 0.7528159
## IDO1 2.0945548
## GCNT4 0.9552361
## GCNT4.1 0.9867455
## ERP44 0.5428282
## DDX3Y 1.2741101
## CT45A10 0.5823637
## CD5 0.9113863
## CD274 0.4665151
## BCL6 0.4354860
## BCL2 0.2932934
## LDHA 4.3038590
## LDHC 0.3178233
## LDHD 0.5046622
LDHA gave 9.1 % weight to CHL in predicting that class, and 9.5% to mDLBCL. That was the best ranked gene in importance for the training model. But the next best ranked is PAX5 in giving mDLBCL a 3.7% weighted importance. For pDLBCL, the best ranked gene in predicting pDLBCL with this model was DDX3Y with 2.1 % added importance, then PAX5 with 1.5% added weight. The next best for CHL after LDHA is PAX5 with 0.43%. There were duplicates and that could have been seen as multicollinearity in a linear regression model but with random forest it classifies and might not really effect it, but lets remove those duplicates now.
colnames(tg_mx)
## [1] "SMPX" "PTPRD" "PDCD1LG2" "PAX5" "MUM1" "MAL2"
## [7] "MAL2" "MAL2" "MAL2" "MAL2" "MAL2" "LUM"
## [13] "IFNG" "IDO1" "GCNT4" "GCNT4" "ERP44" "DDX3Y"
## [19] "CT45A10" "CD5" "CD274" "BCL6" "BCL2" "LDHA"
## [25] "LDHC" "LDHD" "class"
Lets remove the columns 7 through 11 and see how model performs. We also have 2 GCNT4 lets remove 1 of them as well.
tg_mx2 <- tg_mx[,c(1:6,12:14, 16:27)]
colnames(tg_mx2)
## [1] "SMPX" "PTPRD" "PDCD1LG2" "PAX5" "MUM1" "MAL2"
## [7] "LUM" "IFNG" "IDO1" "GCNT4" "ERP44" "DDX3Y"
## [13] "CT45A10" "CD5" "CD274" "BCL6" "BCL2" "LDHA"
## [19] "LDHC" "LDHD" "class"
set.seed(123)
inTrain <- sample(1:47,.8*47)
training <- tg_mx2[inTrain,]
testing <- tg_mx[-inTrain,]
table(training$class)
##
## CHL mDLBCL pDLBCL
## 15 16 6
table(testing$class)
##
## CHL mDLBCL pDLBCL
## 4 4 2
rf1 <- randomForest(training[1:20], training$class, mtry=7, ntree=5000, confusion=T, importance=T)
rf1$confusion
## CHL mDLBCL pDLBCL class.error
## CHL 11 3 1 0.2666667
## mDLBCL 4 12 0 0.2500000
## pDLBCL 2 3 1 0.8333333
The pDLBCL class was slightly better in accuracy of prediction when removing the duplicate genes.
rf1$importance
## CHL mDLBCL pDLBCL MeanDecreaseAccuracy
## SMPX -0.0020627056 -0.0028245310 -0.0015233333 -2.357539e-03
## PTPRD 0.0001830952 -0.0025858874 0.0065700000 -4.181377e-05
## PDCD1LG2 0.0036573810 0.0009318398 -0.0044333333 1.080830e-03
## PAX5 0.0053984127 0.0332379365 0.0106433333 1.689016e-02
## MUM1 0.0021123016 -0.0000148557 0.0050833333 1.609749e-03
## MAL2 0.0075303247 0.0029650794 -0.0024000000 4.380124e-03
## LUM 0.0123719048 0.0148726840 -0.0013166667 1.033515e-02
## IFNG -0.0031661905 0.0096888672 0.0070866667 3.674104e-03
## IDO1 0.0083439683 0.0028526407 0.0795566667 1.613301e-02
## GCNT4 0.0116365079 0.0104442136 -0.0035833333 7.821000e-03
## ERP44 0.0014455556 0.0027177922 -0.0030833333 1.279987e-03
## DDX3Y 0.0045998341 0.0002814935 0.0360933333 7.078553e-03
## CT45A10 0.0060203968 -0.0001099134 -0.0063466667 1.112794e-03
## CD5 0.0110088889 0.0128444444 -0.0066866667 8.030369e-03
## CD274 0.0022050794 -0.0034825180 -0.0004000000 -8.314179e-04
## BCL6 -0.0005398413 -0.0011641270 -0.0001666667 -4.793383e-04
## BCL2 -0.0008646032 -0.0018293651 -0.0043933333 -1.866587e-03
## LDHA 0.1031777994 0.1082991342 0.0052133333 8.440845e-02
## LDHC -0.0029679365 -0.0026130087 -0.0013466667 -2.334478e-03
## LDHD -0.0025266667 -0.0019241991 0.0022066667 -1.457173e-03
## MeanDecreaseGini
## SMPX 0.4540102
## PTPRD 0.6968559
## PDCD1LG2 0.6896274
## PAX5 1.9667835
## MUM1 0.5492820
## MAL2 1.2687070
## LUM 1.1122397
## IFNG 0.8438643
## IDO1 2.3092248
## GCNT4 1.3791848
## ERP44 0.5955926
## DDX3Y 1.5553817
## CT45A10 0.7286474
## CD5 1.0863156
## CD274 0.5141088
## BCL6 0.5472234
## BCL2 0.3824636
## LDHA 4.8623998
## LDHC 0.3416520
## LDHD 0.5397111
LDHA is still the best ranked gene of importance in CHL and mDLBCL with 10.3% and 10.8% respectively. PAX5 is .53% in CHL and 3.3% in mDLBCL. SMPX is a negative weight of importance to pDLBCL now but was adding weight in prediction to it earlier. The negative weight seems to help its performance. DDX3Y is adding 3.6% weight to prediction accuracy of pDLBCL as well. Many weight for mDLBCL are below 1% added or removed from mDLBCL. But next best ranked for mDLBCL is CD5 with 1.2% added importance, and 1.1% added importance in CHL. The gene CD274 for PDL1 in mDLBCL is a negative weighted importance of -0.3% to it as it should be since it is meant to signal high chromosomal changes at 9p24.1 in CHL and pDLBCL. GCNT4 has a 1.2% and 1% added importance to CHL and mDLBCL respectively, but negative .36% in pDLBCL importance. Lum is 1.2% in CHL and 1.5% in mDLBCL added importance.
We still need to add these genes to the database of pathologies. But none of them really scored well. The best set of genes were the research genes. But we still haven’t used this set to predict on the 20% hold out set. It isn’t working, maybe I have to run prediction first then importance. Because it worked when I reran all code chunks above when using it. Nope, it didn’t work.
predict1 <- predict(rf1,testing)
Error in predict.randomForest(rf1, testing) : variables in the training data missing in newdata