WES 기반 SNV/small indel 발굴및분석파이프라인 서울대학교생명과학부 백대현교수 1

Size: px
Start display at page:

Download "WES 기반 SNV/small indel 발굴및분석파이프라인 서울대학교생명과학부 백대현교수 1"

Transcription

1 WES 기반 SNV/small indel 발굴및분석파이프라인 서울대학교생명과학부 백대현교수 1

2 목차 1 SNV, Indel 발굴을위한 WES 분석 SOP개요 배경 SOP를실제데이터에적용시에주의사항 시퀀싱데이터의특성확인 연구목적에부합하는분석방법선택 사용하는프로그램소개및설치방법 Burrows-Wheeler Alignment Tools (BWA) SAMtools Picard Tools Genome Analysis Toolkit (GATK) R DNA-seq 데이터정제 Reference genome 준비 Quality Trim Mapping Read group 추가및 read 정렬 Duplicated 된 read 제거 Realignment Base score recalibration 변이발굴 Germline mutation (SNV, indel) 발굴 Somatic mutation (SNV, indel) 발굴 Corhort 변이발굴분석

3 6 Variant annotation IGV를이용한시각화 IGV 설치방법 Reference genome 로딩 BAM 파일로딩 변이시각화 주요파일형식 SAM 파일형식 VCF 파일형식 단계별수행시간 중간과정생성파일확인 참고문헌

4 1 SNV, Indel 발굴을위한 WES 분석 SOP 개요 1.1 배경 Single nucleotide variants (SNV) 와 small insertions/deletions (Indel) 은다양한질병의주요원인이다. 이런 SNV 와 indel 을정확히발굴하는것은유전체연구분야에서핵심분석으로오래동안다양한질병에서연구가이루어지고있다. SNV 와 indel 을발굴하는다양한방법론들이개발되었지만 SNV 와 indel 를발굴하는파이프라인의표준화가미흡하여, 분석결과들을통합하는데어려움이있었다. 본 SOP (standard operation procedure) 은 WES (Whole-exome sequencing) 데이터를바탕으로 SNV, indel 를발굴하는표준모델을제시하여, 서로다른연구들의비교와통합에효율성을높이고자한다 SNV, indel 발굴표준파이프라인아래의그림은 WES 데이터를이용하여 SNV 와 indel 을발굴하는과정을나타내는모식도이다. SNV 와 indel 을발굴하기위해서는데이터전처리과정 (data preprocessing), 변이발굴 (variant detection), 발굴된변이의평가 (data annotation) 의과정을거쳐야한다. WES 데이터의전처리과정은 DNA 의 sequence 정보를가지고있는 raw 데이터를정제하는작업으로불필요한정보를제거하거나실험에의해왜곡된정보를바로잡는단계이다. 이후변이발굴단계에서는변이의위치와종류, 크기등을찾는작업을한다. 마지막으로이렇게발굴된변이들이어떤의미를가질수있는지평가하는작업을하게된다. 4

5 <SNV, Indel 발굴과정모식도 > 2 SOP 를실제데이터에적용시에주의사항 2.1 시퀀싱데이터의특성확인본 SOP에서제공하는분석표준프로토콜은 2016년 10월작성되었고, 현재 WES데이터분석에서가장많이사용되는 Illumina 시퀀싱데이터를기반으로작성되었다. Ion Torrent와같은다른플랫폼의데이터를사용하였다면, 해당플랫폼에서사용하는표준분석과정을추가혹은일부과정을대체하여분석을진행해야한다. 2.2 연구목적에부합하는분석방법선택본 SOP는질병샘플과같은환자의정상샘플로부터생성한 WES 데이터를이용하여 SNV와 small indel을발굴하는것이목표인연구 5

6 에최적화된분석파이프라인이다. 분석에추가적인정보 (panel 사용, cohort 존재 ) 가있을경우해당정보를처리하는분석과정을추가하여야한다. 본 SOP는연구목적이 SNV, indel 발굴이기때문에다른변이를발굴하는경우나, hotspot을발굴하는등목적이다른경우결과에문제가발생하므로주의해야한다. 3 사용하는프로그램소개및설치방법본 SOP 에서제시한 WES 데이터를이용한 SNV, indel 발굴파이프라인에는다양한외부프로그램을사용하고있다. 실제분석에앞서서해당프로그램들의설치를완료하여야한다. 3.1 Burrows-Wheeler Alignment Tools (BWA) 내용 BWA 는짧은 read 들을 reference sequence 에 mapping 시키는 프로그램으로수행속도와정확도에서안정적인성능을보여주어서 DNA sequence mapping 에널리사용되고있는프로그램이다 [1]. 설치방법 다운로드 : bunzip2 bwa tar.bz2 tar xvf bwa tar cd bwa make ~/.bashrc 파일을열고아래와같이 PATH 를설정. export PATH=$PATH:/path/to/bwa

7 3.2 SAMtools 설치방법다운로드 : cd samtools-1.x # and similarly for bcftools and htslib make make prefix=/where/to/install install ~/.bashrc 파일을열고아래와같이 PATH 를설정. export PATH=/where/to/install/bin:$PATH # for sh or bash users 3.3 Picard Tools 설치방법다운로드 : jar파일을다운로드한후 java를이용하여실행. 아래의명령어로테스트를시행. java -jar /path/to/picard.jar -h 3.4 Genome Analysis Toolkit (GATK) 설치방법다운로드 : jar파일을다운로드한후 java를이용하여실행. 3.5 R 설치방법 7

8 다운로드 : CentOS 의경우 yum install R 4 DNA-seq 데이터정제 4.1 Reference genome 준비 Reference genome 다운로드 : 예 )hg19 의경우 BWA index 생성 BWA 프로그램을이용하여 DNA-Seq 데이터를 reference 에 mapping 시키는데필요한 index 파일생성한다 [2]. bwa index -a bwtsw reference.fa FASTA index 파일생성 samtools 프로그램을이용하여 reference sequence 의 FASTA 파일로부터 reference.fa.fai 를생성 samtools faidx reference.fa 딕셔너리파일생성 Picard 프로그램을이용하여염색체의크기정보를가지고있는 referece.dict 파일을생성한다 [3]. java -jar picard.jar CreateSequenceDictionary REFERENCE=reference.fa OUTPUT=reference.dict 8

9 4.2 Quality Trim sickle 프로그램을이용하여 quality 가낮은 base 들을잘라낸다. trimming 하는 base quality 경계값은기본값인 20 을사용한다 [7]. sickle pe t sanger -f <forward fastq file> -r <backward fastq file> -o <output forward fastq file> -p <output backward fastq file> -s <output single-end fastq file> 4.3 Mapping BWA 를이용하여 FASTQ 파일을 reference sequence 에 mapping 한다. bwa-aln 을이용하여 sai 파일을만들고 bwa-sape 를통해서 mapping 을수행한다. bwa aln <reference sequence> <input fastq file> -f <output sai file> -t <thread number> bwa sampe <reference sequence> <forward sequence sai file> <backward sequence sai file> <forward sequence fastq file> <backward sequence fastq file> grep -E ^@ NM:i:0 NM:i:1 NM:i:2 NM:i:3 samtools view bs q 23 - > <out_bam_file> 옵션설명 9

10 <reference sequence>: reference sequence <forward sequence sai file>: forward sequence 의 sequence index 파일 <backward sequence sai file>: backward sequence 의 sequence index 파일 <forward sequence fastq file>: forward sequence 의 FASTQ 파일 <backward sequence fastq file>: backward sequence 의 FASTQ 파일 grep -E NM:i:0 NM:i:1 NM:i:2 NM:i:3 : Reference 와다른 base 의개수가 3 개이하만선택함 samtools view bs q 23 - > <out_bam_file>: Quality 23 이상만추출함 4.4 Read group 추가및 read 정렬 BAM 파일에 read group 를추가하고 coordinate 정렬을수한다. 이후에진행될분석에서 read group 정보가 BAM 파일에포함되어있는것을요구하는경우가많기때문에반드시필요하다. 또한 read 들을게놈상의위치 (coordinate) 를기반으로정렬하여야다음작업들을진행이가능하다. 실행의예 10

11 java Xmx200g -jar AddOrReplaceReadGroups.jar I=<input bam file> O=<output bam file> RGLB=<read group library> RGPL=illumina RGPU=<read group library> RGSM=<sample id> # sample id VALIDATION_STRINGENCY=LENIENT SORT_ORDER=coordinate # sort by coordinate 11

12 4.5 Duplicated 된 read 제거 raw sequence 데이터생성과정에서 PCR 로인해 duplicate 된 read 들을제거하는단계로중복된 read 정보를가지는 metrics.txt 파일과중복된 read 들이제거된 BAM 파일이생성된다. duplicate 된 read 들은이후의분석과정에서부정확한결과를유도할수있으므로특별한경우가아니면반드시제거해야한다. 아래의그림에서위부분은 duplication 이있는 read 들이제거되지않은상태를 IGV 프로그램을이용하여살펴본모습이고, 그아래는 duplication 이제거된모습을보여주고있다. duplicate 된 read 들을제거하고나면중복된 read 들이사라진모습을볼수있다. 실행예 <Duplicated 된 read 들 ( 화면상단 ) 과 dedulicated 된 read 들 ( 화면하단 )> 12

