Repository 'tassel5'
hg clone https://toolshed.g2.bx.psu.edu/repos/dereeper/tassel5

Changeset 16:d9c73778f0e2 (2024-01-22)
Previous changeset 15:88ea6f8f664e (2024-01-16) Next changeset 17:93bccb57e4f4 (2024-01-22)
Commit message:
Deleted selected files
removed:
tassel.sh
b
diff -r 88ea6f8f664e -r d9c73778f0e2 tassel.sh
--- a/tassel.sh Tue Jan 16 10:59:25 2024 +0000
+++ /dev/null Thu Jan 01 00:00:00 1970 +0000
[
@@ -1,46 +0,0 @@
-#!/bin/bash
-
-analyseType=$1;
-out1=$2;
-out2=$3;
-out3=$4;
-log1=$5;
-galaxyOutDir=$6;
-
-version=$(java -version 2>&1 | grep version)
-
-mkdir $galaxyOutDir
-
-# Suppression des 6 premiers arguments de la liste des arguments $@
-shift; shift; shift; shift; shift; shift;
-
-
-if [[ $analyseType == glm ]] 
-then
- run_pipeline.pl $* >> $log1 2>&1
- mv "$galaxyOutDir/TASSELGLM1.txt" $out1
- if [ $? -gt 0 ] ; then exit 1 ; fi ##check the run of commands
- mv "$galaxyOutDir/TASSELGLM2.txt" $out2
-fi
-
-if [[ $analyseType == mlm ]] 
-then
- run_pipeline.pl $* >> $log1 2>&1
- mv "$galaxyOutDir/TASSELMLM1.txt" $out1
- if [ $? -gt 0 ] ; then exit 1 ; fi ##check the run of commands
- mv "$galaxyOutDir/TASSELMLM2.txt" $out2
- mv "$galaxyOutDir/TASSELMLM3.txt" $out3
-fi
-
-if [[ $analyseType == ld ]] 
-then
- run_pipeline.pl $* >> $log1 2>&1
-fi
-
-
-if [[ $analyseType == ck ]]
-then
- run_pipeline.pl $* >> $log1 2>&1
- mv "$galaxyOutDir/kinship.txt" $out1
- if [ $? -gt 0 ] ; then exit 1 ; fi ##check the run of commands
-fi