Home Accurate diagnosis of prostate cancer using logistic regression
Article Open Access

Accurate diagnosis of prostate cancer using logistic regression

  • Arash Hooshmand EMAIL logo
Published/Copyright: March 24, 2021

Abstract

A new logistic regression-based method to distinguish between cancerous and noncancerous RNA genomic data is developed and tested with 100% precision on 595 healthy and cancerous prostate samples. A logistic regression system is developed and trained using whole-exome sequencing data at a high-level, i.e., normalized quantification of RNAs obtained from 495 prostate cancer samples from The Cancer Genome Atlas and 100 healthy samples from the Genotype-Tissue Expression project. We could show that both sensitivity and specificity of the method in the classification of cancerous and noncancerous cells are perfectly 100%.

1 Introduction

Prostate cancer is one of the severe cancers in men. According to the US cancer statistics report for 2020, there are estimated 191,930 new cases of prostate cancer and 33,330 deaths because of it, and the importance of early diagnosis has repeatedly been emphasized [1]. Biologists have discovered many genes that are involved in specific cancers; for example, BRCA1 in breast cancer [2] and STAT3 in prostate cancer [3]. In diagnosis and cancer identification, histological examination is used as gold standard but it is a slow process and needs technical experts and suffers from large amount of variations among observers. In recent years, thanks to high throughput Omics technologies, we are no longer missing data but need novel methods and techniques to handle and analyze them; thus, bioinformatics and computers have found a solid ground to contribute in life sciences. One of the most applicable approaches to benefit from computer science in physiology and medicine is utilization of artificial intelligence to extract knowledge by computers out of big data generated by Omics technologies [4]. In this work, we have developed a logistic regression (LGR) system using general new generation of RNA Seq. data that can detect any prostate cancer, and hence will decrease the risk of mortality by correct diagnosis. The Omics technologies and their corresponding big data analysis tools are developing fast and getting cheaper and more widespread all the time. Currently, the third generation of sequencing methods such as quantum sequencing [5], nanopore sequencing [6], and single-molecule real-time sequencing [7] are making it possible even today for the wealthy people to benefit from expensive analyses, and if the current trend in advancements continues, it will not be a long way left to have commonplace analytical tools and services in each hospital and city. The advantage of machine learning is that as it gets more and more samples, its training would be more matured and more robust; therefore, there is a hope that the 100% accuracy that is achieved by a modest amount of data can be stabilized in the future when many patients and healthy people samples are fed to the system.

Computational techniques and tools are rapidly opening their positions in medical and pharmaceutical sciences too [8]. Different methods have been developed and tested in the last few decades and have returned great results in different fields of medicine including but not limited to cancer identification [9]. In this work, we have come up with a novel approach of applying LGR for cancer detection that is effective and robust. Using our method, cancerous tissue can correctly be identified, thus providing an opportunity to be controlled on time. This approach also offers a new direction for disease diagnosis while providing a new method to predict traits based on genomic information.

2 Methods

In this project, we have used LGR algorithm from Sci-Kit Learn on 495 samples from The Cancer Genome Atlas (TCGA) research network and 100 samples of the Genotype-Tissue Expression (GTEx) project portal and directly fed the genome data to the machine to do heavy statistical calculations on our high dimensional data. The different parts of the method are clarified below. We use all the available data at the time of accessing the databases and have not ignored any sample.

2.1 Binary LGR

The LGR is a group of statistical techniques that aim to test hypotheses or causal relationships when the dependent variable is nominal.

Despite its name, it is not an algorithm applied in regression problems, in which continuous values are dealt with, but it is a method for classification problems, in which a binary value, i.e., either 0 or 1 is obtained. For example, a classification problem is to identify if a given tumor is malignant or benign. With the LGR, the relationship between the dependent variable, i.e., the statement to be predicted, with one or more independent variables, i.e., the set of features available for the model is determined. To do this, it uses a logistic function that determines the probability of the dependent variable. As previously mentioned, what is sought in these problems is a classification, so the probability must be translated into binary values for which a threshold value is used. If the probability values were above the threshold value, the statement is true and vice versa. Generally, this value is 0.5, although it can be increased or decreased to manage the number of false positives or false negatives [10].

In supervised classification methods the input data, usually seen as p points, are viewed as a p-dimensional vector (an array or ordered list of p numbers). Then the classifiers are more or less based on similar criteria, e.g., in the Bayesian classifiers, the classifier looks for a hyper surface that maximizes the likelihood of drawing the sample, or in SVMs, it looks for a hyperplane that optimally separates the points of one class from the other, which eventually could have been previously projected to a higher dimensional space. The LGR is a generalization of logits to distinguish samples that belong to one of the two different classes; hence, it is usually called binary LGR.

2.2 Feature selection

