remove extra file

This commit is contained in:
Haoyu Cheng
2019-12-26 02:27:43 -05:00
parent 4ac9907e49
commit 907458fad2
-10
View File
@@ -1,10 +0,0 @@
#!/bin/bash
# My first script
if [ $# -eq 1 ]
then
echo "input file is: "$1
echo $1" | paste - - | sort -k1,1 -t \" \" | tr \"\t\" \"\n\" > sort_"$1
cat $1 | paste - - | sort -k1,1 -t " " | tr "\t" "\n" > sort_$1
else
echo "./sort_fasta.sh file_name"
fi