-
Notifications
You must be signed in to change notification settings - Fork 1
Home
Jessica Mattick edited this page Apr 1, 2020
·
26 revisions
Welcome to the RNA_Editing_Detection_Pipeline wiki!
- 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
- 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 &
- 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/ &
- Create a txt file containing a list of SRA accession numbers.
- 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 &
- Create a txt file containing a list of ERR accession numbers.
- 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 &