MapSplice2 Alignment 분석 도구 설치 및 실행 방법
Bioinformatics2017. 1. 6. 14:35MapSplice2 Alignment 분석 도구 설치 및 실행 방법

MapSplice 2 에서는 Bowtie Builder 로 생성된 레퍼런스 인덱스 파일을 사용한다. Bowtie 인덱스 파일을 이용하여 리드들을 Alignment 하는 분석 단계를 수행한다. python mapsplice.py [options]* \ -c \ -x \ -1 \ -2 명령어 예제). /usr/bin/python ~/MapSplice-v2.2.1/mapsplice.py -p 4 \ --qual-scale phred33 --bam --fusion \ -o /$output_path \ -c ~/hg19 \ -x ~/hg19/hg19 \ -1 ~/R1_001.fastq \ -2 ~/R2_001.fastq

Eclipse 4.5 RCP 프로젝트 4.6 불러오기
Tools2016. 11. 4. 13:59Eclipse 4.5 RCP 프로젝트 4.6 불러오기

프로젝트 Run-Configurations 에서 다음과 같이 진행한다. 1). Main 탭에 Clear 라디오 버튼을 활성화 한다. 2). Plug-ins 탭에 전체 Plug-ins를 선택하고 Add Required Plug-ins 버튼을 실행한다. 3). 하단에 있는 Validate Plug-ins 버튼을 실행 후 Apply 로 실행하면 장애 없이 실행이 가능하다.

리눅스 ssh-kygen 서버 비밀번호 접속 명령어
System Management2016. 9. 10. 00:08리눅스 ssh-kygen 서버 비밀번호 접속 명령어

mkdir ~/.ssh ssh-keygen -t rsa -P "" cp /home/stat/.ssh/id_rsa.pub /home/stat/.ssh/authorized_keys chmod 755 ~/.ssh chmod 644 ~/.ssh/authorized_keys sudo /etc/init.d/ssh restart ssh localhost

Hadoop yarn 모드에서 spark-submit 실행 시 발생 장애 처리
Big Data2016. 5. 20. 09:24Hadoop yarn 모드에서 spark-submit 실행 시 발생 장애 처리

SparkConf sparkConf = new SparkConf(); sparkConf.setAppName(uid); sparkConf.setMaster("yarn"); sparkConf.set("spark.kryo.registrator", "org.kobic.shark.spark.model.SharkRegistrator"); sparkConf.set("spark.serializer", "org.apache.spark.serializer.KryoSerializer"); sparkConf.set("spark.kryo.registrationRequired", "true"); sparkConf.set("spark.executor.cores", config.get(Constants.SPARK_MAX_CORE))..

리눅스 파일 대용량 폴더 및 파일 추척 명령어
System Management2016. 2. 17. 10:57리눅스 파일 대용량 폴더 및 파일 추척 명령어

# 리눅스 명령어 중에서 현재 경로에 용량이 가장 큰 폴더나 파일을 출력할때 다음 명령어 사용 du -k /foldername | sort -n | tail -10 du -ckx | sort -n > /tmp/duck-root

BLAST Nr/Nt 데이터베이스에서 시퀀싱 서열로 변환 명령어
Bioinformatics2016. 2. 17. 10:56BLAST Nr/Nt 데이터베이스에서 시퀀싱 서열로 변환 명령어

BLAST NR 데이터베이스에서 FASTA 형태의 Sequences 데이터를 추출할때 다음과 같은 명령어를 이용한다. 명령어 예제). blastdbcmd \ -db est \ -dbtype nr \ -entry_batch myContigList.txt \ -outfmt %f \ -out myHitContigs.fasta

MySQL 5.7.9 릴리즈 변화된 root 비밀번호 변경하기
Database2015. 11. 18. 21:32MySQL 5.7.9 릴리즈 변화된 root 비밀번호 변경하기

Mac 환경에서 MySQL 5.7.9 버젼 설치 후 root 접속 시도 시 패스워드 장애로 MySQL 접속이 불가능하다. sudo /usr/local/mysql/support-files/mysql.server stop sudo mysqld_safe --skip-grant-tables mysql -u root update mysql.user set password=password('2261bbs') where user='root'; 콘솔 윈도우에서 mysqld_safe 실행으로 safe 모드로 MySQL 데몬을 구동하고 다른 콘솔 윈도우를 띄어 MySQL에 접속한다. mysql -u root 접속 후 다음 명령어로 root 비밀번호를 업데이트한다. [5.7 이전 버젼] update mysql.user se..

Spring Framework 프로젝트에서 cvc-complex-type-3.2.2: Attribute 'local' is not allowed to appear in element 'ref' 에러 처리 방법
Devel/WEB2015. 9. 23. 14:27Spring Framework 프로젝트에서 cvc-complex-type-3.2.2: Attribute 'local' is not allowed to appear in element 'ref' 에러 처리 방법

eclipse 에서 스프링 프레임워크 적용해 프로젝트를 진행 시 아래와 같은 장애 발생한다. cvc-complex-type-3.2.2: Attribute 'local' is not allowed to appear in element 'ref' 스프링 4.0 부터는 spring-beans.xsd 에서 local을 지원하지 않기에 스프링 프레임워크 4.0버젼 이하의 프로젝트 일 경우 아래와 같이 bean 설정을 수정한다.

image