Skip to content

Commit

Permalink
Merge pull request #24 from matthdsm/master
Browse files Browse the repository at this point in the history
fixed script shebangs for multi env use
  • Loading branch information
valeu authored Jun 7, 2017
2 parents c376126 + 0256f76 commit 76030ff
Show file tree
Hide file tree
Showing 6 changed files with 9 additions and 3 deletions.
2 changes: 2 additions & 0 deletions scripts/assess_significance.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env Rscript

library(rtracklayer)

args <- commandArgs()
Expand Down
2 changes: 1 addition & 1 deletion scripts/freec2bed.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl -w
#translate *_ratio.txt (the out put of FREEC) into a BED track

use strict;
Expand Down
2 changes: 1 addition & 1 deletion scripts/freec2circos.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl -w
#translate "*_ratio.txt" (output of FREEC) into a Circos track

use strict;
Expand Down
2 changes: 1 addition & 1 deletion scripts/get_fasta_lengths.pl
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#!/usr/bin/perl -w
#!/usr/bin/env perl -w
#prints lengths of sequences from a multifasta file

use strict;
Expand Down
2 changes: 2 additions & 0 deletions scripts/makeGraph.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env Rscript

args <- commandArgs()

dataTable <-read.table(args[5], header=TRUE);
Expand Down
2 changes: 2 additions & 0 deletions scripts/makeGraph_Chromosome.R
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
#!/usr/bin/env Rscript

args <- commandArgs()

dataTable <-read.table(args[6], header=TRUE);
Expand Down

0 comments on commit 76030ff

Please sign in to comment.