There are wrong perceptions in the computer science community about life science data that have prevented potential achievements, for instance, one is about the number of features [11] such as “it is obviously impractical to select all of the genes because mass dimensions will increase the computation cost.” As a result, researchers usually try to reduce the assumed computational costs allegedly brought about by highly redundant dimensions and select a subset of features, i.e., genes to reduce the number of features and dimensions [12]. A strength point of our work is that we gave all the data corresponding to the whole-exome sequencing as feature inputs to the logistic regressor at once and it returned almost perfect results quickly and precisely. We thought of 19,627 different genes not as too many features but as different pixels of a less than 141 × 141 pixel photo, in which there are correlated pixels too, and it was a very light task for the machine to analyze such a low-resolution image and it took only seconds to classify the cancerous and noncancerous cells 100% precisely.

2.3 Model settings and evaluation

We have used LGR classifier also known as Logit or MaxEnt classifier from Scikit-Learn 0.23.1 with its default settings. Model evaluation produces measures to approximate a classifier’s reliability. To distinguish between cancerous and noncancerous cells, as it is a binary classification, we use accuracy, precision, specificity, sensitivity, f1 score, several averaging techniques, and receiver operating characteristic curve to evaluate the model. We, indeed, use Sci-kit Learn Metrics Classification Report that returns precision, recall, and f1 score for each of two classes. In binary classification, recall of the positive class is called “sensitivity,” and recall of the negative class is “specificity.” In what follows, the terms and derivations from confusion matrix such as accuracy, specificity, sensitivity, and f1 score are given to review and compare:

  • Condition positive (P): the number of real positive cases in the data

  • Condition negative (N): the number of real negative cases in the data

  • True positive (TP) or hit

  • True negative (TN) or correct rejection

  • False positive (FP), false alarm, or type I error

  • False negative (FN), miss, or type II error

Sensitivity, recall, hit rate, or true-positive rate (TPR):

(1) TPR = TP / P = TP / ( TP + FN ) = 1 FNR .

Specificity, selectivity, or true-negative rate (TNR):

(2) TNR = TN / N = TN / ( TN + FP ) = 1 FPR .

Precision or positive predictive value (PPV) is the ratio of the correctly labeled samples by our program to all labeled ones in reality.

(3) PPV = TP / ( TP + FP ) = 1 FDR .

Precision can be calculated only for the positive class, i.e., class 1 that shows cancer or can be evaluated for each one of the two classes independently treating each class as it is the positive class at time, and the latter is done in Sci-kit Learn Metrics Classification Report as shown in Table 1.

Table 1

Classification report

Summary Precision Recall f1 score Support
Class 0 1.00 1.00 1.00 9
Class 1 1.00 1.00 1.00 51
Micro avg. 1.00 1.00 1.00 60
Macro avg. 1.00 1.00 1.00 60
Weighted avg. 1.00 1.00 1.00 60

Negative predictive value (NPV):

(4) NPV = TN / ( TN + FN ) = 1 FOR .

Miss rate or false-negative rate (FNR):

(5) FNR = FN / P = FN / ( FN + TP ) = 1 TPR .

Fall-out or false-positive rate (FPR):

(6) FPR = FP / N = FP / ( FP + TN ) = 1 TNR .

False discovery rate (FDR):

(7) FDR = FP / ( FP + TP ) = 1 PPV .

False omission rate (FOR):

(8) FOR = FN / ( FN + TN ) = 1 NPV .

Accuracy (ACC):

(9) ACC = ( TP + TN ) / ( T + N ) = ( TP + TN ) / ( TP + TN + FP + FN ) .

The harmonic mean of precision and sensitivity or f1 score (F1):

(10) F 1 = 2 · PPV · TPR / ( PPV + TPR ) = 2 · TP / ( 2 · TP + FP + FN ) .

As we are using Sci-kit Learn Metrics Classification Report to show the results as shown in Table 1, we also describe the meaning of micro avg, macro avg, and weighted avg. used in the report: Micro-average of precision (MIAP):

(11) MIAP = ( TP 1 + TP 2 ) / ( TP 1 + TP 2 + FP 1 + FP 2 ) .

Micro-average of recall (MIAR):

(12) MIAR = ( TP 1 + TP 2 ) / ( TP 1 + TP 2 + FN 1 + FN 2 ) .

Micro-average of f-score (MIAF) would be the harmonic mean of the two numbers above.

(13) MIAF = 2 · MIAP · MIAR / ( MIAP + MIAR ) .

Macro-average of precision (MAAP):

(14) MAAP = ( Precision 1 + Precision 2 ) / 2 .

Macro-average of recall (MAAR):

(15) MAAR = ( Recall 1 + Recall 2 ) / 2 .

Macro-average of f-score (MAAF) would be the harmonic mean of the two numbers above.

(16) MAAF = 2 · MAAP · MAAR / ( MAAP + MAAR ) .

