This repository has been archived by the owner on Jan 28, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathm6A-SAC-seq_4.pl
413 lines (324 loc) · 20.6 KB
/
m6A-SAC-seq_4.pl
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
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
#!/usr/bin/env perl
use strict;
use warnings;
use v5.12;
## Perl5 version >= 5.12
###################################################################################################################################################################################################
###################################################################################################################################################################################################
my $input_g = ''; ## such as "3-removedDups"
my $output_g = ''; ## such as "4-SE-RC"
{
## Help Infromation
my $HELP = '
------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------
Step 4: Reverse-complement of R1 or R2 of paired-end reads by using reformat.sh of BBMap.
And directly assess the quality of raw reads to identify possible experimental and sequencing errors or biases
by using 4 softwares: FastQC, fastp, FastQ_Screen, and MultiQC.
If this script works well, you do not need to check the the versions of the softwares or packages whcih are used in this script.
And you do not need to exactly match the versions of the softwares or packages.
If some errors or warnings are reported, please check the versions of softwares or packages.
The versions of softwares and packages are used in this script (This is shown for reference only. And do not need to match them.):
Perl, 5.26.1 (perl -v)
FastQC, v0.11.9 (fastqc -v)
fastp, 0.20.0 (fastp -v)
FastQ_Screen, 0.14.0 (fastq_screen -v)
BBMap, 38.76 (clumpify.sh --version)
MultiQC, 1.8 (multiqc --version)
Usage:
perl m6A-SAC-seq_4.pl [-version] [-help] [-in inputDir] [-out outDir]
For instance:
perl m6A-SAC-seq_4.pl -in 3-removedDups -out 4-SE-RC > m6A-SAC-seq_4.runLog.txt 2>&1
----------------------------------------------------------------------------------------------------------
Optional arguments:
-version Show version number of this program and exit.
-help Show this help message and exit.
Required arguments:
-in inputDir "inputDir" is the name of input path that contains your FASTQ files. (no default)
-out outDir "outDir" is the name of output path that contains your running results (fastq files) of this step. (no default)
-----------------------------------------------------------------------------------------------------------
For more details about this pipeline and other NGS data analysis piplines, please visit https://github.com/CTLife/2ndGS_Pipelines
------------------------------------------------------------------------------------------------------------------------------------------------------
------------------------------------------------------------------------------------------------------------------------------------------------------
';
## Version Infromation
my $version = " The 4th Step, version 1.4, 2022-08-05.";
## Keys and Values
if ($#ARGV == -1) { say "\n$HELP\n"; exit 0; } ## when there are no any command argumants.
if ($#ARGV%2 == 0) { @ARGV = (@ARGV, "-help") ; } ## when the number of command argumants is odd.
my %args = @ARGV;
## Initialize Variables
$input_g = '3-removedDups'; ## This is only an initialization value or suggesting value, not default value.
$output_g = '4-SE-RC'; ## This is only an initialization value or suggesting value, not default value.
## Available Arguments
my $available = " -version -help -in -out ";
my $boole = 0;
while( my ($key, $value) = each %args ) {
if ( ($key =~ m/^\-/) and ($available !~ m/\s$key\s/) ) {say "\n\tCann't recognize $key"; $boole = 1; }
}
if($boole == 1) {
say "\tThe Command Line Arguments are wrong!";
say "\tPlease see help message by using 'perl m6A-SAC-seq_4.pl -help' \n";
exit 0;
}
## Get Arguments
if ( exists $args{'-version' } ) { say "\n$version\n"; exit 0; }
if ( exists $args{'-help' } ) { say "\n$HELP\n"; exit 0; }
if ( exists $args{'-in' } ) { $input_g = $args{'-in' }; }else{say "\n -in is required.\n"; say "\n$HELP\n"; exit 0; }
if ( exists $args{'-out' } ) { $output_g = $args{'-out' }; }else{say "\n -out is required.\n"; say "\n$HELP\n"; exit 0; }
## Conditions
$input_g =~ m/^\S+$/ || die "\n\n$HELP\n\n";
$output_g =~ m/^\S+$/ || die "\n\n$HELP\n\n";
## Print Command Arguments to Standard Output
say "\n
################ Arguments ###############################
Input Path: $input_g
Output Path: $output_g
###############################################################
\n";
}
###################################################################################################################################################################################################
###################################################################################################################################################################################################
say "\n\n\n\n\n\n##################################################################################################";
say "Running ......";
sub myMakeDir {
my $path = $_[0];
if ( !( -e $path) ) { system("mkdir -p $path"); }
if ( !( -e $path) ) { mkdir $path || die; }
}
my $output2_g = "$output_g/QC_Results";
&myMakeDir("$output_g");
&myMakeDir("$output2_g");
opendir(my $DH_input_g, $input_g) || die;
my @inputFiles_g = readdir($DH_input_g);
my $numCores_g = 8;
###################################################################################################################################################################################################
###################################################################################################################################################################################################
## These commands must be available:
say "\n\n\n\n\n\n##################################################################################################";
say "Checking all the necessary softwares in this step ......";
sub printVersion {
my $software = $_[0];
system("echo '##############################################################################' >> $output2_g/VersionsOfSoftwares.txt 2>&1");
system("echo '#########$software : ' >> $output2_g/VersionsOfSoftwares.txt 2>&1");
system("$software >> $output2_g/VersionsOfSoftwares.txt 2>&1");
system("echo '\n\n\n\n\n\n' >> $output2_g/VersionsOfSoftwares.txt 2>&1");
}
sub fullPathApp {
my $software = $_[0];
say($software);
system("which $software > yp_my_temp_1.$software.txt");
open(tempFH, "<", "yp_my_temp_1.$software.txt") or die;
my @fullPath1 = <tempFH>;
($#fullPath1 == 0) or die;
system("rm yp_my_temp_1.$software.txt");
$fullPath1[0] =~ s/\n$// or die;
return($fullPath1[0]);
}
&printVersion(" clumpify.sh --version");
&printVersion(" fastqc --version ");
&printVersion(" fastp --version ");
&printVersion(" fastq_screen --version ");
&printVersion(" multiqc --version ");
###################################################################################################################################################################################################
###################################################################################################################################################################################################
say "\n\n\n\n\n\n##################################################################################################";
say "Detecting single-end and paired-end FASTQ files ......";
my @singleEnd_g = ();
my @pairedEnd_g = ();
open(seqFiles_FH_g, ">", "$output2_g/singleEnd-pairedEnd-Files.txt") or die;
for ( my $i=0; $i<=$#inputFiles_g; $i++ ) {
next unless $inputFiles_g[$i] !~ m/^[.]/;
next unless $inputFiles_g[$i] !~ m/[~]$/;
next unless $inputFiles_g[$i] !~ m/\.sh$/;
next unless $inputFiles_g[$i] !~ m/^unpaired/;
next unless $inputFiles_g[$i] !~ m/^QC_Results$/;
next unless $inputFiles_g[$i] !~ m/runLog\.txt$/;
next unless $inputFiles_g[$i] =~ m/\.fastq/;
my $temp = $inputFiles_g[$i];
say "\t......$temp";
if ($temp !~ m/^(\S+)\.R[12]\.fastq/) { ## sinlge end sequencing files.
$temp =~ m/^(\S+)\.fastq/ or die;
$singleEnd_g[$#singleEnd_g+1] = $temp;
say "\t\t\t\tSingle-end sequencing files: $temp\n";
say seqFiles_FH_g "Single-end sequencing files: $temp\n";
}else{ ## paired end sequencing files.
$temp =~ m/^(\S+)\.R[12]\.fastq/ or die;
$pairedEnd_g[$#pairedEnd_g+1] = $temp;
say "\t\t\t\tPaired-end sequencing files: $temp\n";
say seqFiles_FH_g "Paired-end sequencing files: $temp\n";
}
}
@singleEnd_g = sort(@singleEnd_g);
@pairedEnd_g = sort(@pairedEnd_g);
( ($#pairedEnd_g+1)%2 == 0 ) or die;
say seqFiles_FH_g "\n\n\n\n\n";
say seqFiles_FH_g "All single-end sequencing files:@singleEnd_g\n\n\n";
say seqFiles_FH_g "All paired-end sequencing files:@pairedEnd_g\n\n\n";
say "\t\t\t\tAll single-end sequencing files:@singleEnd_g\n\n";
say "\t\t\t\tAll paired-end sequencing files:@pairedEnd_g\n\n";
my $numSingle_g = $#singleEnd_g + 1;
my $numPaired_g = $#pairedEnd_g + 1;
say seqFiles_FH_g "\nThere are $numSingle_g single-end sequencing files.\n";
say seqFiles_FH_g "\nThere are $numPaired_g paired-end sequencing files.\n";
say "\t\t\t\tThere are $numSingle_g single-end sequencing files.\n";
say "\t\t\t\tThere are $numPaired_g paired-end sequencing files.\n";
for ( my $i=0; $i<$#pairedEnd_g; $i=$i+2 ) {
my $temp = $pairedEnd_g[$i];
$temp =~ s/\.R1\.fastq/.R2.fastq/ or die "\n##Error-1: $temp ##\n\n";
($pairedEnd_g[$i+1] eq $temp) or die "\n##Error-2: $temp ## $pairedEnd_g[$i+1] ##\n\n";
}
print("\n\n\n\n\n#########################################\n");
###################################################################################################################################################################################################
###################################################################################################################################################################################################
{
say "\n\n\n\n\n\n##################################################################################################";
say "Remove PCR and optical duplicates by using clumpify.sh of BBMap ......";
for (my $i=0; $i<=$#pairedEnd_g; $i=$i+2) {
$pairedEnd_g[$i] =~ m/\.R1.fastq/ or die;
my $temp = $pairedEnd_g[$i];
my $end1 = $temp;
my $end2 = $temp;
$end2 =~ s/\.R1\.fastq/.R2.fastq/ or die "\n##Error-3: $temp ##\n\n";
say "\t......$end1";
say "\t......$end2";
($end2 eq $pairedEnd_g[$i+1]) or die;
open(tempFH, ">>", "$output2_g/paired-end-files.txt") or die;
say tempFH "$end1, $end2\n";
$temp =~ s/\.fastq\.\S+$// ;
$temp =~ s/\.fastq$// ;
$temp =~ s/\.R1$// or die;
system( "reformat.sh in=$input_g/$end1 out=$output_g/$end1 rcomp=t > $output_g/$end1.runLog.txt 2>&1 ");
system( "sleep 2s" );
system( "zcat $output_g/$end1 $input_g/$end2 > $output_g/$temp.fastq ");
system( "sleep 2s" );
system( "rm -rf $output_g/$end1 ");
}
#for (my $i=0; $i<=$#pairedEnd_g; $i=$i+2) {
# $pairedEnd_g[$i] =~ m/\.R1.fastq/ or die;
# my $temp = $pairedEnd_g[$i];
# my $end1 = $temp;
# my $end2 = $temp;
# $end2 =~ s/\.R1\.fastq/.R2.fastq/ or die "\n##Error-3: $temp ##\n\n";
# say "\t......$end1";
# say "\t......$end2";
# ($end2 eq $pairedEnd_g[$i+1]) or die;
# open(tempFH, ">>", "$output2_g/paired-end-files.txt") or die;
# say tempFH "$end1, $end2\n";
# $temp =~ s/\.fastq\.\S+$// ;
# $temp =~ s/\.fastq$// ;
# $temp =~ s/\.R1$// or die;
# system( "reformat.sh in=$input_g/$end2 out=$output_g/$end2 rcomp=t > $output_g/$end2.runLog.txt 2>&1 ");
# system( "sleep 2s" );
# system( "zcat $output_g/$end2 $input_g/$end1 > $output_g/$temp.fastq ");
# system( "sleep 2s" );
# system( "rm -rf $output_g/$end2 ");
#}
for (my $i=0; $i<=$#singleEnd_g; $i++) {
say "\t......$singleEnd_g[$i]" ;
my $temp = $singleEnd_g[$i];
say "\t......$temp";
$temp =~ s/\.fastq\.\S+$// ;
$temp =~ s/\.fastq$// ;
system( "reformat.sh in=$input_g/$singleEnd_g[$i] out=$output_g/$temp.fastq rcomp=t > $output_g/$temp.runLog.txt 2>&1 ");
system( "sleep 2s" );
}
}
###################################################################################################################################################################################################
###################################################################################################################################################################################################
sub myQC_FASTQ_1 {
my $dir1 = $_[0]; ## All the fastq files must be in this folder.
my $QCresults = "$dir1/QC_Results";
my $FastQC = "$QCresults/1_FastQC";
my $fastp = "$QCresults/2_fastp";
my $MultiQC1 = "$QCresults/MultiQC/1_FastQC";
my $MultiQC2 = "$QCresults/MultiQC/2_fastp";
&myMakeDir($QCresults);
&myMakeDir($FastQC);
&myMakeDir($fastp);
&myMakeDir($MultiQC1);
&myMakeDir($MultiQC2);
opendir(my $FH_Files, $dir1) || die;
my @Files = readdir($FH_Files);
say "\n\n\n\n\n\n##################################################################################################";
say "Detecting the quality of all FASTQ files by using FastQC, fastp and MultiQC ......";
for ( my $i=0; $i<=$#Files; $i++ ) {
next unless $Files[$i] =~ m/\.fastq/;
next unless $Files[$i] !~ m/^[.]/;
next unless $Files[$i] !~ m/[~]$/;
next unless $Files[$i] !~ m/\.sh$/;
next unless $Files[$i] !~ m/^unpaired/;
next unless $Files[$i] !~ m/^QC_Results$/;
next unless $Files[$i] !~ m/runLog\.txt$/;
my $temp = $Files[$i];
say "\t......$temp";
$temp =~ s/\.fastq\.\S+$// ;
$temp =~ s/\.fastq$// ;
system( "fastqc --outdir $FastQC --threads $numCores_g --format fastq --kmers 8 $dir1/$Files[$i] >> $FastQC/$temp.runLog.txt 2>&1" );
system( "fastp --in1 $dir1/$Files[$i] -p --report_title $temp --thread $numCores_g --json $fastp/$temp.fastp.json --html $fastp/$temp.fastp.html --report_title $temp --reads_to_process 100000 >> $fastp/$temp.runLog.txt 2>&1" );
}
system( "multiqc --title FastQC --filename FastQC --module fastqc --verbose --export --outdir $MultiQC1 $FastQC >> $MultiQC1/MultiQC.FastQC.runLog.txt 2>&1" );
system( "multiqc --title fastp --filename fastp --module fastp --verbose --export --outdir $MultiQC2 $fastp >> $MultiQC2/MultiQC.fastp.runLog.txt 2>&1" );
}
###################################################################################################################################################################################################
###################################################################################################################################################################################################
sub myQC_FASTQ_2 {
my $dir1 = $_[0]; ## All the fastq files must be in this folder.
my $QCresults = "$dir1/QC_Results";
my $FastQ_Screen = "$QCresults/3_FastQ-Screen";
my $MultiQC = "$QCresults/MultiQC/3_FastQ-Screen";
&myMakeDir($QCresults);
&myMakeDir($FastQ_Screen);
&myMakeDir($MultiQC);
opendir(my $FH_Files, $dir1) || die;
my @Files = readdir($FH_Files);
say "\n\n\n\n\n\n##################################################################################################";
say "Detecting the quality of all FASTQ files by using FastQ_Screen and MultiQC ......";
for ( my $i=0; $i<=$#Files; $i++ ) {
next unless $Files[$i] =~ m/\.fastq/;
next unless $Files[$i] !~ m/^[.]/;
next unless $Files[$i] !~ m/[~]$/;
next unless $Files[$i] !~ m/\.sh$/;
next unless $Files[$i] !~ m/^unpaired/;
next unless $Files[$i] !~ m/^QC_Results$/;
next unless $Files[$i] !~ m/runLog\.txt$/;
my $temp = $Files[$i];
say "\t......$temp";
$temp =~ s/\.fastq\.\S+$// ;
$temp =~ s/\.fastq$// ;
system( "fastq_screen --aligner bowtie2 --outdir $FastQ_Screen/$temp --threads $numCores_g --subset 100000 $dir1/$Files[$i] >> $FastQ_Screen/$temp.runLog.txt 2>&1" );
}
system( "multiqc --title FastQ_Screen --filename FastQ_Screen --module fastq_screen --verbose --export --outdir $MultiQC $FastQ_Screen >> $MultiQC/MultiQC.FastQ-Screen.runLog.txt 2>&1" );
}
###################################################################################################################################################################################################
###################################################################################################################################################################################################
&myQC_FASTQ_1($output_g);
&myQC_FASTQ_2($output_g);
###################################################################################################################################################################################################
###################################################################################################################################################################################################
{
say "\n\n\n\n\n\n##################################################################################################";
say "Detecting the quality of paired-end FASTQ files by using fastp and FastQ_Screen with PE mode ......";
my $fastp = "$output2_g/4_fastp_PairedEnd";
my $MultiQC1 = "$output2_g/MultiQC/4_fastp_PairedEnd";
&myMakeDir($fastp);
&myMakeDir($MultiQC1);
for ( my $j=0; $j<=$#pairedEnd_g; $j=$j+2 ) {
my $temp1 = $pairedEnd_g[$j];
my $temp2 = $pairedEnd_g[$j+1];
my $temp = $temp2;
say "\t......$temp1";
say "\t......$temp2";
$temp1 =~ m/\.R1\.fastq/ or die;
$temp2 =~ m/\.R2\.fastq/ or die;
$temp =~ s/\.R2\.fastq\.\S+$// ;
$temp =~ s/\.R2\.fastq$// ;
system( "fastp --in1 $output_g/$temp1 --in2 $output_g/$temp2 -p --report_title $temp --thread $numCores_g --json $fastp/$temp.fastp.json --html $fastp/$temp.fastp.html >> $fastp/$temp.runLog 2>&1" );
}
system( "multiqc --title fastp --filename fastp --module fastp --verbose --export --outdir $MultiQC1 $fastp >> $MultiQC1/MultiQC.fastp.runLog.txt 2>&1" );
}
###################################################################################################################################################################################################
###################################################################################################################################################################################################
say "\n\n\n\n\n\n##################################################################################################";
say "\tJob Done! Cheers! \n\n\n\n\n";
## END