Skip to content

Instantly share code, notes, and snippets.

View romanegloo's full-sized avatar
😀
clean-up

Jiho Noh romanegloo

😀
clean-up
  • University of Kentucky
  • Lexington, KY
View GitHub Profile
@romanegloo
romanegloo / ukycs215_lab4.md
Last active February 7, 2019 14:01
cs215 lab note 4

Lab04

Objectives

  • read input temperatures by day
  • write summarization in an output file

from tempin.txt

01/24/2019 5 22 27 31 26 19
01/25/2019 8 20 25 30 35 40 38 32 29
@romanegloo
romanegloo / lucene_indexing.py
Created February 2, 2019 17:42
Indexing using PyLucene, example code
'''
Indexing using PyLucene, example code
'''
import os
from pathlib import Path
import lucene
from java.nio.file import Paths
from org.apache.lucene.analysis.standard import StandardAnalyzer
@romanegloo
romanegloo / installation.md
Created February 2, 2019 03:41
PyLucene Installation

On Mac OS

Java

Both of Oracle Java 1.8 and Apple's Java 1.6 are required. You can download Oracle Java 1.8 from here.

For Apple's Java 1.6, download the package from here and install it.

Lab 03

Schedule

  • Project 1 is due by Feb 8
  • Lab2 submission is due Tonight

Tips for Lab 03

How to print a float number with a fixed precision

ex) 41.4451 to 41.45

@romanegloo
romanegloo / BioASQ_questions_6b.txt
Created January 24, 2019 14:36
All the questions appeared in BioASQ 6b training data
"Is Hirschsprung disease a mendelian or a multifactorial disorder?"
"List signaling molecules (ligands) that interact with the receptor EGFR?"
"Is the protein Papilin secreted?"
"Are long non coding RNAs spliced?"
"Is RANKL secreted from the cells?"
"Does metformin interfere thyroxine absorption?"
"Which miRNAs could be used as potential biomarkers for epithelial ovarian cancer?"
"Which acetylcholinesterase inhibitors are used for treatment of myasthenia gravis?"
"Has Denosumab (Prolia) been approved by FDA?"
"List the human genes encoding for the dishevelled proteins?"
@romanegloo
romanegloo / sta580_midterm_review.md
Created January 11, 2019 19:44
STA580 midterm review

STA 580 midterm summary

Lecture 1 - Numerical and graphical summaries of data

  • graphical measures and plots
  • measure of location
    • mean (x_bar)
    • median
  • measure of dispersion
  • variance
@romanegloo
romanegloo / sta580_final_review.md
Created January 11, 2019 19:43
STA580 fianl review

STA580 final summary

ANOVA (analysis of variance)

  • testing whether the means of two or more populations are equal
  • must have a continuous response and at least one categorical factor

one-way ANOVA

  • one fixed factor
@romanegloo
romanegloo / gist:9d2b8b8c50fed2de716a9913d905dc89
Created January 11, 2019 19:33
TREC clinical decision support track --- sample topic
<description>A 15 yo girl accompanied by her mother is referred for evaluation by the school. The girl has more than expected absences in the last three month, appears to be constantly tired and sleepy in class. Her mother assures the girl is well fed, and getting the proper sleep at night but admits the girls tires easily when they go out on weekend hikes. Physical examination: BP: 90/60. HR 130/min the only remarkable findings are extremely pale skin and mucosae. Grade 3/6 systolic murmur. Lab tests report Hb: 4.2 g/dL, MCV 61.8 fL, serum iron less than 1.8 umol/L and ferritin of 2 ng/mL. Fecal occult blood is negative.</description>
<summary>A 15 yo girl with fatigue, pale skin, low hemoglobin and ferritin.</summary>
<diagnosis>Iron-Deficiency Anemia</diagnosis>
<target>treatment</target>
@romanegloo
romanegloo / clinical_trial-sample.xsd
Last active January 11, 2019 19:25
TREC precision medicine document samples
public.xsd:
<?xml version="1.0" encoding="UTF-8" ?>
<!-- ============================================================================================
XML Schema for ClinicalTrials.gov public XML
http://clinicaltrials.gov/ct2/html/images/info/public.xsd
National Library of Medicine, National Institutes of Health
@romanegloo
romanegloo / ukycs215_lab1.md
Last active January 9, 2019 15:20
lab1 note for UKY CS 215

Environment

prefer NO (fancy) IDE like VS, XCode, Clion... I prefer plain text files

How to compile C++ file and Run

compile

g++ [source file] -o [executable file]