view mutspecCompare_wrapper.sh @ 1:748b7a8b634c draft

Uploaded
author iarc
date Thu, 21 Apr 2016 09:36:32 -0400
parents 8c682b3a7c5b
children 46a10309dfe2
line wrap: on
line source

#!/bin/bash

newsign=$1
html=$2
ref=$3

output_dir=${html%%.*}_files

matrix=${newsign%.*}_files/NMF/Files/MatrixW-Normto100.txt

mkdir $output_dir

Rscript --no-save $SCRIPT_PATH/R/compareSignature_Galaxy.r $ref $matrix $output_dir 2>&1

# Convert the image into png format
cd $output_dir

echo "<html><body>" >> $html
echo "<center> <h2> Cosine similarity comparison </h2> </center>" >> $html

echo "<table>" >> $html
echo "<tr> <td> <center> <br/> <a href="Similarity_Matrix.txt">Similarity_Matrix.txt</a> </center> </td> </tr>" >> $html
echo "<tr>" >> $html
echo "<td><a href="Similarity_Matrix.png">" >> $html
echo "<img width="1000" src="Similarity_Matrix.png" /></a></td>" >> $html
echo "</tr>" >> $html
echo "</table>" >> $html

exit 0