13 java Xmx200g jar MarkDuplicates.jar I=<input bam file> O=<output bam file> M=metrics.txt VALIDATION_STRINGENCY=LENIENT ASSUME_SORTED=true # assume sorted REMOVE_DUPLICATES=true MAX_RECORDS_IN_RAM= CREATE_INDEX=true 4.6 Realignment Indel 주변에 mapping 된 read 들을조정하여다시 mapping 시킴으로써 indel 에의한 artifact 를줄여주는과정이다. Indel 이존재 할경우그주위의 read 들을 mapping 할때 mapping 오류가 발생하는경우가많다. 이런오류를제거하기위하여알려진 indel 정보를이용하여다시 mapping 시키는작업을함으로써 mapping 오류를줄일수있다. 옵션 known 에필요한파일들은 ftp://ftp.broadinstitute.org/bundle/2.8/hg19/ (DBSNP and Mills_and_1000G_gold_standard_indels) 에서 다운로드 가능하다. 아래의그림은 realignment 전후의 indel 주위의 read 들의모습이다. realignment 를수행한수에는 indel 주위에 read 들이올바르게 mapping 되는것을볼수있다. 13

14 <Realignment 수행전후모습 ( Realignment 를위한 interval 파일생성 실행예 java Xmx200g -jar GenomeAnalysisTK.jar -T RealignerTargetCreator -I <input bam file> -o <output interval list> -R <reference sequence> --minreadsatlocus 10 --windowsize 10 --mismatchfraction known <SNP VCF file> -known <indel VCF file> Realignment 수행앞에서구한 interval list 파일에는 realignment 를수행해야하는영역들의정보가들어있다. 이파일을이용하여해당영역들을대상으로 SNP/indel 을고려한 realignment 를빠르게수행한다. 실행예 14

15 java -Xmx200g -jar GenomeAnalysisTK.jar -T IndelRealigner -R <reference sequence> -I <input bam file> -targetintervals <interval list> -known <indel VCF file> -known <SNP VCF file> -o <output bam file> -compress 5 --LODThresholdForCleaning consensusdeterminationmodel USE_READS --maxreadsinmemory maxconsensuses 30 --maxreadsforconsensuses Base score recalibration Base quality score은변이발굴을위해필요한핵심정보중에하나이다. 시퀀싱머신에서는개별 base score들이독립적으로측정된다. 하지만시퀀싱연구자들은 base score들사이에관련성이있음을발견하였다. 예를들어특정시퀀싱머신에서 A( 아데닌 ) 이나온이후다시 A가나온경우는오류일확률이더적다. 이런정보를이용하여기계학습방법을통하여 read들의 base score를보정하는작업이 base score recalibration이다. 아래그림은 recalibration을통하여 base score가보정된모습을보여주고있다. 15

16 <Recalibration ( 실행의예 java -jar GenomeAnalysisTK.jar -T BaseRecalibrator -R reference.fa -I realigned_reads.bam -L 20 -knownsites dbsnp.vcf -knownsites gold_indels.vcf -o recal_data.grp -plots before_recal.pdf Recalibration 을위한 sequence covariation 분석 16

17 java -jar GenomeAnalysisTK.jar -T PrintReads -R reference.fa -I realigned_reads.bam -L 20 -BQSR recal_data.grp -o recal_reads.bam 5 변이발굴 5.1 Germline mutation (SNV, indel) 발굴 BAM 파일로부터유전변이를찾아내는단계로 HaplotypeCaller 를이용하여단일염기다형성 (Single nucleotide polymorphism, SNP) 및삽입-결손변이 (Insertion-deletion, Indel) 등두가지유형의변이를발굴한후 VCF 형식으로출력파일을생성한다. 우선적으로분석에필요한기본파라미터들을명확히정의해야하며, 사용자에의하여정의되지않는경우기본값을사용하여분석수한다. 17

18 <HapplotypeCaller 의수행과정 ( 실행의예 java -jar GenomeAnalysisTK.jar -T HaplotypeCaller -R reference.fa -I reduced_reads.bam -L 20 --genotyping_mode DISCOVERY --output_mode EMIT_VARIANTS_ONLY --stand_emit_conf 10 --stand_call_conf 30 -o raw_variants.vcf 옵션설명 --genotyping_mode: 유전자형에사용할 alternate allele 를 18

19 확인하는방법지정 --output_mode: output의 call 유형지정 --stand_emit_conf: 분석프로그램이특정염기서열부위를유전변이로판단할최소한의신뢰도역치값 --stand_call_conf: 유전변이부위를 call 하기위한최소한의신뢰도역치값 5.2 Somatic mutation (SNV, indel) 발굴 Tumor 와 matched normal 의 DNA-seq 데이터로부터 somatic variant 를찾는단계로 MuTect2 를이용하여 SNV (Single nucleotide varint) 와 small indel 을발굴하여 VCF 형태의파일을생성한다. <MuTect 의수행과정 (Cibulskis, et al., 2013, Nature BioTechnology)> 실행예 19

20 java -jar GenomeAnalysisTK.jar -T MuTect2 -R reference.fasta -I:tumor tumor.bam -I:normal normal.bam [--dbsnp dbsnp.vcf] [--cosmic COSMIC.vcf] -o output.vcf 옵션설명 -T: GatkAnalysisTK 분석방법을 MuTect2 로지정 -R: Reference sequence 파일 -I: tumor: tumor BAM 파일 -I: normal: matched normal BAM 파일 --dbsnp: dbsnp VCF 파일 --cosmic: COSMIC VCF 파일 -o: 결과 VCF 파일 5.3 Corhort 변이발굴분석 GATK caller를이용하여 corhort의 germline 변이발굴을위해서는 gvcf를이용한 group calling 방법을사용하고, 발굴된변이들의 false positive를줄이기위해서 call set을정제할필요가있다. variant quality sore recalibration(vqsr) 을통하여발굴된변이의 quality score 를다시계산하여 false positive를줄인다. Corhort germline 데이터의변이발굴실행예 20

21 java -jar GenomeAnalysisTK.jar \ -R reference.fasta \ -T HaplotypeCaller \ -I sample1.bam \ --emitrefconfidence GVCF \ [--dbsnp dbsnp.vcf] \ [-L targets.interval_list] \ -o output.raw.snps.indels.g.vcf 옵션설명 --emitrefconfidece GVCF: group calling을통한 GVCF 파일을생성하기위한설정 SNP recalibration model 구축실행예 java -jar GenomeAnalysisTK.jar \ -T VariantRecalibrator \ -R reference.fa \ -input raw_variants.vcf \ -resource:hapmap,known=false,training=true,truth=true,prior=15.0 hapmap.vcf \ -resource:omni,known=false,training=true,truth=false,prior=12.0 omni.vcf \ -resource:1000g,known=false,training=true,truth=false,prior= G.vcf \ -resource:dbsnp,known=true,training=false,truth=false,prior=2.0 dbsnp.vcf \ -an DP \ -an QD \ -an FS \ -an MQRankSum \ -an ReadPosRankSum \ 21

22 -mode SNP \ -tranche [100.0, 99.9, 99.0, 90.0] \ -percentbad 0.01 \ -minnumbad 1000 \ -recalfile recalibrate_snp.recal \ -tranchesfile recalibrate_snp.tranches \ -rscriptfile recalibrate_snp_plots.r SNP recalibration Recalibration table을기반으로변이필터를위해 cutoff를적용한다. java -jar GenomeAnalysisTK.jar \ -T ApplyRecalibration \ -R reference.fa \ -input raw_variants.vcf \ -mode SNP \ --ts_filter_level 99.0 \ -recalfile recalibrate_snp.recal \ -tranchesfile recalibrate_snp.tranches \ -o recalibrated_snps_raw_indels.vcf Indel recalibration 모델생성 java -jar GenomeAnalysisTK.jar \ -T VariantRecalibrator \ -R reference.fa \ -input recalibrated_snps_raw_indels.vcf \ -resource:mills,known=true,training=true,truth=true,prior=12.0 mills.vcf \ -an DP \ -an FS \ -an MQRankSum \ 22

23 -an ReadPosRankSum \ -mode INDEL \ -tranche [100.0, 99.9, 99.0, 90.0] \ -percentbad 0.01 \ -minnumbad 1000 \ -maxgaussians 4 \ -recalfile recalibrate_indel.recal \ -tranchesfile recalibrate_indel.tranches \ -rscriptfile recalibrate_indel_plots.r Indel recalibration 수행 java -jar GenomeAnalysisTK.jar \ -T ApplyRecalibration \ -R reference.fa \ -input recalibrated_snps_raw_indels.vcf \ -mode INDEL \ --ts_filter_level 99.0 \ -recalfile recalibrate_indel.recal \ -tranchesfile recalibrate_indel.tranches \ -o recalibrated_variants.vcf 6 Variant annotation Variant annotation은발굴한변이들에특성을확인하는단계로, 변이필터렁, call set 제작등다양한목적으로활용될수있다. VariantAnnotator tool을이용하여변이들에 annotation을추가할수있다. java -jar GenomeAnalysisTK.jar -T VariantAnnotator 23

24 -R reference.fa -I reduced_reads.bam -V raw_variants.vcf -L raw_variants.vcf -A MQ0 \-A SpanningDeletions -o raw_reannotated_variants.vcf 옵션설명 -V: 입력 VCF 파일 -A: variant call을위한 annotation 7 IGV 를이용한시각화 IGV는 BAM, VCF, BED 파일등을시각화해주는그래픽기반프로그램으로다양한유전체관련정보를여러가지트랙을통하여보여준다 [8]. 7.1 IGV 설치방법다운로드 : 웹기반으로실행하거나.jar 파일을 jre를통해실행시킬수있다. 7.2 Reference genome 로딩 "Genomes" 메뉴를선택하고 "Load Genome from File..." 를 선택하여 reference genome 을불러올수있다. 24

25 7.3 BAM 파일로딩 "File" 메뉴에서 "Load from file..." 를클릭하여 BAM 파일을 불러와서 IGV 브라우저상에 read 들을보여줄수있다. 7.4 변이시각화 BAM 파일을로딩시킨후, IGV 화면에는 BAM 파일을구성하고있는 read 들을보여준다. 검색을통해특정염색체의위치혹은구간으로이동할수있다. 마우스포인트로특정 read 를클릭하면해당 read 의 mapping quality, insert size, base quality 등의 read 와 base 의정보를팝업창으로보여준다. 변이발굴후생성된 VCF 파일을 IGV 로읽으면해당위치존재하는변이들을보여주고, 특정변이를클릭하면변이의 genotype 과변이의크기와같은변이와관련된정보들을보여준다. 25

26 <Read 와 Base 정보를보여주는팝업창의모습 > 8 주요파일형식 8.1 SAM 파일형식 raw sequence 파일이 mapping된후에생성되는파일형식으로 alignment 와관련된정보를가지고있다. 헤더영역과필드영역으로구분되어있다. 에서 SAM 파일설명서를받을수있다. 헤더영역 SAM 파일버전, 유전체의크기, read group, mapping에상용된프로그램등이기술되어있다. 헤더영역의예 26

27 VN:1.0 SO:coordinate SN:1 LN: AS:NCBI37 UR:file:/data/local/ref/GATK/human_g1k_v37.fasta M5:1b22b98cdeb4a9304cb5d48026a85128 ID:UM0098:1 PL:ILLUMINA PU:HWUSI-EAS LHAAXX-L001 LB:80 DT: T20:00: SM:SD37743 CN:UMCORE ID:bwa VN:0.5.4 필드영역 SAM 파일에는 read의정보와 mapping 정보등이탭으로구분되어있다. 필드 설명 예 QNAME read 이름 1:497:R: M17D24M FLAG read flag 코드 133 RNAME 염색체번호 1 POS mapping 위치 497 MAPQ mapping quality 37 CIGAR CIGAR 테그 37M MRNM/RNEXT mate read의염색체 15 MPOS/PNEXT mate read의위치 ISIZE/TLEN template 길이 314 SEQ segment sequence CGGGTCTGACCTGAGGAGAACTGTGCTCCGCCTTCAG QUAL Phred quality score 0;==-==9;>>>>>=>>>>>>>>>>>=>>>>>>>>>> TAGs 기타정보 XT:A:U NM:i:0 SM:i:37 AM:i:0 X0:i:1 X1:i:0 XM:i:0 XO:i:0 XG:i:0 MD:Z: VCF 파일형식 VCF는 Variant Call Format의약자로, 변이의위치와종류, 크기등, 변이와관련된정보를담고있는파일이다. 필드 설명 예 CHROM 염색체번호 2 POS 1-based 위치

28 ID 변이 ID rs6057 REF Reference base G ALT Alternative allele A QUAL Quality 점수 29 FILTER 필터정보 PASS INFO 변이에대한정보 NS=2;DP=13;AF=0.5;DB;H2 FORMAT 변이에대한추가정보형식 GT:GQ:DP:HQ SAMPLEs 변이에대한추가정보 0 0:48:1:52,51 9 단계별수행시간 7GB 크기의 WES 데이터를제시하는표준파이프라인으로 SNV, indel 발굴분석을수행한결과아래와같은수행시간 ( 단위 : 분 ) 이소요되었다. 단계별수행시간을측정하는데사용된컴퓨팅시스템 CPU 메모리 하드디스크 최소사양컴퓨팅시스템 Intel(R) Core(TM) i GHz (4 cores) 32 GB 1 TB CPU 메모리 하드디스크 권장사양컴퓨팅시스템 2 x Intel(R) Xeon(R) CPU 2.00GHz (12 cores) 256 GB 1 TB 한샘플의 WES 분석소요시간 ( 단위 : 분 ) WES 데이터분석소요시간 ( 크기 : 약 7GB) 분석과정 최소사양 권장사양 전처리과정 BamtoFastq

29 QualityTrimming 7 2 BWA Alignment AddOrReplaceReadGroups MergeSamFiles 15 9 MarkDuplicates Realignment Recalibration Somatic variant 발굴 MuTect Germline variant 발굴 Haplotype Caller Total ( 단위 : 분 ) 중간과정생성파일확인각단계별로생성된중간파일을확인하여단계별분석이적절히수행되었는지를알수있도록확인지표를선정하여제시하였다. 사용한데이터는 TCGA 에서제공하는 lung adenocarcinoma(luad) 이다. 다운로드경로 : 파일 ID: eeb d3-a7ff-2aec7c0fad6b 파일명 : C509.TCGA A-01D bam WES 데이터분석단계별확인지표 분석과정 확인지표 지표값 BamtoFastq - - Kept paired records QualityTrimming Discarded paired records Kept single records Discarded single records 29

30 BWA Alignment Processed sequences AddOrReplaceReadGroups Processed reads MergeSamFiles - - MarkDuplicates Processed reads Realignment Filtered out reads Recalibration Filtered out reads 30

31 참고문헌 [1] Li, H.; Durbin, R. (2009). "Fast and accurate short read alignment with Burrows-Wheeler transform". Bioinformatics. 25 (14): doi: /bioinformatics/btp324. ISSN PMC free to read. PMID [2] Li, H.; Handsaker, B.; Wysoker, A.; Fennell, T.; Ruan, J.; Homer, N.; Marth, G.; Abecasis, G.; Durbin, R.; 1000 Genome Project Data Processing Subgroup (2009). "The Sequence Alignment/Map format and SAMtools". Bioinformatics. 25 (16): doi: /bioinformatics/btp352. PMC free to read. PMID [3] [4] [5] [6] [7] Joshi NA, Fass JN. (2011). Sickle: A sliding-window, adaptive, quality-based trimming tool for FastQ files. [8] Thorvaldsdottir, H.; Robinson, J. T.; Mesirov, J. P. (2012). "Integrative Genomics Viewer (IGV): High-performance genomics data visualization and exploration". Briefings in Bioinformatics. 14 (2): doi: /bib/bbs017. PMC free to read. PMID

암유전체에서차세대시퀀싱기반의 DNA 카피수변화발굴을위한 SOP (Standard Operating Protocols for Identification of NGS-Based DNA Copy Number Alterations in Cancer Genomes) 1

암유전체에서차세대시퀀싱기반의 DNA 카피수변화발굴을위한 SOP (Standard Operating Protocols for Identification of NGS-Based DNA Copy Number Alterations in Cancer Genomes) 1 암유전체에서차세대시퀀싱기반의 DNA 카피수변화발굴을위한 SOP (Standard Operating Protocols for Identification of NGS-Based DNA Copy Number Alterations in Cancer Genomes) 1 목차 1. 준비사항 (1) 배경 (3p) (2) 시퀀싱관련준비사항 (5p) 2. 시퀀싱데이터의전처리

More information

발생하는오류로인해실제유전정보를이용하기에는많은제약이따르기때문에, 실제염기서열데이터를이용하여매핑도구들의정확한성능평가를한다는것은사실상불가능하다. 이러한매핑도구의성능을평가하기위해대부분의논문에서가상의리드서열을생성하는시뮬레이터를사용하고있으며이로인해염기서열을분석하는데있어서매핑도구뿐

발생하는오류로인해실제유전정보를이용하기에는많은제약이따르기때문에, 실제염기서열데이터를이용하여매핑도구들의정확한성능평가를한다는것은사실상불가능하다. 이러한매핑도구의성능을평가하기위해대부분의논문에서가상의리드서열을생성하는시뮬레이터를사용하고있으며이로인해염기서열을분석하는데있어서매핑도구뿐 MASON 시뮬레이터도구기능분석 Analysis MASON Read Generation Tool 권대건 부산대학교컴퓨터공학과 duskan@pusan.ac.kr Abstract 2000 년대후반부터유전정보를분석하는 NGS 분야에대한연구가활발히진행되고있다. 그중 RNA 에대한연구가활발히진행되고있는데주로 mrna 를이용하여 mrna 에서발현되는특징이전체유전자염기서열에서어느부분에해당하는가를찾는연구가큰비중을차지하고있다.

More information

슬라이드 1

슬라이드 1 Pairwise Tool & Pairwise Test NuSRS 200511305 김성규 200511306 김성훈 200614164 김효석 200611124 유성배 200518036 곡진화 2 PICT Pairwise Tool - PICT Microsoft 의 Command-line 기반의 Free Software www.pairwise.org 에서다운로드후설치

More information

Microsoft PowerPoint Android-SDK설치.HelloAndroid(1.0h).pptx

Microsoft PowerPoint Android-SDK설치.HelloAndroid(1.0h).pptx To be an Android Expert 문양세강원대학교 IT 대학컴퓨터학부 Eclipse (IDE) JDK Android SDK with ADT IDE: Integrated Development Environment JDK: Java Development Kit (Java SDK) ADT: Android Development Tools 2 JDK 설치 Eclipse

More information

Network Security - Wired Sniffing 실습 ICNS Lab. Kyung Hee University

Network Security - Wired Sniffing 실습 ICNS Lab. Kyung Hee University Network Security - Wired Sniffing 실습 ICNS Lab. Kyung Hee University Outline Network Network 구조 Source-to-Destination 간 packet 전달과정 Packet Capturing Packet Capture 의원리 Data Link Layer 의동작 Wired LAN Environment

More information

<4D F736F F F696E74202D C61645FB3EDB8AEC7D5BCBA20B9D720C5F8BBE7BFEBB9FD2E BC8A3C8AF20B8F0B5E55D>

<4D F736F F F696E74202D C61645FB3EDB8AEC7D5BCBA20B9D720C5F8BBE7BFEBB9FD2E BC8A3C8AF20B8F0B5E55D> VHDL 프로그래밍 D. 논리합성및 Xilinx ISE 툴사용법 학습목표 Xilinx ISE Tool 을이용하여 Xilinx 사에서지원하는해당 FPGA Board 에맞는논리합성과정을숙지 논리합성이가능한코드와그렇지않은코드를구분 Xilinx Block Memory Generator를이용한 RAM/ ROM 생성하는과정을숙지 2/31 Content Xilinx ISE

More information

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc

Microsoft Word - ntasFrameBuilderInstallGuide2.5.doc NTAS and FRAME BUILDER Install Guide NTAS and FRAME BUILDER Version 2.5 Copyright 2003 Ari System, Inc. All Rights reserved. NTAS and FRAME BUILDER are trademarks or registered trademarks of Ari System,

More information

생물정보학및 RNA-Sequence 매핑도구소개 Introduction of Bioinformatics & RNA-Sequence Mapping Tools 권대건 부산대학교컴퓨터공학과 Abstract Frederick Sanger 에의

생물정보학및 RNA-Sequence 매핑도구소개 Introduction of Bioinformatics & RNA-Sequence Mapping Tools 권대건 부산대학교컴퓨터공학과 Abstract Frederick Sanger 에의 생물정보학및 RNA-Sequence 매핑도구소개 Introduction of Bioinformatics & RNA-Sequence Mapping Tools 권대건 부산대학교컴퓨터공학과 duskan@pusan.ac.kr Abstract Frederick Sanger 에의해서시퀀싱기술이개발된이후오래동안시퀀싱과관련된연구가계속되었고 2003 년에는 13 년간의연구끝에한성인남성한명의

More information

자궁내막증 진단과 추적에서의 혈액 표지자의 유용성

자궁내막증 진단과 추적에서의  혈액 표지자의 유용성 Use of reference searching and managing tools Chonnam National University Medical School Department of Obstetrics and Gynecology 강우대 PubMed as searching tool Mendeley as managing tool PubMed as searching

More information

뉴스레터6호F?2??訝

뉴스레터6호F?2??訝 February 2009 No.06 Roche Diagnostics Korea Co., Ltd. Focus Tech EDITORIAL February 2009 No.06 Contents Editorial 03 Focus 04 Product 10 Talk 12 Tech 14 Activity 19 Style 22 February 2009 No.06 02 03 FOCUS

More information

Microsoft PowerPoint SDK설치.HelloAndroid(1.5h).pptx

Microsoft PowerPoint SDK설치.HelloAndroid(1.5h).pptx To be an Android Expert 문양세강원대학교 IT 대학컴퓨터학부 개발환경구조및설치순서 JDK 설치 Eclipse 설치 안드로이드 SDK 설치 ADT(Androd Development Tools) 설치 AVD(Android Virtual Device) 생성 Hello Android! 2 Eclipse (IDE) JDK Android SDK with

More information

<4D F736F F F696E74202D20B1E8BCB120B1B3BCF6B4D420B0ADBFACC0DAB7E1>

<4D F736F F F696E74202D20B1E8BCB120B1B3BCF6B4D420B0ADBFACC0DAB7E1> Outline 2012. 1. 30 CS4HS 생물정보학 생물정보학및암정보의학 맟춤의학과생물정보학 김선 서울대학교컴퓨터공학부생물정보연구소생물정보학협동과정 유전체학, 후생유전체학을이용한암연구와맟춤의학 1 2 Central Dogma in Biology PART1. 생물정보학 http://en.wikipedia.org/wiki/central_dogma_of_molecular_biology

More information

<4D F736F F F696E74202D203137C0E55FBFACBDC0B9AEC1A6BCD6B7E7BCC72E707074>

<4D F736F F F696E74202D203137C0E55FBFACBDC0B9AEC1A6BCD6B7E7BCC72E707074> SIMATIC S7 Siemens AG 2004. All rights reserved. Date: 22.03.2006 File: PRO1_17E.1 차례... 2 심벌리스트... 3 Ch3 Ex2: 프로젝트생성...... 4 Ch3 Ex3: S7 프로그램삽입... 5 Ch3 Ex4: 표준라이브러리에서블록복사... 6 Ch4 Ex1: 실제구성을 PG 로업로드하고이름변경......

More information

REP - REPEATMASKER - 014, JULY 01 1 유전자예측프로그램 RepeatMasker 설치와운용 RepeatMasker Installation Manual 정우근 Chung Woo-Keun 부산대학교컴퓨터공학과 A

REP - REPEATMASKER - 014, JULY 01 1 유전자예측프로그램 RepeatMasker 설치와운용 RepeatMasker Installation Manual 정우근 Chung Woo-Keun 부산대학교컴퓨터공학과 A REP - REPEATMASKER - 014, JULY 01 1 유전자예측프로그램 RepeatMasker 설치와운용 RepeatMasker Installation Manual 정우근 Chung Woo-Keun 부산대학교컴퓨터공학과 wkchung@pusan.ac.kr ABSTRACT 진핵생물의유전체서열중반복서열이가장많은영역을차지하고있다. Transposon elements

More information

ISP and CodeVisionAVR C Compiler.hwp

ISP and CodeVisionAVR C Compiler.hwp USBISP V3.0 & P-AVRISP V1.0 with CodeVisionAVR C Compiler http://www.avrmall.com/ November 12, 2007 Copyright (c) 2003-2008 All Rights Reserved. USBISP V3.0 & P-AVRISP V1.0 with CodeVisionAVR C Compiler

More information

01Àå

01Àå CHAPTER 01 1 Fedora Fedora Linux Toolbox 2003 Fedora Core( ) http://fedoraproject.org www.redhat.com 2 CHAPTER Fedora RHEL GNU public license www.centos.org www.yellowdoglinux.com www. lineox.net www.

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Deep Learning 작업환경조성 & 사용법 ISL 안재원 Ubuntu 설치 작업환경조성 접속방법 사용예시 2 - ISO file Download www.ubuntu.com Ubuntu 설치 3 - Make Booting USB Ubuntu 설치 http://www.pendrivelinux.com/universal-usb-installer-easy-as-1-2-3/

More information

02-AOCL hwp

02-AOCL hwp 검안및콘택트렌즈학회지 2018 년제 17 권제 4 호 Ann Optom Contact Lens 2018;17(4):89-96 ISSN 2384-0919 (Print) ISSN 2384-0927 (Online) Review Article 안과영역에서의차세대염기서열분석 Next-generation Sequencing in Inherited Eye Diseases

More information

IM-20 4 5 6 7 8 9 10 11 12 Power On Power Off 13 1 4 15 16 17 18 19 20 21 22 23 24 25 26 2 7 28 29 30 31 3 2 Music Voice Settings Delete EQ Repeat LCD Contrast Auto OFF Rec Sample BackLight Return Normal

More information

SMARTer Sequencing Kits for Next Generation Sequencing

SMARTer Sequencing Kits for Next Generation Sequencing Simple, Fast, Powerful SMARTer Solution for NGS 다카라코리아바이오메디칼 1 페이지 표지분석 NGS Library 제작시의어려움을, SMARTer 기술로극복! FFPE Sample 과같은 Low input, degraded RNA 로부터 Sequencing 을가능하게! Single Cell sample 로부터 Library

More information

PowerPoint Presentation

PowerPoint Presentation Server I/O utilization System I/O utilization V$FILESTAT V$DATAFILE Data files Statspack Performance tools TABLESPACE FILE_NAME PHYRDS PHYBLKRD READTIM PHYWRTS PHYBLKWRT WRITETIM ------------- -----------------------

More information

서열자료조작을위한실용적인스크립트예제 작성자 : 정해영 ( 오류정정이나개선사항에대한의견환영!) 최초작성일 : 2015년 8월 6일최종수정일 : 2015년 9월 22일최초공개일 : 2015년 8월 7일

서열자료조작을위한실용적인스크립트예제 작성자 : 정해영  ( 오류정정이나개선사항에대한의견환영!) 최초작성일 : 2015년 8월 6일최종수정일 : 2015년 9월 22일최초공개일 : 2015년 8월 7일 서열자료조작을위한실용적인스크립트예제 작성자 : 정해영 hyjeong@kribb.re.kr jeong0449@gmail.com ( 오류정정이나개선사항에대한의견환영!) 최초작성일 : 2015년 8월 6일최종수정일 : 2015년 9월 22일최초공개일 : 2015년 8월 7일 일러두기 Ÿ 이탤릭체로쓴것은사용자가상황에맞게입력해야하는곳을나타냄 Ÿ 본자료의활용을위해서는리눅스시스템에

More information

Orcad Capture 9.x

Orcad Capture 9.x OrCAD Capture Workbook (Ver 10.xx) 0 Capture 1 2 3 Capture for window 4.opj ( OrCAD Project file) Design file Programe link file..dsn (OrCAD Design file) Design file..olb (OrCAD Library file) file..upd

More information

EndNote X2 초급 분당차병원도서실사서최근영 ( )

EndNote X2 초급 분당차병원도서실사서최근영 ( ) EndNote X2 초급 2008. 9. 25. 사서최근영 (031-780-5040) EndNote Thomson ISI Research Soft의 bibliographic management Software 2008년 9월현재 X2 Version 사용 참고문헌 (Reference), Image, Fulltext File 등 DB 구축 참고문헌 (Reference),

More information

NTD36HD Manual

NTD36HD Manual Upnp 사용 D7 은 UPNP 를지원하여 D7 의네크워크에연결된 UPNP 기기에별다른설정없이연결하여, 유무선으로네트워크상의연결된 UPNP 기기의콘텐츠를재생할수있습니다. TV 화면의 브라우저, UPNP 를선택하면연결가능한 UPNP 기기가표시됩니다. 주의 - UPNP 기능사용시연결된 UPNP 기기의성능에따라서재생되지않는콘텐츠가있을수있습니다. NFS 사용 D7

More information

thesis

thesis ( Design and Implementation of a Generalized Management Information Repository Service for Network and System Management ) ssp@nile nile.postech.ac..ac.kr DPE Lab. 1997 12 16 GMIRS GMIRS GMIRS prototype

More information

주간 건강과 질병 제8권 제22호 Figure 1. The total size of the sequence read archive (SRA) database of the National Center for Biotechnology Information (NCBI) is

주간 건강과 질병 제8권 제22호 Figure 1. The total size of the sequence read archive (SRA) database of the National Center for Biotechnology Information (NCBI) is Vol. 8 No. 22 PUBLIC HEALTH WEEKLY REPORT, KCDC 차세대 염기서열 분석 플랫폼으로서의 클라우드 컴퓨팅 Cloud Computing as a Platform for Next-Generation Sequencing Data Analysis Abstract Background: Recently, Next-generation Sequencing

More information

Analysis 1 : NGS Quality Control QC 과정은다음의총 12 단계로짂행되며, 각단계마다의의미와분석방법, 결과해석및 NGS 분석외의타 galaxy 의유용핚기능 에대해서설명될것입니다. 1. fastq 데이터를 galaxy 에로드하고업로드된데이터에대핚

Analysis 1 : NGS Quality Control QC 과정은다음의총 12 단계로짂행되며, 각단계마다의의미와분석방법, 결과해석및 NGS 분석외의타 galaxy 의유용핚기능 에대해서설명될것입니다. 1. fastq 데이터를 galaxy 에로드하고업로드된데이터에대핚 Galaxy 를이용핚 NGS 데이터분석 v 0.5 홍창범 (http://hongiiv.tistory.com) Last update 2011-11-20 본문서는 Galaxy 를이용하여차세대시퀀싱장비로부터생산된데이터를분석하는방법에대해서예제를통해서알아보려고합니다. 모듞분석이마찬가지지만, 분석에는정답이없습니다. 여기에서제시하는내용을기반으로해서자싞의샘플을다양하게분석해볼수있는기반을다지셨으면합니다.

More information

I. - II. DW ETT Best Practice

I. - II. DW ETT Best Practice IBM Business Intelligence Solution Seminar 2005 - IBM Business Consulting Service (cslee@kr.ibm.com) I. - II. DW ETT Best Practice (DW)., (EDW). Time 1980 ~1990 1995 2000 2005 * 1980 IBM Information Warehouse

More information

Microsoft PowerPoint - 알고리즘_5주차_1차시.pptx

Microsoft PowerPoint - 알고리즘_5주차_1차시.pptx Basic Idea of External Sorting run 1 run 2 run 3 run 4 run 5 run 6 750 records 750 records 750 records 750 records 750 records 750 records run 1 run 2 run 3 1500 records 1500 records 1500 records run 1

More information

Manufacturing6

Manufacturing6 σ6 Six Sigma, it makes Better & Competitive - - 200138 : KOREA SiGMA MANAGEMENT C G Page 2 Function Method Measurement ( / Input Input : Man / Machine Man Machine Machine Man / Measurement Man Measurement

More information

기존에 Windchill Program 이 설치된 Home Directory 를 선택해준다. 프로그램설치후설치내역을확인해보면 Adobe Acrobat 6.0 Support 내역을확인할수 있다.

기존에 Windchill Program 이 설치된 Home Directory 를 선택해준다. 프로그램설치후설치내역을확인해보면 Adobe Acrobat 6.0 Support 내역을확인할수 있다. PDMLink 에등록된 Office 문서들의 PDF 문서변환기능및 Viewer 기능을알아보자 PDM Link에서지원하는 [Product View Document Support] 기능은 Windows-Base 기반의 Microsoft Office 문서들을 PDMLink용 Viewer인 Product View를통한읽기가가능한 PDF Format 으로변환하는기능이다.

More information

BMP 파일 처리

BMP 파일 처리 BMP 파일처리 김성영교수 금오공과대학교 컴퓨터공학과 학습내용 영상반전프로그램제작 2 Inverting images out = 255 - in 3 /* 이프로그램은 8bit gray-scale 영상을입력으로사용하여반전한후동일포맷의영상으로저장한다. */ #include #include #define WIDTHBYTES(bytes)

More information

슬라이드 1

슬라이드 1 - 1 - 전자정부모바일표준프레임워크실습 LAB 개발환경 실습목차 LAB 1-1 모바일프로젝트생성실습 LAB 1-2 모바일사이트템플릿프로젝트생성실습 LAB 1-3 모바일공통컴포넌트생성및조립도구실습 - 2 - LAB 1-1 모바일프로젝트생성실습 (1/2) Step 1-1-01. 구현도구에서 egovframe>start>new Mobile Project 메뉴를선택한다.

More information

untitled

untitled R&S Power Viewer Plus For NRP Sensor 1.... 3 2....5 3....6 4. R&S NRP...7 -.7 - PC..7 - R&S NRP-Z4...8 - R&S NRP-Z3... 8 5. Rohde & Schwarz 10 6. R&S Power Viewer Plus.. 11 6.1...12 6.2....13 - File Menu...

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 BOOTLOADER Jo, Heeseung 부트로더컴파일 부트로더소스복사및압축해제 부트로더소스는웹페이지에서다운로드 /working 디렉터리로이동한후, wget으로다운로드 이후작업은모두 /working 디렉터리에서진행 root@ubuntu:# cp /media/sm5-linux-111031/source/platform/uboot-s4210.tar.bz2 /working

More information

solution map_....

solution map_.... SOLUTION BROCHURE RELIABLE STORAGE SOLUTIONS ETERNUS FOR RELIABILITY AND AVAILABILITY PROTECT YOUR DATA AND SUPPORT BUSINESS FLEXIBILITY WITH FUJITSU STORAGE SOLUTIONS kr.fujitsu.com INDEX 1. Storage System

More information

표준프레임워크로 구성된 컨텐츠를 솔루션에 적용하는 것에 문제가 없는지 확인

표준프레임워크로 구성된 컨텐츠를 솔루션에 적용하는 것에 문제가 없는지 확인 표준프레임워크로구성된컨텐츠를솔루션에적용하는것에문제가없는지확인 ( S next -> generate example -> finish). 2. 표준프레임워크개발환경에솔루션프로젝트추가. ( File -> Import -> Existring Projects into

More information

Interstage5 SOAP서비스 설정 가이드

Interstage5 SOAP서비스 설정 가이드 Interstage 5 Application Server ( Solaris ) SOAP Service Internet Sample Test SOAP Server Application SOAP Client Application CORBA/SOAP Server Gateway CORBA/SOAP Gateway Client INTERSTAGE SOAP Service

More information

휠세미나3 ver0.4

휠세미나3 ver0.4 andromeda@sparcs:/$ ls -al dev/sda* brw-rw---- 1 root disk 8, 0 2014-06-09 18:43 dev/sda brw-rw---- 1 root disk 8, 1 2014-06-09 18:43 dev/sda1 brw-rw---- 1 root disk 8, 2 2014-06-09 18:43 dev/sda2 andromeda@sparcs:/$

More information

SBR-100S User Manual

SBR-100S User Manual ( 1 / 13 ) SBR-100S 모델에 대한 사용자 펌웨어 업그레이드 방법을 안내해 드립니다. SBR-100S 는 신규 펌웨어가 있을시 FOTA(자동업데이트) 기능을 통하여 자동 업그레이드가 되며, 필요시 사용자가 신규 펌웨어를 다운받아 수동으로 업그레이드 할 수 있습니다. 1. 준비하기 1.1 연결 장치 준비 펌웨어 업그레이드를 위해서는 SBR-100S

More information

학술연구용역사업 최종결과보고서 질병관리본부 2 - 4 - 6 - 8 - 10 - 12 - 과제명 차수 수령일 전체시료개수 실험실패 Exome Chip 실험완료 1차 2012-07-18 2,688 7 2,681 2차 2012-08-21 4,021 19 4,002 대사질환원인유전요인 3차 2012-10-24 634 3 631 발굴을위한대규모 4차 2012-11-09

More information

DRB1598A

DRB1598A DDJ-S1 http://www.prodjnet.com/support/ 본 파이오니어 제품을 구입해 주셔서 감사드립 본 취급설명서를 주의깊게 읽으시고, 갖고 계신 모델의 올바른 조작법을 익히십시오. 본 취급설 명서를 읽으신 후, 안전한 곳에 보관하셔서 나중에 참고하십시오. 일부 국가 또는 지역의 경우, 전원 플러그 및 콘센트의 형태가 설명의 그림에 보여지는

More information

김기남_ATDC2016_160620_[키노트].key

김기남_ATDC2016_160620_[키노트].key metatron Enterprise Big Data SKT Metatron/Big Data Big Data Big Data... metatron Ready to Enterprise Big Data Big Data Big Data Big Data?? Data Raw. CRM SCM MES TCO Data & Store & Processing Computational

More information

슬라이드 1

슬라이드 1 / 유닉스시스템개요 / 파일 / 프로세스 01 File Descriptor file file descriptor file type unix 에서의파일은단지바이트들의나열임 operating system 은파일에어떤포맷도부과하지않음 파일의내용은바이트단위로주소를줄수있음 file descriptor 는 0 이나양수임 file 은 open 이나 creat 로 file

More information

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2

FMX M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX 20062 () wwwexellencom sales@exellencom () 1 FMX 1 11 5M JPG 15MB 320x240 30fps, 160Kbps 11MB View operation,, seek seek Random Access Average Read Sequential Read 12 FMX () 2 FMX FMX D E (one

More information

Microsoft PowerPoint - 권장 사양

Microsoft PowerPoint - 권장 사양 Autodesk 제품컴퓨터사양 PRONETSOFT.CO 박경현 1 AutoCAD 시스템사양 시스템요구사양 32 비트 AutoCAD 2009 를위한시스템요구사항 Intel Pentium 4 프로세서 2.2GHz 이상, 또는 Intel 또는 AMD 듀얼 코어프로세서 16GH 1.6GHz 이상 Microsoft Windows Vista, Windows XP Home

More information

슬라이드 1

슬라이드 1 전자정부개발프레임워크 1 일차실습 LAB 개발환경 - 1 - 실습목차 LAB 1-1 프로젝트생성실습 LAB 1-2 Code Generation 실습 LAB 1-3 DBIO 실습 ( 별첨 ) LAB 1-4 공통컴포넌트생성및조립도구실습 LAB 1-5 템플릿프로젝트생성실습 - 2 - LAB 1-1 프로젝트생성실습 (1/2) Step 1-1-01. 구현도구에서 egovframe>start>new

More information

소프트웨어개발방법론

소프트웨어개발방법론 사용사례 (Use Case) Objectives 2 소개? (story) vs. 3 UC 와 UP 산출물과의관계 Sample UP Artifact Relationships Domain Model Business Modeling date... Sale 1 1..* Sales... LineItem... quantity Use-Case Model objects,

More information

Mango220 Android How to compile and Transfer image to Target

Mango220 Android How to compile and Transfer image to Target Mango220 Android How to compile and Transfer image to Target http://www.mangoboard.com/ http://cafe.naver.com/embeddedcrazyboys Crazy Embedded Laboratory www.mangoboard.com cafe.naver.com/embeddedcrazyboys

More information

USER GUIDE

USER GUIDE Solution Package Volume II DATABASE MIGRATION 2010. 1. 9. U.Tu System 1 U.Tu System SeeMAGMA SYSTEM 차 례 1. INPUT & OUTPUT DATABASE LAYOUT...2 2. IPO 중 VB DATA DEFINE 자동작성...4 3. DATABASE UNLOAD...6 4.

More information

LXR 설치 및 사용법.doc

LXR 설치 및 사용법.doc Installation of LXR (Linux Cross-Reference) for Source Code Reference Code Reference LXR : 2002512( ), : 1/1 1 3 2 LXR 3 21 LXR 3 22 LXR 221 LXR 3 222 LXR 3 3 23 LXR lxrconf 4 24 241 httpdconf 6 242 htaccess

More information

ODS-FM1

ODS-FM1 OPTICAL DISC ARCHIVE FILE MANAGER ODS-FM1 INSTALLATION GUIDE [Korean] 1st Edition (Revised 4) 상표 Microsoft, Windows 및 Internet Explorer는 미국 및 / 또는 다른 국가에서 Microsoft Corporation 의 등록 상표입 Intel 및 Intel Core

More information

PRO1_09E [읽기 전용]

PRO1_09E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_09E1 Information and - ( ) 2 3 4 5 Monitor/Modify Variables" 6 7 8 9 10 11 CPU 12 Stop 13 (Forcing) 14 (1) 15 (2) 16 : 17 : Stop 18 : 19 : (Forcing) 20 :

More information

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5]

28 THE ASIAN JOURNAL OF TEX [2] ko.tex [5] The Asian Journal of TEX, Volume 3, No. 1, June 2009 Article revision 2009/5/7 KTS THE KOREAN TEX SOCIETY SINCE 2007 2008 ko.tex Installing TEX Live 2008 and ko.tex under Ubuntu Linux Kihwang Lee * kihwang.lee@ktug.or.kr

More information

PRO1_02E [읽기 전용]

PRO1_02E [읽기 전용] Siemens AG 1999 All rights reserved File: PRO1_02E1 Information and 2 STEP 7 3 4 5 6 STEP 7 7 / 8 9 10 S7 11 IS7 12 STEP 7 13 STEP 7 14 15 : 16 : S7 17 : S7 18 : CPU 19 1 OB1 FB21 I10 I11 Q40 Siemens AG

More information

슬라이드 제목 없음

슬라이드 제목 없음 ETOS-DPS-X Guide AC&T SYSTEM 1 ETOS-DPS-X 개요 ETOS-DPS-X Field Bus Network 중 Profibus-DP Network 에연결되는장비. ProfiBus-DP Network 시스템에 DP 통신을지원하지않는현장장비에대한통신서버기능구현. Profibus-DP Slave 동작하기때문에반드시 DP-Master 모듈이있는시스템에서적용가능.

More information

PowerPoint Presentation

PowerPoint Presentation FORENSICINSIGHT SEMINAR SQLite Recovery zurum herosdfrc@google.co.kr Contents 1. SQLite! 2. SQLite 구조 3. 레코드의삭제 4. 삭제된영역추적 5. 레코드복원기법 forensicinsight.org Page 2 / 22 SQLite! - What is.. - and why? forensicinsight.org

More information

160106_STEPI_Insight_179호(정기철,김석관_외)rp.hwp

160106_STEPI_Insight_179호(정기철,김석관_외)rp.hwp 2015. 12. 1. 제179호 개인 유전체 기반 맞춤 의료 현황과 발전과제 2015. 12. 1. 제179호 개인 유전체 기반 맞춤 의료 현황과 발전과제 정기철 김석관 김승현 이명화 목 차 < 요 약 > Ⅰ. 개인 유전체 기반 맞춤 의료 7 Ⅱ. 맞 춤 의료 기 술 현 황과 시 사 점 10 Ⅲ. 맞춤 의료 조직 및 비즈니스모델 현황과 시사점 16 Ⅳ.

More information

Microsoft Word - [2017SMA][T8]OOPT_Stage_2040 ver2.docx

Microsoft Word - [2017SMA][T8]OOPT_Stage_2040 ver2.docx OOPT Stage 2040 - Design Feesual CPT Tool Project Team T8 Date 2017-05-24 T8 Team Information 201211347 박성근 201211376 임제현 201411270 김태홍 2017 Team 8 1 Table of Contents 1. Activity 2041. Design Real Use

More information

Microsoft PowerPoint - chap01-C언어개요.pptx

Microsoft PowerPoint - chap01-C언어개요.pptx #include int main(void) { int num; printf( Please enter an integer: "); scanf("%d", &num); if ( num < 0 ) printf("is negative.\n"); printf("num = %d\n", num); return 0; } 1 학습목표 프로그래밍의 기본 개념을

More information

Microsoft Word - src.doc

Microsoft Word - src.doc IPTV 서비스탐색및콘텐츠가이드 RI 시스템운용매뉴얼 목차 1. 서버설정방법... 5 1.1. 서비스탐색서버설정... 5 1.2. 컨텐츠가이드서버설정... 6 2. 서버운용방법... 7 2.1. 서비스탐색서버운용... 7 2.1.1. 서비스가이드서버실행... 7 2.1.2. 서비스가이드정보확인... 8 2.1.3. 서비스가이드정보추가... 9 2.1.4. 서비스가이드정보삭제...

More information

(Microsoft PowerPoint - \301\24613\260\255 - oFusion \276\300 \261\270\274\272)

(Microsoft PowerPoint - \301\24613\260\255 - oFusion \276\300 \261\270\274\272) 게임엔진 제 13 강 ofusion 씬구성 이대현교수 한국산업기술대학교게임공학과 학습목차 Ofusion 을이용한 export Export 된씬의재현 씬노드애니메이션을이용한수동카메라트래킹 ofusion OGRE3D 엔진용 3D MAX 익스포터 http://www.ofusiontechnologies.com ofusion 의특징 Realtime Viewport 3D

More information

1 Nov-03 CST MICROWAVE STUDIO Microstrip Parameter sweeping Tutorial Computer Simulation Technology

1   Nov-03 CST MICROWAVE STUDIO Microstrip Parameter sweeping Tutorial Computer Simulation Technology 1 CST MICROWAVE STUDIO Microstrip Parameter sweeping Tutorial Computer Simulation Technology wwwcstcom wwwcst-koreacokr 2 1 Create a new project 2 Model the structure 3 Define the Port 4 Define the Frequency

More information

커알못의 커널 탐방기 이 세상의 모든 커알못을 위해서

커알못의 커널 탐방기 이 세상의 모든 커알못을 위해서 커알못의 커널 탐방기 2015.12 이 세상의 모든 커알못을 위해서 개정 이력 버전/릴리스 0.1 작성일자 2015년 11월 30일 개요 최초 작성 0.2 2015년 12월 1일 보고서 구성 순서 변경 0.3 2015년 12월 3일 오탈자 수정 및 글자 교정 1.0 2015년 12월 7일 내용 추가 1.1 2015년 12월 10일 POC 코드 삽입 및 코드

More information

슬라이드 1

슬라이드 1 NGS Analysis using Galaxy 2013 한국유전체학회동계심포지엄생물정보분석교육워크샵 김형용, 이규열, 이성찬 _ 2013. 02. 05 ~ 2013.02.06 R&D Center, Insilicogen, Inc. Index NGS Analysis using Galaxy 목차있을시간지 01 Galaxy introduction 02 Galaxy

More information

< 목차 > Ⅰ. 개요 3 Ⅱ. 실시간스팸차단리스트 (RBL) ( 간편설정 ) 4 1. 메일서버 (Exchange Server 2007) 설정변경 4 2. 스팸차단테스트 10

< 목차 > Ⅰ. 개요 3 Ⅱ. 실시간스팸차단리스트 (RBL) ( 간편설정 ) 4 1. 메일서버 (Exchange Server 2007) 설정변경 4 2. 스팸차단테스트 10 (https://www.kisarbl.or.kr) < 목차 > Ⅰ. 개요 3 Ⅱ. 실시간스팸차단리스트 (RBL) ( 간편설정 ) 4 1. 메일서버 (Exchange Server 2007) 설정변경 4 2. 스팸차단테스트 10 Ⅰ. 개요 실시간스팸차단리스트 (RBL) 는메일서버를운영하는누구나손쉽게효과적으로스팸수신을차단하는데이용할수있도록한국인터넷진흥원 (KISA)

More information

슬라이드 1

슬라이드 1 www.altsoft.co.kr www.clunix.com COMSOL4.0a Cluster 성능테스트 2010 년 10 월 클루닉스 / 알트소프트 개요 개요 목차 BMT 환경정보 BMT 시나리오소개 COMSOL4.0a MPP 해석실행조건 BMT 결과 COMSOL4.0a 클러스터분석결과 ( 메모리 / 성능 ) COMSOL4.0a 클러스터최종분석결과 -2- 개요

More information

untitled

untitled Step Motor Device Driver Embedded System Lab. II Step Motor Step Motor Step Motor source Embedded System Lab. II 2 open loop, : : Pulse, 1 Pulse,, -, 1 +5%, step Step Motor (2),, Embedded System Lab. II

More information

Microsoft PowerPoint - 11주차_Android_GoogleMap.ppt [호환 모드]

Microsoft PowerPoint - 11주차_Android_GoogleMap.ppt [호환 모드] Google Map View 구현 학습목표 교육목표 Google Map View 구현 Google Map 지원 Emulator 생성 Google Map API Key 위도 / 경도구하기 위도 / 경도에따른 Google Map View 구현 Zoom Controller 구현 Google Map View (1) () Google g Map View 기능 Google

More information

最即時的Sybase ASE Server資料庫診斷工具

最即時的Sybase ASE Server資料庫診斷工具 TOAD 9.5 Toad Oracle 料 SQL 料 行 理 SQLprofile Quest Software 了 Oracle -Toad Tools of Oracle Application Developers Toad 了 DBA DBA 理 易 度 Toad 料 SQL PL/SQL Toad Oracle PL/SQL Toad Schema Browser Schema Browser

More information

APOGEE Insight_KR_Base_3P11

APOGEE Insight_KR_Base_3P11 Technical Specification Sheet Document No. 149-332P25 September, 2010 Insight 3.11 Base Workstation 그림 1. Insight Base 메인메뉴 Insight Base Insight Insight Base, Insight Base Insight Base Insight Windows

More information

PowerPoint 프레젠테이션

PowerPoint 프레젠테이션 Reasons for Poor Performance Programs 60% Design 20% System 2.5% Database 17.5% Source: ORACLE Performance Tuning 1 SMS TOOL DBA Monitoring TOOL Administration TOOL Performance Insight Backup SQL TUNING

More information

리눅스설치가이드 3. 3Rabbitz Book 을리눅스에서설치하기위한절차는다음과같습니다. 설치에대한예시는우분투서버 기준으로진행됩니다. 1. Java Development Kit (JDK) 또는 Java Runtime Environment (JRE) 를설치합니다. 2.

리눅스설치가이드 3. 3Rabbitz Book 을리눅스에서설치하기위한절차는다음과같습니다. 설치에대한예시는우분투서버 기준으로진행됩니다. 1. Java Development Kit (JDK) 또는 Java Runtime Environment (JRE) 를설치합니다. 2. 3. 3Rabbitz Book 을리눅스에서설치하기위한절차는다음과같습니다. 설치에대한예시는우분투서버 기준으로진행됩니다. 1. Java Development Kit (JDK) 또는 Java Runtime Environment (JRE) 를설치합니다. 2. 3Rabbitz Book 애플리케이션파일다운로드하여압축파일을풀고복사합니다. 3. 3Rabbitz Book 실행합니다.

More information

아이콘의 정의 본 사용자 설명서에서는 다음 아이콘을 사용합니다. 참고 참고는 발생할 수 있는 상황에 대처하는 방법을 알려 주거나 다른 기능과 함께 작동하는 방법에 대한 요령을 제공합니다. 상표 Brother 로고는 Brother Industries, Ltd.의 등록 상

아이콘의 정의 본 사용자 설명서에서는 다음 아이콘을 사용합니다. 참고 참고는 발생할 수 있는 상황에 대처하는 방법을 알려 주거나 다른 기능과 함께 작동하는 방법에 대한 요령을 제공합니다. 상표 Brother 로고는 Brother Industries, Ltd.의 등록 상 Android 용 Brother Image Viewer 설명서 버전 0 KOR 아이콘의 정의 본 사용자 설명서에서는 다음 아이콘을 사용합니다. 참고 참고는 발생할 수 있는 상황에 대처하는 방법을 알려 주거나 다른 기능과 함께 작동하는 방법에 대한 요령을 제공합니다. 상표 Brother 로고는 Brother Industries, Ltd.의 등록 상표입니다. Android는

More information

CLgenomics TM User Manual App Version 1.51 Windows and Mac OS X ( 주 ) 천랩서울특별시관악구관악로 1 서울대학교유전공학연구소 동 307 호 Tel: Fax:

CLgenomics TM User Manual App Version 1.51 Windows and Mac OS X ( 주 ) 천랩서울특별시관악구관악로 1 서울대학교유전공학연구소 동 307 호 Tel: Fax: CLgenomics User Manual 한글 Korean Version App. Version 1.51 www.chunlab.com CLgenomics TM User Manual App Version 1.51 Windows and Mac OS X ( 주 ) 천랩서울특별시관악구관악로 1 서울대학교유전공학연구소 105-1 동 307 호 Tel: 82-2-875-2501

More information

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2

목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy... 6 2.2 Compare... 6 2.3 Copy & Compare... 6 2.4 Erase... 6 2 유영테크닉스( 주) 사용자 설명서 HDD014/034 IDE & SATA Hard Drive Duplicator 유 영 테 크 닉 스 ( 주) (032)670-7880 www.yooyoung-tech.com 목차 1. 제품 소개... 4 1.1 특징... 4 1.2 개요... 4 1.3 Function table... 5 2. 기능 소개... 6 2.1 Copy...

More information

ez-shv manual

ez-shv manual ez-shv+ SDI to HDMI Converter with Display and Scaler Operation manual REVISION NUMBER: 1.0.0 DISTRIBUTION DATE: NOVEMBER. 2018 저작권 알림 Copyright 2006~2018 LUMANTEK Co., Ltd. All Rights Reserved 루먼텍 사에서

More information

untitled

untitled 200 180 ( ) () 1,060 1,040 160 140 120 / () 1,020 1,000 980 100 960 80 940 60 920 2005.1 2005.2 2005.3 2005.4 2006.1 2006.2 2006.3 2006.4 2007.1 2007.2 2007.3 150000 () (% ) 5.5 100000 CD () 5.4 50000

More information

<30352D30312D3120BFB5B9AEB0E8BEE0C0C720C0CCC7D82E687770>

<30352D30312D3120BFB5B9AEB0E8BEE0C0C720C0CCC7D82E687770> IT법률컨설팅 강의교안 (상) 영문계약의 이해 소프트웨어 자산관리기법 영문계약의 이해 - 1 - - 2 - - 3 - - 4 - - 5 - - 6 - - 7 - - 8 - - 9 - - 10 - - 11 - - 12 - - 13 - - 14 - - 15 - - 16 - - 17 - - 18 - - 19 - - 20 - - 21 - - 22 - - 23 -

More information

메일서버등록제(SPF) 인증기능적용안내서 (HP-UX - postfix) OS Mail Server SPF 적용모듈 (Perl 기반) 작성기준 HP-UX 11.11i postfix spf-filter 년 6 월

메일서버등록제(SPF) 인증기능적용안내서 (HP-UX - postfix) OS Mail Server SPF 적용모듈 (Perl 기반) 작성기준 HP-UX 11.11i postfix spf-filter 년 6 월 메일서버등록제(SPF) 인증기능적용안내서 (HP-UX - postfix) OS Mail Server SPF 적용모듈 (Perl 기반) 작성기준 HP-UX 11.11i postfix 2.7.1 spf-filter 1.0 2016 년 6 월 목 차 I. 개요 1 1. SPF( 메일서버등록제) 란? 1 2. SPF 를이용한이메일인증절차 1 II. postfix,

More information

untitled

untitled CLEBO PM-10S / PM-10HT Megapixel Speed Dome Camera 2/39 3/39 4/39 5/39 6/39 7/39 8/39 ON ON 1 2 3 4 5 6 7 8 9/39 ON ON 1 2 3 4 10/39 ON ON 1 2 3 4 11/39 12/39 13/39 14/39 15/39 Meg gapixel Speed Dome Camera

More information

Mentor_PCB설계입문

Mentor_PCB설계입문 Mentor MCM, PCB 1999, 03, 13 (daedoo@eeinfokaistackr), (kkuumm00@orgionet) KAIST EE Terahertz Media & System Laboratory MCM, PCB (mentor) : da & Summary librarian jakup & package jakup & layout jakup &

More information

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum

API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Docum API STORE 키발급및 API 사용가이드 Document Information 문서명 : API STORE 언어별 Client 사용가이드작성자 : 작성일 : 2012.11.23 업무영역 : 버전 : 1 st Draft. 서브시스템 : 문서번호 : 단계 : Document Distribution Copy Number Name(Role, Title) Date

More information

1) 인증서만들기 ssl]# cat >www.ucert.co.kr.pem // 설명 : 발급받은인증서 / 개인키파일을한파일로저장합니다. ( 저장방법 : cat [ 개인키

1) 인증서만들기 ssl]# cat   >www.ucert.co.kr.pem // 설명 : 발급받은인증서 / 개인키파일을한파일로저장합니다. ( 저장방법 : cat [ 개인키 Lighttpd ( 단일도메인 ) SSL 인증서신규설치가이드. [ 고객센터 ] 한국기업보안. 유서트기술팀 1) 인증서만들기 [root@localhost ssl]# cat www.ucert.co.kr.key www.ucert.co.kr.crt >www.ucert.co.kr.pem // 설명 : 발급받은인증서 / 개인키파일을한파일로저장합니다. ( 저장방법 : cat

More information

Microsoft PowerPoint UNIX Shell.ppt

Microsoft PowerPoint UNIX Shell.ppt 컴퓨터특강 () 2006 년봄학기 문양세강원대학교컴퓨터과학과 Shell? Shell이란명령어해석기 (Command Processor or Command Interpreter): 사용자가입력하는명령을읽고해석하는프로그램프로그래밍언어 : Shell이해석할수있는스크립트 (shell script) 라는프로그램을작성유닉스를사용하는데있어주요한인터페이스 Page 2 1 Shell

More information

Microsoft PowerPoint - AME_InstallRoutine_ver8.ppt

Microsoft PowerPoint - AME_InstallRoutine_ver8.ppt AMESim Install Routine and License Manager Tel : +82-31-608-0434 Fax : +82-31-608-0439 E-mail :support@shinho-systems.co.kr http://www.shinho-systems.co.kr Ssangyong IT Twin Tower 702, Sandaewon-dong,

More information

Secure Programming Lecture1 : Introduction

Secure Programming Lecture1 : Introduction Malware and Vulnerability Analysis Lecture3-2 Malware Analysis #3-2 Agenda 안드로이드악성코드분석 악성코드분석 안드로이드악성코드정적분석 APK 추출 #1 adb 명령 안드로이드에설치된패키지리스트추출 adb shell pm list packages v0nui-macbook-pro-2:lecture3 v0n$

More information

05Àå

05Àå CHAPTER 05 NT,, XP,. NT NTFS, XP. D,,. XP x NT,,, ( x, x ). NT/ /XP,.. PC NT NT. + Guide to Software: Understanding and Installing Windows 2000 and Windows NT + SOFTWARE Guide to Software 3/e SOFTWARE

More information

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월

지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., KOSPI200.,. * 지능정보연구제 16 권제 1 호 2010 년 3 월 지능정보연구제 16 권제 1 호 2010 년 3 월 (pp.71~92),.,.,., Support Vector Machines,,., 2004 5 2009 12 KOSPI200.,. * 2009. 지능정보연구제 16 권제 1 호 2010 년 3 월 김선웅 안현철 社 1), 28 1, 2009, 4. 1. 지능정보연구제 16 권제 1 호 2010 년 3 월 Support

More information

주간건강과질병 제 10 권제 44 호 연구단신, Brief report 병원체염기서열생산을위한라이브러리제작기법소개 질병관리본부국립보건연구원생물안전평가과양효진, 최현정, 채희열, 강연호 * * 교신저자 : Librar

주간건강과질병 제 10 권제 44 호 연구단신, Brief report 병원체염기서열생산을위한라이브러리제작기법소개 질병관리본부국립보건연구원생물안전평가과양효진, 최현정, 채희열, 강연호 * * 교신저자 : Librar 연구단신, Brief report 병원체염기서열생산을위한라이브러리제작기법소개 질병관리본부국립보건연구원생물안전평가과양효진, 최현정, 채희열, 강연호 * * 교신저자 : slowpc@korea.kr, 043-719-8040 Library construction techniques for pathogen whole genome sequencing Yang Hyo-Jin,

More information

T100MD+

T100MD+ User s Manual 100% ) ( x b a a + 1 RX+ TX+ DTR GND TX+ RX+ DTR GND RX+ TX+ DTR GND DSR RX+ TX+ DTR GND DSR [ DCE TYPE ] [ DCE TYPE ] RS232 Format Baud 1 T100MD+

More information