Macro-average method is suitable to know how the system performs overall across different sets of data but should not be considered in any specific decision-making because it calculates metrics for each label and finds their unweighted mean, i.e., it does not take label imbalance into account, while in our case, the labels are highly imbalanced, i.e., 495 vs 100. On the contrary, micro-average is a useful tool and returns measures for decision-making especially when datasets vary in size because it calculates metrics globally by counting the total true-positives, false-negatives, and false-positives. Finally, weighted-average, according to Sci-kit Learn documentation on f1-score metrics, calculates metrics for each label and finds their average weighted by support (the number of true instances for each label). This alters “macro” to account for label imbalance; consequently, it can result in an F-score that is not between precision and recall.

3 Results

Genomic variation files of 595 samples including healthy people (100 individuals) and cancer patients (495 individuals) were obtained from the GTEx Project and the TCGA online database. The binary classification results of cancerous and noncancerous samples were great because the system can detect all cancerous and noncancerous samples correctly and as seen in the classification report shown in Table 1, the performance of the classifier is perfect with accuracy and precision of 100% and sensitivity and specificity of 1. In this classification, not only the accuracy is 100% but also the receiver operating characteristic’s area under curve (ROC AUC) from prediction scores also would be 1 as seen in Figure 1.

Figure 1 
               ROC curve of LGR classifier performance in distinguishing cancerous and noncancerous prostate cells.
Figure 1

ROC curve of LGR classifier performance in distinguishing cancerous and noncancerous prostate cells.

4 Discussion

The classifier did its task perfectly with no error, at least on our available data. There are yet some aspects to reflect on. Although most TCGA prostate cancer (PRAD) comprise white men’s samples, they have considered human variations to contain samples of different races and groups as well to represent the US demographic information fairly. As our method classifies all cancerous and non-cancer samples correctly using the information available in genomic variation, it can mean that the genetic signatures of cancer are detected universally without the need to consider racial or sexual differences.

Our work provided a new approach in application of computers using medical data that resulted in excellent classification between cancerous and noncancerous cells of the prostate. In this work, we did not reduce the dimension of input data and left all the statistical analysis to the computer, and it could do its job very well and distinguished the cancerous samples from healthy cells almost perfectly. We even did not need to balance the number of samples of each class and it shows that the difference between two classes is so much that providing hundreds of samples enables the machine to distinguish between two categories containing 495 and 100 samples perfectly. It is also useful to consider the fact that TCGA and GTEx data are not perfect and there are several rows of missing data for some of gene quantities in some samples, yet the data provided by these two projects are fairly clean and reliable and it was enough for our classifier to be able to do its classification 100% correctly. This system is trained now to receive any new person’s RNA-seq data and recognize if the patient’s prostate is cancerous or not. The limitation of our model is that it needs future collaboration with both hospitals and well-equipped laboratories and also needs the whole genome data of samples from the organ, and the involving labs should follow the same protocols to obtain the transcriptomics data. Therefore, we cannot add training data from other sources and databases to include as many samples as we want. Fortunately, we do not need to do it because our data have been enough to train the system and achieve perfect classification ability. Furthermore, an advantage of our approach is that we have used a classic interpretable method that is based on statistics, unlike other works such as Sun et al. [13] who have used complex neural networks that act as a black box and are not interpretable. Nevertheless, obtaining the whole-exome sequencing data of 19,627 genes as done by GTEx and TCGA on samples obtained from people’s prostates is at research level and is not yet a cheap procedure or common practice for general hospitals. However, the New Generation RNA-seq protocols followed by GTEx and TCGA are well known and standard, and as technologies are developed rapidly, they are continuously getting cheaper and more practical than before. Meanwhile, the next topic of research can be finding suitable biomarkers in the blood that can detect healthy people and patients only by their blood tests.

Acknowledgments

The author thanks Houshmand family and their companies, especially Mr. Eng. GholamAbbas Houshmand, then Atash Houshmand, Shahab Houshmand, Shahin Houshmand, and Shadab Houshmand who financed all the study and research during several years. The author also thanks the library of KTH Royal Institute of Technology for financial support of the publication fee.

  1. Ethical approval: This project does not need any extra personal/patient consent approval either because the data are normalized and do not reveal any private information, and whatever necessary with respect to the law is observed by the institutes publishing them.

  2. Conflict of interest: The author is the only author of this article who has submitted it to De Gruyter’s Open Medicine journal, and hence reiterates the consent to publish it in this journal. There are no competing interests and there is no need for any other consent approvals.

  3. Data availability statement: The datasets generated during and/or analyzed during the current study are available in the GTEx and TCGA repositories that are publicly accessible on www.gtexportal.org and https://portal.gdc.cancer.gov.

References

[1] Siegel RL, Miller KD, Ahmedin J. Cancer statistics, 2020. CA Cancer J Clin. 2020;70(1):7–30.10.3322/caac.21590Search in Google Scholar

