view rDiff/bin/genarglist.sh @ 2:233c30f91d66

updated python based GFF parsing module which will handle GTF/GFF/GFF3 file types
author vipints <vipin@cbio.mskcc.org>
date Tue, 08 Oct 2013 07:15:44 -0400
parents 0f80a5141704
children
line wrap: on
line source

#/bin/bash

list=
until [ -z $1 ] ; do
	if [ $# != 1 ];
	then
		list="${list}$1:"
	else
		list="${list}$1"
	fi
	shift
done
echo $list