File: cleanme.pl

package info (click to toggle)
trinityrnaseq 2.11.0%2Bdfsg-6
  • links: PTS, VCS
  • area: main
  • in suites: bullseye
  • size: 417,528 kB
  • sloc: perl: 48,420; cpp: 17,749; java: 12,695; python: 3,124; sh: 1,030; ansic: 983; makefile: 688; xml: 62
file content (59 lines) | stat: -rwxr-xr-x 1,281 bytes parent folder | download | duplicates (2)
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
#!/usr/bin/env perl

use strict;
use warnings;

use FindBin;


## we delete all files we don't need in this directory. Be careful in case users try running it somewhere else, outside this dir.
chdir $FindBin::RealBin or die "error, cannot cd to $FindBin::RealBin";



my @files_to_keep = qw (
SP2.chr.bam
SP2.chr.fa.gz
cleanme.pl
mm9chr17.annotation.bed.gz
mm9chr17.fasta.gz
mm9chr17.tophat.bam
SP2.annot.bed.gz
SP2.chr.SE.sam.gz
run_Schizo_TrinityGG.sh
run_Schizo_TrinityGG_jaccard_clip.sh
run_mouse_TrinityGG.sh
Makefile

top100k.Left.fq.gz
top100k.Right.fq.gz
top100k.genome.gz
run_genome-guided_Trinity.sh
run_genome-guided_Trinity_use_existing_bam.sh
run_Schizo_TrinityGG.SE.sh

__run_genome-guided_Trinity_use_existing_bam.use_LSF.sh
__run_genome-guided_Trinity_use_existing_bam.use_SGE.sh
__run_genome-guided_Trinity_use_existing_bam.use_PBS.sh
run_small_GG_mutliScaff_test.sh
transAligns.cSorted.bam                        );


my %keep = map { + $_ => 1 } @files_to_keep;


foreach my $file (<*>) {
	
	if (! $keep{$file}) {
		print STDERR "-removing file: $file\n";
		unlink($file);
	}
}

`rm -rf Dir*`;
`rm -rf ./test_GG_use_bam_trinity_outdir/`;
`rm -rf ./test_Schizo_trinityGG_jaccard_RF_outdir/`;
`rm -rf ./test_GG_use_small_multiscaff_bam_trinity_outdir`;


exit(0);