[2] Atalay A, Crook T, Ozturk M, Yulug IG. Identification of genes induced by BRCA1 in breast cancer cells. Biochem Biophys Res Commun. 2002;299(5):839–46.10.1016/S0006-291X(02)02751-1Search in Google Scholar

[3] Cocchiola R, Rubini E, Altieri F, Chichiarelli S, Paglia G, Romaniello D, et al. STAT3 post-translational modifications drive cellular signaling pathways in prostate cancer cells. Int J Mol Sci. 2019;20(8):1815.10.3390/ijms20081815Search in Google Scholar PubMed PubMed Central

[4] Nik-Zainal S, Memari Y, Davies HR. Holistic cancer genome profiling for every patient. Swiss Med Wkly. 2020;150:w20158.10.4414/smw.2020.20158Search in Google Scholar PubMed PubMed Central

[5] Di Ventra M, Taniguchi M. Decoding DNA, RNA and peptides with quantum tunnelling. Nat Nanotechnol. 2016;11(2):117–26.10.1038/nnano.2015.320Search in Google Scholar PubMed

[6] Branton D, Deamer DW, Marziali A, Bayley H, Benner SA, Butler T, et al. The potential and challenges of nanopore sequencing. Nat Biotechnol. 2008;26(10):1146–53.10.1142/9789814287005_0027Search in Google Scholar

[7] Thompson JF, Milos PM. The properties and applications of single-molecule DNA sequencing. Genome Biol. 2011;12(2):217.10.1186/gb-2011-12-2-217Search in Google Scholar PubMed PubMed Central

[8] Goldenberg SL, Nir G, Salcudean S. A new era: artificial intelligence and machine learning in prostate cancer. Nat Rev Urol. 2019;16(7):391–403.10.1038/s41585-019-0193-3Search in Google Scholar PubMed

[9] Vamathevan J, Clark D, Czodrowski P, Dunham I, Ferran E, Lee G, et al. Applications of machine learning in drug discovery and development. Nat Rev Drug Discov. 2019;18(6):463–77. 10.1038/s41573-019-0024-5.Search in Google Scholar PubMed PubMed Central

[10] Cox DR. The regression analysis of binary sequences. J R Stat Soc Ser B Methodol. 1958;20(2):215–32.10.1111/j.2517-6161.1958.tb00292.xSearch in Google Scholar

[11] Pes B. Ensemble feature selection for high-dimensional data: a stability analysis across multiple domains. Neural Comput Appl. 2019;32(10):5951–73.10.1007/s00521-019-04082-3Search in Google Scholar

[12] Abeel T, Helleputte T, Van de Peer Y, Dupont P, Saeys Y. Robust biomarker identification for cancer diagnosis with ensemble feature se-lection methods. Bioinformatics. 2010;26(3):392–8.10.1093/bioinformatics/btp630Search in Google Scholar PubMed

[13] Sun Y, Zhu S, Ma K, Liu W, Yue Y, Hu G, et al. Identification of 12 cancer types through genome deep learning. Sci Rep. 2019;9(1):17256–9.10.1038/s41598-019-53989-3Search in Google Scholar PubMed PubMed Central

Received: 2020-09-02
Revised: 2021-01-28
Accepted: 2021-01-29
Published Online: 2021-03-24

© 2021 Arash Hooshmand, published by De Gruyter

This work is licensed under the Creative Commons Attribution 4.0 International License.

