view deseq-hts_1.0/bin/genarglist.sh @ 0:94a108763d9e draft

deseq-hts version 1.0 wraps the DESeq 1.6.0
author vipints
date Wed, 09 May 2012 20:43:47 -0400
parents
children
line wrap: on
line source

#/bin/bash
# Copyright (C) 2010-2012 Max Planck Society

until [ -z $1 ] ; do
	if [ $# != 1 ];
	then
		echo -n "'$1', "
	else
		echo -n "'$1'"
	fi
	shift
done