-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathREADME_PIPELINE
More file actions
30 lines (20 loc) · 889 Bytes
/
README_PIPELINE
File metadata and controls
30 lines (20 loc) · 889 Bytes
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
-----------------------------
Required tools
-----------------------------
You need the following in your path
cutadapt
bowtie1
samtools
bedtools
Additionally Python 2.7 should also be present.
---------------------
Setting variables
---------------------
Add the prefix of your fastq files in the script pipeline.sh
If your files are SRR1273998.fastq, SRR1273999.fastq, SRR1274000.fastq then add the following in the list variable
list=(SRR1273998 SRR1273999 SRR1274000 )
Include the number of samples, in this case 3
num_sample=3
Set the adapater sequence in the cutadapt command according to your samples
Set the indexes of the genome and the piRNA sequences. The pirna sequence indexes for human are provided along with the retro transposon sequences. You need to generate the fasta file in order to do the transposon profiling.
Everything was tested in a Linux environment.