SparkBWA Alignment 분석 도구 설치 및 실행 방법
Bioinformatics2017. 1. 18. 14:58SparkBWA Alignment 분석 도구 설치 및 실행 방법

설치 방법 git clone https://github.com/citiususc/SparkBWA.git cd SparkBWA ~/SparkBWA/src/main/native/Makefile.common 파일 수정 CFLAGS = -g -Wall -Wno-unused-function -O2 -fPIC (변경 또는 추가) mvn package [실행 명령어] spark-submit --class SparkBWA --master yarn-client \ --conf "spark.executor.extraJavaOptions=-Djava.library.path=./bwa.zip" \ --conf "spark.yarn.executor.memoryOverhead=8704" \ --driver-memory 4G --..

MySQL 데이터베이스 상태 모니터링 쿼리
Database2017. 1. 18. 14:01MySQL 데이터베이스 상태 모니터링 쿼리

1) 현재 process의 snapshot이며, 현재 걸려 있는 쿼리 확인 가능. 2). slow query가 있는 경우 processlist (information_schema DB) 로 확인 가능. 명령어 예제). mysql> show processlist; 3). 현재 process의 snapshot 을 접속된 세션 확인 가능. 명령어 예제). mysql> select user,LEFT(host, instr(host,':')-1) IP , count(*) from PROCESSLIST where user not in ('admin','repl','agent','system user') group by LEFT(host, instr(host,':')-1); 4). show global status로 ..

Sun Grid Engine(SGE) 명령어로 작업 실행
System Management2017. 1. 17. 15:22Sun Grid Engine(SGE) 명령어로 작업 실행

Sun Grid Engine 에서 실행 명령어를 연계된 컴퓨팅 노드로 분산 처리하여 실행할 수 있는 명령어는 다음과 같다. qsub -b y -N [작업 이름] "[실행 명령어]" 명령어 예제) qsub -b y -N task_name "echo hello"

Ubuntu 리눅스 Chrome 설치 중 라이브러리 장애 처리
System Management2017. 1. 15. 20:13Ubuntu 리눅스 Chrome 설치 중 라이브러리 장애 처리

# 구글 크롬 설치 파일을 다운 받아 설치 전 아래의 명령어를 이용하여 필요한 라이브러리 설치 sudo apt-get install libxss1 libgconf2-4 libappindicator1 libindicator7 # 다운로드 크롬 설치 파일 설치 sudo dpkg i google~.deb

Ubuntu 리눅스 터미널 solarized 테마 적용
System Management2017. 1. 15. 16:08Ubuntu 리눅스 터미널 solarized 테마 적용

1). Ubuntu git 설치 명령어 예제 sudo apt-get install git 2). git 명령어 solarized 테마 다운로드 및 설치하기 명령어 예제 git clone https://github.com/sigurdga/gnome-terminal-colors-solarized.git cd gnome-terminal-colors-solarized install ➜ gnome-terminal-colors-solarized git:(master) ✗ ./install.sh This script will ask you which color scheme you want, and which Gnome Terminal profile to overwrite. Please note that there i..

Ubuntu 리눅스 zsh 설치 및 테마 변경
System Management2017. 1. 15. 15:44Ubuntu 리눅스 zsh 설치 및 테마 변경

Ubuntu 에서 ZSH 설치 및 Oh My ZSH 설치를 위하여 다음과 같은 순서로 명령어 실행 1). root 초기 비밀번호 설정 명령어 예제 sudo passwd 2). apt-get 업데이트 진행 명령어 예제 sudo apt-get update 3). apt-get 을 이용한 git 설치 명령어 예제 sudo apt-get install git 4). apt-get 을 이용한 zsh 설치 명령어 예제 sudo apt-get install zsh zsh --version 5). Ubuntu 기본 shell 을 bash 에서 zsh 변경 명령어 예제 chsh -s 'which zsh' echo $SHELL 6). oh my zsh 설치 명령어 예제 curl -L https://raw.github.co..

CentOS7 리눅스 방화벽 사용 중지
System Management2017. 1. 7. 00:33CentOS7 리눅스 방화벽 사용 중지

systemctl stop firewalld systemctl disable firewalld iptables-service touch /etc/sysconfig/iptables systemctl start iptables systemctl enable iptables touch /etc/sysconfig/ip6tables systemctl start ip6tables systemctl enable ip6table

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

Github 사이트에서 BigBWA 를 다운 받아 설치한다. (https://github.com/citiususc/BigBWA) 1). 애플리케이션 디렉토리로 이동하여 Makefile.common 수정한다. (중요: 컴파일시 -lz 옵션이 추가되지 않으면, gzlib 관련 에러 발생) -변경전 LIBBWA_LIBS = -lrt -변경후 LIBBWA_LIBS = -lrt -lz 2). 애플리케이션 디렉토리로 이동하여 build.sh 코드를 시스템 환경에 맞게 변경 후 실행한다. #!/bin/bash cd BigBWA-master make clean make cd .. bash scp.sh \ 'BigBWA-master/build/BigBWA.jar BigBWA-master/build/bwa.zip' \ /..

image