Description Usage Arguments Details Value Author(s) Examples
View source: R/10_2_star_command.R
make command for STAR aligner
1 2 | star.command.make(path_to_STAR, sequence_fasta, genomeDir, organism, outfile,
runThreadN = 6)
|
path_to_STAR |
path to STAR aligner |
sequence_fasta |
path to FASTA file with probe sequences (most likely, you will have to run alignment on a cluster, and copy the file from you local machine to the cluster) |
genomeDir |
path to reference genome annotation, build for STAR |
organism |
character, "Human", "Mouse" or "Dmel". Note! STAR parameters differ for Drosophila! |
outfile |
outFileNamePrefix, add a dot in the end. |
runThreadN |
outBAMsortingThreadN in STAR, 6 by default |
Provides a set of STAR parameters to make alignment for the probes, and returns a bash command as a character string. Needed mostly because alignments are run on clusters, but not local machines.
returns a character, STAR command
Vladislava Milchevskaya milchv@gmail.com
1 2 3 4 5 6 | path_to_STAR = "/path/to/STAR"
sequence_fasta = "/path/to/sequence.fasta"
genomeDir = "/path/to/reference/genome/"
organism = "Human"
outfile = "output_file."
star.command.make(path_to_STAR, sequence_fasta, genomeDir, organism, outfile)
|
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.