Mercurial > repos > vipints > deseq_hts
diff deseq-hts_2.0/bin/genarglist.sh @ 10:2fe512c7bfdf draft
DESeq2 version 1.0.19 added to the repo
author | vipints <vipin@cbio.mskcc.org> |
---|---|
date | Tue, 08 Oct 2013 08:15:34 -0400 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/deseq-hts_2.0/bin/genarglist.sh Tue Oct 08 08:15:34 2013 -0400 @@ -0,0 +1,13 @@ +#/bin/bash +## +# Copyright (C) 2009-2013 Max Planck Society and Memorial Sloan Kettering Cancer Center +## +until [ -z $1 ] ; do + if [ $# != 1 ]; + then + echo -n "'$1', " + else + echo -n "'$1'" + fi + shift +done