Skip to content

Commit

Permalink
change version 1.1 to 1.1.1 and check permisson before adding symlink…
Browse files Browse the repository at this point in the history
… to edge_ui/JBrowse/data
  • Loading branch information
chienchi committed Jun 15, 2016
1 parent d824ec0 commit ac841db
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# EDGE Bioinformatics

This is version 1.1 of EDGE Bioinformatics, a product of Los Alamos National Laboratory, Naval Medical Research Center, and the Defense Threat Reduction Agency.
This is version 1.1.1 of EDGE Bioinformatics, a product of Los Alamos National Laboratory, Naval Medical Research Center, and the Defense Threat Reduction Agency.

EDGE is a highly adaptable bioinformatics platform that allows laboratories to quickly analyze and interpret genomic sequence data. The bioinformatics platform allows users to address a wide range of use cases including assay validation and the characterization of novel biological threats, clinical samples, and complex environmental samples.

Expand Down
4 changes: 2 additions & 2 deletions runPipeline
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ $ENV{HOME} ||= $RealBin;

# unbuffer
$|=1;
my $version="1.1";
my $version="1.1.1";
my $debug=0;
my @unpairedReadsFile;
my @pairedReadsFile;
Expand Down Expand Up @@ -2816,7 +2816,7 @@ sub writeJBrowseInfo
my $cmd="$RealBin/scripts/edge2jbrowse_converter.pl --in-ref-fa '$referenceGenome' --in-ctg-fa $contig_for_annotation_file --in-ctg-anno-gff3 '$annoationGFF' --in-ref-gff3 '$gff3File' --proj_outdir '$abs_outDir' 2>\&1 1>$log";
&lprint (" Running \n $cmd\n");
&executeCommand("$cmd");
&executeCommand("ln -sf $abs_outDir $RealBin/edge_ui/JBrowse/data/$project_name") if (! -e "$RealBin/edge_ui/JBrowse/data/$project_name");
&executeCommand("ln -sf $abs_outDir $RealBin/edge_ui/JBrowse/data/$project_name") if (! -e "$RealBin/edge_ui/JBrowse/data/$project_name" && -w "$RealBin/edge_ui/JBrowse/data");
&printRunTime($time);
system("touch $outputDir/writeJBrowseInfo.finished");
#return \%project;
Expand Down

0 comments on commit ac841db

Please sign in to comment.