Mercurial > repos > yufei-luo > differential_expression_analysis_pipeline_for_rnaseq_data
diff DiffExpAnal/loadMultiFastqFiles.sh @ 0:63799b789162 draft
Uploaded
author | yufei-luo |
---|---|
date | Tue, 22 Jan 2013 10:07:03 -0500 |
parents | |
children |
line wrap: on
line diff
--- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/DiffExpAnal/loadMultiFastqFiles.sh Tue Jan 22 10:07:03 2013 -0500 @@ -0,0 +1,24 @@ +#!/bin/bash + +OUTFile=${1} +shift +groupCount=1 +replicateNumber=1 + +arrayZ=( $@ ) +#remove the last symble '@' given by commande line +unset arrayZ[${#arrayZ[@]}-1] + +for FILE in ${arrayZ[@]} +do + #if a new group of fastq, re-count the replicateNumber + if echo $FILE | grep -q "@" + then + groupCount=$(($groupCount + 1)) + replicateNumber=1 + else + echo -e "Group${groupCount}_${replicateNumber}\t${FILE}" >>${OUTFile} + replicateNumber=$(($replicateNumber + 1)) + fi +done +