Skip to content

Commit

Permalink
Changes counts_merge to use sequenceFilter in invert mode
Browse files Browse the repository at this point in the history
  • Loading branch information
netbofia committed Oct 14, 2018
1 parent 3904d11 commit 8d379f2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions counts_merge.sh
Original file line number Diff line number Diff line change
Expand Up @@ -91,11 +91,11 @@ awk '{print $1}' $novelTasi > $novelTasiSeq

###Save novel only - No tasi
head -1 $cons > $novel
grep -vwf $tasiTmpSeq $novelTmp | cat >> $novel
${SCRIPTS_DIR}/sequenceFilter.py -v -s $tasiTmpSeq -d $novelTmp | cat >> $novel
awk '{if(NR>1){print $1}}' $novel > $novelSeq

###Save tasi only - Remove novel and conserved reads
grep -vwf $novelTasiSeq $tasiTmp | grep -vwf $consSeq | cat > $tasi
${SCRIPTS_DIR}/sequenceFilter.py -v -s $novelTasiSeq -d $tasiTmp | grep -vwf $consSeq | cat > $tasi
awk '{if(NR>1){print $1}}' $tasi > $tasiSeq


Expand Down

0 comments on commit 8d379f2

Please sign in to comment.