RNA-seq

1/2--linux下利用conda安装所需的软件,数据库下载原

2019-07-15  本文已影响0人  徐沫沫

以下是根据生信技能树ChIP-seq视频记的笔记,代码来自视频。

1. 安装软件
conda install -y sra-tools macs2 deeptools
conda install -y homer meme samtools 
conda install -y bowtie bowtie2 
conda install -y trim-galore

软件安装在默认目录下 xuyongxin/miniconda3/envs/ChIP-seq/bin

2. 下载原始数据

这里使用的数据来自文章:Polycomb associates genome-wide with a specific RNA polymerase II variant, and regulates metabolic genes in ES cells,
网址(https://www.ncbi.nlm.nih.gov/geo/query/acc.cgi?acc=GSE34520)

mkdir -p project/chip-seq
cd project/chip-seq
mkdir {sra,raw,clean,align,peaks,motif,qc}
prefetch=prefetch

如果不在conda环境下,利用prefetch所在的全路径进行赋值:

prefetch=~/软件所在路径/bin/prefetch

利用srr.list批量下载数据:

cat srr.list | while read id;do (nohup $prefetch $id &);done

这里的$prefetch就是指代上面赋值的“=”后边的prefetch。
利用top可以查看是否正在下载,如果top下没有此任务,可以 用以下命令来搜索任务:

ps -ef | grep pref

默认下载目录为 ~/ncbi/public/sra/,可以更改。

wget https://ftp-trace.ncbi.nlm.nih.gov/sra/sdk/current/sratoolkit.current-centos_linux64.tar.gz
tar -xvzf sratoolkit.current-centos_linux64.tar.gz  #解压缩
vi ~/.bashrc #添加到环境变量,输入:
export PATH=/data/xuyongxin/biosoft/sratoolkit.2.9.6-1-centos_linux64/bin:$PATH
source ~/.bashrc #激活环境变量
nohup prefetch --option-file srr.list &
3. 将原始数据转换格式
cut -f11,14 sra.table > 1_sra_11_14col   #冒号前的内容还有
cut -f11,14 sra.table | cut -d ":" -f2 > 1_sra_11_14col    #冒号前的内容去掉

Perl脚本如下:

#!/usr/bin/perl -w

my ($infile,$outfile)=@ARGV;
open (IN,"$infile");
open (OUT,">$outfile");

my $header = <IN>;
my %hash;
while (my $line = <IN>){
        chomp $line;
        my @array = split /\s+/,$line;
        my $srr = pop @array;
        my $samp = join "_", @array;
        if (exists $hash{$samp}){
                $hash{$samp} += 1;
        }else{
                $hash{$samp} = 1;

        }
        print OUT "$samp\_$hash{$samp}\t$srr\n";
}
close IN;
close OUT;

perl 1_config_extract.pl 1_sra_11_14col config
sed -i 's/^_//' config

至此,得到样本的信息,用于数据格式转换和名称更改。

analysis_dir=raw
cat config | while read id;
do echo $id
arr=($id)
srr=${arr[1]}
sample=${arr[0]}
nohup $dump -A $sample -O $analysis_dir --gzip --split-3 sra/$srr.sra &
done

注意:上述命令执行是在conda 的ChIP-seq环境下,运行前记得激活环境,且要先对dump进行赋值:

dump=fastq-dump  或者
dump=~/biosoft/sratoolkit.2.9.6-1-centos_linux64/bin/fastq-dump

终于可以转换了。。。。

注意得到的样本信息里,_1和_2的意义,查看数据来源文献的说明。

上一篇下一篇

猜你喜欢

热点阅读