生信分析常用代码总结
作者:互联网
循环
while
循环处理文件夹下系列文本,并更改名字。
find <dir_name> -maxdepth 1 -name '*.bed' -user "$USER" | while IFS='' read -r id
do
sortBed -i "${id}" > "$(basename -s .bed "$id")_sort.bed"
echo "$(basename -s .bed "$id")_sort.bed"
done
标签:总结,sort,basename,bed,id,while,循环,代码,生信 来源: https://www.cnblogs.com/hanbushi/p/16428456.html