Articles in the same Issue

  1. Research Articles
  2. Identification of ZG16B as a prognostic biomarker in breast cancer
  3. Behçet’s disease with latent Mycobacterium tuberculosis infection
  4. Erratum
  5. Erratum to “Suffering from Cerebral Small Vessel Disease with and without Metabolic Syndrome”
  6. Research Articles
  7. GPR37 promotes the malignancy of lung adenocarcinoma via TGF-β/Smad pathway
  8. Expression and role of ABIN1 in sepsis: In vitro and in vivo studies
  9. Additional baricitinib loading dose improves clinical outcome in COVID-19
  10. The co-treatment of rosuvastatin with dapagliflozin synergistically inhibited apoptosis via activating the PI3K/AKt/mTOR signaling pathway in myocardial ischemia/reperfusion injury rats
  11. SLC12A8 plays a key role in bladder cancer progression and EMT
  12. LncRNA ATXN8OS enhances tamoxifen resistance in breast cancer
  13. Case Report
  14. Serratia marcescens as a cause of unfavorable outcome in the twin pregnancy
  15. Spleno-adrenal fusion mimicking an adrenal metastasis of a renal cell carcinoma: A case report and embryological background
  16. Research Articles
  17. TRIM25 contributes to the malignancy of acute myeloid leukemia and is negatively regulated by microRNA-137
  18. CircRNA circ_0004370 promotes cell proliferation, migration, and invasion and inhibits cell apoptosis of esophageal cancer via miR-1301-3p/COL1A1 axis
  19. LncRNA XIST regulates atherosclerosis progression in ox-LDL-induced HUVECs
  20. Potential role of IFN-γ and IL-5 in sepsis prediction of preterm neonates
  21. Rapid Communication
  22. COVID-19 vaccine: Call for employees in international transportation industries and international travelers as the first priority in global distribution
  23. Case Report
  24. Rare squamous cell carcinoma of the kidney with concurrent xanthogranulomatous pyelonephritis: A case report and review of the literature
  25. An infertile female delivered a baby after removal of primary renal carcinoid tumor
  26. Research Articles
  27. Hypertension, BMI, and cardiovascular and cerebrovascular diseases
  28. Case Report
  29. Coexistence of bilateral macular edema and pale optic disc in the patient with Cohen syndrome
  30. Research Articles
  31. Correlation between kinematic sagittal parameters of the cervical lordosis or head posture and disc degeneration in patients with posterior neck pain
  32. Review Articles
  33. Hepatoid adenocarcinoma of the lung: An analysis of the Surveillance, Epidemiology, and End Results (SEER) database
  34. Research Articles
  35. Thermography in the diagnosis of carpal tunnel syndrome
  36. Pemetrexed-based first-line chemotherapy had particularly prominent objective response rate for advanced NSCLC: A network meta-analysis
  37. Comparison of single and double autologous stem cell transplantation in multiple myeloma patients
  38. The influence of smoking in minimally invasive spinal fusion surgery
  39. Impact of body mass index on left atrial dimension in HOCM patients
  40. Expression and clinical significance of CMTM1 in hepatocellular carcinoma
  41. miR-142-5p promotes cervical cancer progression by targeting LMX1A through Wnt/β-catenin pathway
  42. Comparison of multiple flatfoot indicators in 5–8-year-old children
  43. Early MRI imaging and follow-up study in cerebral amyloid angiopathy
  44. Intestinal fatty acid-binding protein as a biomarker for the diagnosis of strangulated intestinal obstruction: A meta-analysis
  45. miR-128-3p inhibits apoptosis and inflammation in LPS-induced sepsis by targeting TGFBR2
  46. Dynamic perfusion CT – A promising tool to diagnose pancreatic ductal adenocarcinoma
  47. Biomechanical evaluation of self-cinching stitch techniques in rotator cuff repair: The single-loop and double-loop knot stitches
  48. Review Articles
  49. The ambiguous role of mannose-binding lectin (MBL) in human immunity
  50. Case Report
  51. Membranous nephropathy with pulmonary cryptococcosis with improved 1-year follow-up results: A case report
  52. Fertility problems in males carrying an inversion of chromosome 10
  53. Acute myeloid leukemia with leukemic pleural effusion and high levels of pleural adenosine deaminase: A case report and review of literature
  54. Metastatic renal Ewing’s sarcoma in adult woman: Case report and review of the literature
  55. Burkitt-like lymphoma with 11q aberration in a patient with AIDS and a patient without AIDS: Two cases reports and literature review
  56. Skull hemophilia pseudotumor: A case report
  57. Judicious use of low-dosage corticosteroids for non-severe COVID-19: A case report
  58. Adult-onset citrullinaemia type II with liver cirrhosis: A rare cause of hyperammonaemia
  59. Clinicopathologic features of Good’s syndrome: Two cases and literature review
  60. Fatal immune-related hepatitis with intrahepatic cholestasis and pneumonia associated with camrelizumab: A case report and literature review
  61. Research Articles
  62. Effects of hydroxyethyl starch and gelatin on the risk of acute kidney injury following orthotopic liver transplantation: A multicenter retrospective comparative clinical study
  63. Significance of nucleic acid positive anal swab in COVID-19 patients
  64. circAPLP2 promotes colorectal cancer progression by upregulating HELLS by targeting miR-335-5p
  65. Ratios between circulating myeloid cells and lymphocytes are associated with mortality in severe COVID-19 patients
  66. Risk factors of left atrial appendage thrombus in patients with non-valvular atrial fibrillation
  67. Clinical features of hypertensive patients with COVID-19 compared with a normotensive group: Single-center experience in China
  68. Surgical myocardial revascularization outcomes in Kawasaki disease: systematic review and meta-analysis
  69. Decreased chromobox homologue 7 expression is associated with epithelial–mesenchymal transition and poor prognosis in cervical cancer
  70. FGF16 regulated by miR-520b enhances the cell proliferation of lung cancer
  71. Platelet-rich fibrin: Basics of biological actions and protocol modifications
  72. Accurate diagnosis of prostate cancer using logistic regression
  73. miR-377 inhibition enhances the survival of trophoblast cells via upregulation of FNDC5 in gestational diabetes mellitus
  74. Prognostic significance of TRIM28 expression in patients with breast carcinoma
  75. Integrative bioinformatics analysis of KPNA2 in six major human cancers
  76. Exosomal-mediated transfer of OIP5-AS1 enhanced cell chemoresistance to trastuzumab in breast cancer via up-regulating HMGB3 by sponging miR-381-3p
  77. A four-lncRNA signature for predicting prognosis of recurrence patients with gastric cancer
  78. Knockdown of circ_0003204 alleviates oxidative low-density lipoprotein-induced human umbilical vein endothelial cells injury: Circulating RNAs could explain atherosclerosis disease progression
  79. Propofol postpones colorectal cancer development through circ_0026344/miR-645/Akt/mTOR signal pathway
  80. Knockdown of lncRNA TapSAKI alleviates LPS-induced injury in HK-2 cells through the miR-205/IRF3 pathway
  81. COVID-19 severity in relation to sociodemographics and vitamin D use
  82. Clinical analysis of 11 cases of nocardiosis
  83. Cis-regulatory elements in conserved non-coding sequences of nuclear receptor genes indicate for crosstalk between endocrine systems
  84. Four long noncoding RNAs act as biomarkers in lung adenocarcinoma
  85. Real-world evidence of cytomegalovirus reactivation in non-Hodgkin lymphomas treated with bendamustine-containing regimens
  86. Relation between IL-8 level and obstructive sleep apnea syndrome
  87. circAGFG1 sponges miR-28-5p to promote non-small-cell lung cancer progression through modulating HIF-1α level
  88. Nomogram prediction model for renal anaemia in IgA nephropathy patients
  89. Effect of antibiotic use on the efficacy of nivolumab in the treatment of advanced/metastatic non-small cell lung cancer: A meta-analysis
  90. NDRG2 inhibition facilitates angiogenesis of hepatocellular carcinoma
  91. A nomogram for predicting metabolic steatohepatitis: The combination of NAMPT, RALGDS, GADD45B, FOSL2, RTP3, and RASD1
  92. Clinical and prognostic features of MMP-2 and VEGF in AEG patients
  93. The value of miR-510 in the prognosis and development of colon cancer
  94. Functional implications of PABPC1 in the development of ovarian cancer
  95. Prognostic value of preoperative inflammation-based predictors in patients with bladder carcinoma after radical cystectomy
  96. Sublingual immunotherapy increases Treg/Th17 ratio in allergic rhinitis
  97. Prediction of improvement after anterior cruciate ligament reconstruction
  98. Effluent Osteopontin levels reflect the peritoneal solute transport rate
  99. circ_0038467 promotes PM2.5-induced bronchial epithelial cell dysfunction
  100. Significance of miR-141 and miR-340 in cervical squamous cell carcinoma
  101. Association between hair cortisol concentration and metabolic syndrome
  102. Microvessel density as a prognostic indicator of prostate cancer: A systematic review and meta-analysis
  103. Characteristics of BCR–ABL gene variants in patients of chronic myeloid leukemia
  104. Knee alterations in rheumatoid arthritis: Comparison of US and MRI
  105. Long non-coding RNA TUG1 aggravates cerebral ischemia and reperfusion injury by sponging miR-493-3p/miR-410-3p
  106. lncRNA MALAT1 regulated ATAD2 to facilitate retinoblastoma progression via miR-655-3p
  107. Development and validation of a nomogram for predicting severity in patients with hemorrhagic fever with renal syndrome: A retrospective study
  108. Analysis of COVID-19 outbreak origin in China in 2019 using differentiation method for unusual epidemiological events
  109. Laparoscopic versus open major liver resection for hepatocellular carcinoma: A case-matched analysis of short- and long-term outcomes
  110. Travelers’ vaccines and their adverse events in Nara, Japan
  111. Association between Tfh and PGA in children with Henoch–Schönlein purpura
  112. Can exchange transfusion be replaced by double-LED phototherapy?
  113. circ_0005962 functions as an oncogene to aggravate NSCLC progression
  114. Circular RNA VANGL1 knockdown suppressed viability, promoted apoptosis, and increased doxorubicin sensitivity through targeting miR-145-5p to regulate SOX4 in bladder cancer cells
  115. Serum intact fibroblast growth factor 23 in healthy paediatric population
  116. Algorithm of rational approach to reconstruction in Fournier’s disease
  117. A meta-analysis of exosome in the treatment of spinal cord injury
  118. Src-1 and SP2 promote the proliferation and epithelial–mesenchymal transition of nasopharyngeal carcinoma
  119. Dexmedetomidine may decrease the bupivacaine toxicity to heart
  120. Hypoxia stimulates the migration and invasion of osteosarcoma via up-regulating the NUSAP1 expression
  121. Long noncoding RNA XIST knockdown relieves the injury of microglia cells after spinal cord injury by sponging miR-219-5p
  122. External fixation via the anterior inferior iliac spine for proximal femoral fractures in young patients
  123. miR-128-3p reduced acute lung injury induced by sepsis via targeting PEL12
  124. HAGLR promotes neuron differentiation through the miR-130a-3p-MeCP2 axis
  125. Phosphoglycerate mutase 2 is elevated in serum of patients with heart failure and correlates with the disease severity and patient’s prognosis
  126. Cell population data in identifying active tuberculosis and community-acquired pneumonia
  127. Prognostic value of microRNA-4521 in non-small cell lung cancer and its regulatory effect on tumor progression
  128. Mean platelet volume and red blood cell distribution width is associated with prognosis in premature neonates with sepsis
  129. 3D-printed porous scaffold promotes osteogenic differentiation of hADMSCs
  130. Association of gene polymorphisms with women urinary incontinence
  131. Influence of COVID-19 pandemic on stress levels of urologic patients
  132. miR-496 inhibits proliferation via LYN and AKT pathway in gastric cancer
  133. miR-519d downregulates LEP expression to inhibit preeclampsia development
  134. Comparison of single- and triple-port VATS for lung cancer: A meta-analysis
  135. Fluorescent light energy modulates healing in skin grafted mouse model
  136. Silencing CDK6-AS1 inhibits LPS-induced inflammatory damage in HK-2 cells
  137. Predictive effect of DCE-MRI and DWI in brain metastases from NSCLC
  138. Severe postoperative hyperbilirubinemia in congenital heart disease
  139. Baicalin improves podocyte injury in rats with diabetic nephropathy by inhibiting PI3K/Akt/mTOR signaling pathway
  140. Clinical factors predicting ureteral stent failure in patients with external ureteral compression
  141. Novel H2S donor proglumide-ADT-OH protects HUVECs from ox-LDL-induced injury through NF-κB and JAK/SATA pathway
  142. Triple-Endobutton and clavicular hook: A propensity score matching analysis
  143. Long noncoding RNA MIAT inhibits the progression of diabetic nephropathy and the activation of NF-κB pathway in high glucose-treated renal tubular epithelial cells by the miR-182-5p/GPRC5A axis
  144. Serum exosomal miR-122-5p, GAS, and PGR in the non-invasive diagnosis of CAG
  145. miR-513b-5p inhibits the proliferation and promotes apoptosis of retinoblastoma cells by targeting TRIB1
  146. Fer exacerbates renal fibrosis and can be targeted by miR-29c-3p
  147. The diagnostic and prognostic value of miR-92a in gastric cancer: A systematic review and meta-analysis
  148. Prognostic value of α2δ1 in hypopharyngeal carcinoma: A retrospective study
  149. No significant benefit of moderate-dose vitamin C on severe COVID-19 cases
  150. circ_0000467 promotes the proliferation, metastasis, and angiogenesis in colorectal cancer cells through regulating KLF12 expression by sponging miR-4766-5p
  151. Downregulation of RAB7 and Caveolin-1 increases MMP-2 activity in renal tubular epithelial cells under hypoxic conditions
  152. Educational program for orthopedic surgeons’ influences for osteoporosis
  153. Expression and function analysis of CRABP2 and FABP5, and their ratio in esophageal squamous cell carcinoma
  154. GJA1 promotes hepatocellular carcinoma progression by mediating TGF-β-induced activation and the epithelial–mesenchymal transition of hepatic stellate cells
  155. lncRNA-ZFAS1 promotes the progression of endometrial carcinoma by targeting miR-34b to regulate VEGFA expression
  156. Anticoagulation is the answer in treating noncritical COVID-19 patients
  157. Effect of late-onset hemorrhagic cystitis on PFS after haplo-PBSCT
  158. Comparison of Dako HercepTest and Ventana PATHWAY anti-HER2 (4B5) tests and their correlation with silver in situ hybridization in lung adenocarcinoma
  159. VSTM1 regulates monocyte/macrophage function via the NF-κB signaling pathway
  160. Comparison of vaginal birth outcomes in midwifery-led versus physician-led setting: A propensity score-matched analysis
  161. Treatment of osteoporosis with teriparatide: The Slovenian experience
  162. New targets of morphine postconditioning protection of the myocardium in ischemia/reperfusion injury: Involvement of HSP90/Akt and C5a/NF-κB
  163. Superenhancer–transcription factor regulatory network in malignant tumors
  164. β-Cell function is associated with osteosarcopenia in middle-aged and older nonobese patients with type 2 diabetes: A cross-sectional study
  165. Clinical features of atypical tuberculosis mimicking bacterial pneumonia
  166. Proteoglycan-depleted regions of annular injury promote nerve ingrowth in a rabbit disc degeneration model
  167. Effect of electromagnetic field on abortion: A systematic review and meta-analysis
  168. miR-150-5p affects AS plaque with ASMC proliferation and migration by STAT1
  169. MALAT1 promotes malignant pleural mesothelioma by sponging miR-141-3p
  170. Effects of remifentanil and propofol on distant organ lung injury in an ischemia–reperfusion model
  171. miR-654-5p promotes gastric cancer progression via the GPRIN1/NF-κB pathway
  172. Identification of LIG1 and LIG3 as prognostic biomarkers in breast cancer
  173. MitoQ inhibits hepatic stellate cell activation and liver fibrosis by enhancing PINK1/parkin-mediated mitophagy
  174. Dissecting role of founder mutation p.V727M in GNE in Indian HIBM cohort
  175. circATP2A2 promotes osteosarcoma progression by upregulating MYH9
  176. Prognostic role of oxytocin receptor in colon adenocarcinoma
  177. Review Articles
  178. The function of non-coding RNAs in idiopathic pulmonary fibrosis
  179. Efficacy and safety of therapeutic plasma exchange in stiff person syndrome
  180. Role of cesarean section in the development of neonatal gut microbiota: A systematic review
  181. Small cell lung cancer transformation during antitumor therapies: A systematic review
  182. Research progress of gut microbiota and frailty syndrome
  183. Recommendations for outpatient activity in COVID-19 pandemic
  184. Rapid Communication
  185. Disparity in clinical characteristics between 2019 novel coronavirus pneumonia and leptospirosis
  186. Use of microspheres in embolization for unruptured renal angiomyolipomas
  187. COVID-19 cases with delayed absorption of lung lesion
  188. A triple combination of treatments on moderate COVID-19
  189. Social networks and eating disorders during the Covid-19 pandemic
  190. Letter
  191. COVID-19, WHO guidelines, pedagogy, and respite
  192. Inflammatory factors in alveolar lavage fluid from severe COVID-19 pneumonia: PCT and IL-6 in epithelial lining fluid
  193. COVID-19: Lessons from Norway tragedy must be considered in vaccine rollout planning in least developed/developing countries
  194. What is the role of plasma cell in the lamina propria of terminal ileum in Good’s syndrome patient?
  195. Case Report
  196. Rivaroxaban triggered multifocal intratumoral hemorrhage of the cabozantinib-treated diffuse brain metastases: A case report and review of literature
  197. CTU findings of duplex kidney in kidney: A rare duplicated renal malformation
  198. Synchronous primary malignancy of colon cancer and mantle cell lymphoma: A case report
  199. Sonazoid-enhanced ultrasonography and pathologic characters of CD68 positive cell in primary hepatic perivascular epithelioid cell tumors: A case report and literature review
  200. Persistent SARS-CoV-2-positive over 4 months in a COVID-19 patient with CHB
  201. Pulmonary parenchymal involvement caused by Tropheryma whipplei
  202. Mediastinal mixed germ cell tumor: A case report and literature review
  203. Ovarian female adnexal tumor of probable Wolffian origin – Case report
  204. Rare paratesticular aggressive angiomyxoma mimicking an epididymal tumor in an 82-year-old man: Case report
  205. Perimenopausal giant hydatidiform mole complicated with preeclampsia and hyperthyroidism: A case report and literature review
  206. Primary orbital ganglioneuroblastoma: A case report
  207. Primary aortic intimal sarcoma masquerading as intramural hematoma
  208. Sustained false-positive results for hepatitis A virus immunoglobulin M: A case report and literature review
  209. Peritoneal loose body presenting as a hepatic mass: A case report and review of the literature
  210. Chondroblastoma of mandibular condyle: Case report and literature review
  211. Trauma-induced complete pacemaker lead fracture 8 months prior to hospitalization: A case report
  212. Primary intradural extramedullary extraosseous Ewing’s sarcoma/peripheral primitive neuroectodermal tumor (PIEES/PNET) of the thoracolumbar spine: A case report and literature review
  213. Computer-assisted preoperative planning of reduction of and osteosynthesis of scapular fracture: A case report
  214. High quality of 58-month life in lung cancer patient with brain metastases sequentially treated with gefitinib and osimertinib
  215. Rapid response of locally advanced oral squamous cell carcinoma to apatinib: A case report
  216. Retrieval of intrarenal coiled and ruptured guidewire by retrograde intrarenal surgery: A case report and literature review
  217. Usage of intermingled skin allografts and autografts in a senior patient with major burn injury
  218. Retraction
  219. Retraction on “Dihydromyricetin attenuates inflammation through TLR4/NF-kappa B pathway”
  220. Special Issue Computational Intelligence Methodologies Meets Recurrent Cancers - Part I
  221. An artificial immune system with bootstrap sampling for the diagnosis of recurrent endometrial cancers
  222. Breast cancer recurrence prediction with ensemble methods and cost-sensitive learning
Downloaded on 9.9.2025 from https://www.degruyterbrill.com/document/doi/10.1515/med-2021-0238/html
Scroll to top button