View source: R/functions_RNAseq_salmon.R
salmon_index_transcriptome | R Documentation |
creates the salmon index for transcriptome created from specified assembly fasta and gene reference gtf.
salmon_index_transcriptome( seq_path = HG38_SEQ_PATH, gtf_path = HG38_v28_GTF_URL, gtf_to_fasta_path = GTF_TO_FASTA_PATH, salmon_path = SALMON_PATH, output_transcriptome = NULL, output_index = NULL, cache_path = "~/.cache", use_qsub = TRUE, do_submit = TRUE )
seq_path |
path to local file or url to assembly fasta (only tested with hg38). |
gtf_path |
path to local file or url to gtf reference (only tested with gencode hg38 v28 gtf). |
gtf_to_fasta_path |
local path to tophat2 gtf_to_fasta utility. |
salmon_path |
path to main salmon executable. |
output_transcriptome |
file path for transcriptome output. |
output_index |
file path for index for transcriptome. |
cache_path |
path to cache directory, will be created if necessary. |
use_qsub |
whether to qsub a script. if FALSE will use a direct system command |
do_submit |
if FALSE, will not perform qsub. |
list containing path to index and job_id if relevant
# as this may download several gigs of data, do not run ## Not run: salmon_index_transcriptome() ## End(Not run)
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.