-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathexample_running_run_identifyTranscriptome.sh
More file actions
executable file
·72 lines (51 loc) · 2.36 KB
/
example_running_run_identifyTranscriptome.sh
File metadata and controls
executable file
·72 lines (51 loc) · 2.36 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
#!/bin/sh
## Example shell script to use Event Analysis to identify likely transcripts
# Variables to set
## Path to Event Analysis install
EVENTDIR=/path/to/event_analysis
## Project name (avoid using spaces)
PROJNAME=my_example
## Path to directory of your Event Analysis annotations files
ANNOTDIR=/path/to/my_analysis/annotations
## Annotation prefix you used to build your annotation files
ANNOTPREFIX=mm10
## Path to tab-delimited design file to relate samples to condition
DESIGN=/path/to/my_analysis/design_file.tsv
## Variable (as spelled in your design file) with which to group samples
GROUPVAR=cell_type
## Path to directory of exon fragment coverage counts
FRAGCOUNTS=/path/to/my_analysis/fragment_counts
## Path to directory of exonic region coverage counts
FUSCOUNTS=/path/to/my_analysis/region_counts
## Path to directory of intron coverage counts
INTCOUNTS=/path/to/my_analysis/intron_counts
## Path to directory of junction coverage counts
JUNCCOUNTS=/path/to/my_analysis/junction_counts
## Minimum APN (or other abundance measurement) for an event to be considered detected
MINAPN=0
## Minimum proportion of samples per group were event is detected for event to be
## considered detected per group (range: 0 - 1, e.g. 0.5)
MINDTCT=
## Minimum length (in nucleotides) of an event for the event to be informative
EVENTLEN=10
## Read of RNAseq reads in nucleotides
READSIZE=56
## Minimum APN (or other abundance measurement) for a border junction to be considered
## supportive of a novel donor site
MINDONOR=5
## Minimum APN (or other abundance measurement) for a border junction to be considered
## supportive of a novel acceptor site
MINACCEPTOR=5
## Minimum APN (or other abundance measurement) for an intron to be considered
## supported/likely retained
MININTRON=5
## Output directory. If it does not exist, the annotation build script with create it
OUTDIR=/path/to/my_analysis/output
# Run Event Analysis to identify likely transcripts
cd ${EVENTDIR}
sh ./run_identifyTranscriptome.sh ${PROJNAME} ${ANNOTDIR} ${ANNOTPREFIX} \
${DESIGN} ${GROUPVAR} ${FRAGCOUNTS} \
${FUSCOUNTS} ${INTCOUNTS} ${JUNCCOUNTS} \
${MINAPN} ${MINDTCT} ${EVENTLEN} ${READSIZE} \
${MINDONOR} ${MINACCEPTOR} ${MININTRON} \
${OUTDIR}