DualRNA-Seq分析流程

参考流程:https://nf-co.re/dualrnaseq/1.0.0/usage

Ewels P A, Peltzer A, Fillinger S, et al. The nf-core framework for community-curated bioinformatics pipelines[J]. Nature biotechnology, 2020, 38(3): 276-278.

  • 软件安装
1
2
3
4
5
6
7
8
9
10
# Make sure that Java v8+ is installed:
java -version

# Install Nextflow
curl -fsSL get.nextflow.io | bash

# Add Nextflow binary to your user's PATH:
mv nextflow ~/bin/
# OR system-wide installation:
# sudo mv nextflow /usr/local/bin
  • conda安装
1
2
3
conda create -n dualrnaseq
conda activate dualrnaseq
conda install nextflow
  • 下载pipeline
1
nextflow run nf-core/dualrnaseq -profile test,<docker/singularity/conda/institute>
  • 基本的运行方式
1
2
3
4
5
6
7
8
nextflow run nf-core/dualrnaseq/main.nf -profile docker \
--input "/folder_to_reads/*_R{1,2}.fq.gz" \
--fasta_host host.fa \
--fasta_pathogen pathogen.fa \
--gff_host host.gff \
--gff_pathogen pathogen.gff \
--run_star \
--outdir results

💌lixiang117423@foxmail.com
💌lixiang117423@gmail.com


DualRNA-Seq分析流程
https://lixiang117423.github.io/article/dualrnaseq/
作者
小蓝哥
发布于
2021年12月29日
许可协议