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
|
#!/usr/bin/env perl
use strict;
use warnings;
use lib ("$ENV{TRINITY_HOME}/PerlLib/");
use Fasta_reader;
use Cwd;
use Data::Dumper;
use Carp;
use Getopt::Long qw(:config no_ignore_case bundling pass_through);
use List::Util qw (shuffle);
my $help_flag;
my $usage = <<__EOUSAGE__;
################################################################################
$0
################################################################################
#
# * Required:
#
# --ref_trans|R <string> reference transcriptome
#
# --out_dir|O <string> output directory name
#
# --read_length <int> default: 76
#
# --frag_length <int> default: 300
#
# --depth_of_cov <int> default: 100
#
#
####
#
# following wgsim options are pass-through:
#
# Options:
# -e FLOAT base error rate [0.020]
# -s INT standard deviation [50]
# -r FLOAT rate of mutations [0.0010]
# -R FLOAT fraction of indels [0.15]
# -X FLOAT probability an indel is extended [0.30]
# -S INT seed for random generator [-1]
# -A FLOAT disgard if the fraction of ambiguous bases higher than FLOAT [0.05]
# -h haplotype mode
# -Z INT strand specific mode: 1=FR, 2=RF
# -D debug mode... highly verbose
#
#
############################################################################################
__EOUSAGE__
;
my $OUT_DIR;
my $ref_trans_fa;
my $read_length = 76;
my $frag_length = 300;
my $depth_of_cov = 100;
&GetOptions ( 'help' => \$help_flag,
# required
'ref_trans|R=s' => \$ref_trans_fa,
# optional
'out_dir|O=s' => \$OUT_DIR,
'read_length=i' => \$read_length,
'frag_length=i' => \$frag_length,
'depth_of_cov=i' => \$depth_of_cov,
);
if ($help_flag) {
die $usage;
}
unless ($ref_trans_fa && $OUT_DIR) {
die $usage;
}
unless ($ENV{TRINITY_HOME}) {
$ENV{TRINITY_HOME} = "/usr/lib/trinityrnaseq";
}
main: {
my $BASEDIR = cwd();
unless ($ref_trans_fa =~ /^\//) {
$ref_trans_fa = "$BASEDIR/$ref_trans_fa";
}
unless (-d $OUT_DIR) {
&process_cmd("mkdir -p $OUT_DIR");
}
chdir $OUT_DIR or die "Error, cannot cd to $OUT_DIR";
my $cmd = "";
# simulate reads:
$cmd = "$ENV{TRINITY_HOME}/util/misc/simulate_illuminaPE_from_transcripts.wgsim.pl --transcripts $ref_trans_fa "
. " --read_length $read_length "
. " --frag_length $frag_length "
. " --depth_of_cov 200 "
. " @ARGV "; # wgsim opts pass-through
;
## todo: add mutation rate info
&process_cmd($cmd);
}
####
sub process_cmd {
my ($cmd) = @_;
print STDERR "CMD: $cmd\n";
my $ret = system($cmd);
if ($ret) {
die "Error, cmd: $cmd died with ret $ret";
}
return;
}
|