我正在使用一个 unix shell 脚本来构建基因组,然后创建系统发育。根据您使用的基因组组装器,最终输出(系统发育)可能会发生变化。我想比较使用各种基因组组装器的效果。我已经开发了一些指标来比较它们,但我需要帮助来组织它们,这样我才能运行有用的分析。我想将我的数据导入到列中的 excel 中。
这是我用来输出数据的脚本:
echo "Enter the size (Mb or Gb) of your data set:"
read SIZEOFDATASET
echo "The size of your data set is $SIZEOFDATASET"
echo "Size of Data Set:" >> metrics_file.txt
echo $SIZEOFDATASET >> metrics_file.txt
echo "Enter the name of your assembler"
read NAMEOFASSEMBLER
echo "You are using $NAMEOFASSEMBLER as your assembler"
echo "Name of Assembler:" >> metrics_file.txt
echo "$NAMEOFASSEMBLER" >> metrics_file.txt
echo "Time:" >> metrics_file.txt
目前的输出是这样的:
Size of Data Set:
387 Mb
Name of Assembler:
Velvet
Genome Size:
1745690
Time:
我希望它看起来像这样:
提前致谢!