Skip to content
Jessica Mattick edited this page Apr 1, 2020 · 26 revisions

Welcome to the RNA_Editing_Detection_Pipeline wiki!

Usage:

Download Reference Data

  1. Create a tab-delimited file containing the urls to all required reference data keeping the first column identical to the example.

Example reference_data.txt:

genome  ftp://ftp.ebi.ac.uk/pub/databases/gencode/Gencode_human/release_30/GRCh37_mapping/GRCh37.primary_assembly.genome.fa.gz
genome_annotation       ftp://ftp.ebi.ac.uk/pub/databases/gencode/Gencode_human/release_30/GRCh37_mapping/gencode.v30lift37.annotation.gtf.gz
strand_detection        https://sourceforge.net/projects/rseqc/files/BED/Human_Homo_sapiens/hg19_RefSeq.bed.gz
rmsk    http://hgdownload.soe.ucsc.edu/goldenPath/hg19/database/rmsk.txt.gz
dbSNP   http://hgdownload.soe.ucsc.edu/goldenPath/hg19/database/snp151.txt.gz
rediportal_db   http://srv00.recas.ba.infn.it/webshare/rediportalDownload/table1_full.txt.gz
  1. Run get_reference_data.py to download all required data into specified directory.

Parameters:

  • -i or --input: path to tab-delimited file containing data urls
  • -o or --output: path to output directory

Example:

nohup python3 get_reference_data.py -i reference_data.txt -o output_path &

Index Genome for STAR

  1. Run index_genome_STAR.py to index the genome for STAR.

Parameters: *-f- or --fasta: path to genome fasta file *-aor--gtf_annotation: path to genome gtf annotation *-oor--output`: path to output directory

Example:

nohup python3 index_genome_STAR.py -f genome.fa -a annotation.gtf -o index_output/ &

Retrieve Fastq Files from SRA

  1. Create a txt file containing a list of SRA accession numbers.
  2. Run get_SRA_data.py to download data

Parameters:

  • -a or --acc_list: path to file containing list of SRA accession numbers
  • -o or --output: path to output directory

Example:

nohup python3 get_SRA_data.py -a acc.txt -o output_path &

Download Fastq Files of WGS from SRA

  1. Create a txt file containing a list of ERR accession numbers.
  2. Run get_WGS_data.py to download data

Parameters:

  • -a or --acc_list: path to file containing list of SRA accession numbers
  • -o or --output: path to output directory

Example:

nohup python3 get_WGS_data.py -a acc.txt -o output_path &
Clone this wiki locally