Skip to content

Commit

Permalink
Update reduced_genome.sh
Browse files Browse the repository at this point in the history
line 31 - comment: added unique
  • Loading branch information
rr1859 committed Aug 16, 2019
1 parent c46c446 commit 1015b46
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion reduced_genome.sh
Expand Up @@ -28,7 +28,7 @@ cat up.txt down.txt > ${genome}_${enzyme}_flanking_sites_${fl}_2.bed
awk '{if($2 >= 0 && $3 >=0) print $0}' ${genome}_${enzyme}_flanking_sites_${fl}_2.bed | grep -v -E 'random|JH|GL' - | sort -k1,1 -k2,2n | uniq > ${genome}_${enzyme}_flanking_sites_${fl}_unique_2.bed
#get the sequence of unique flanking coordinates
fastaFromBed -fi ${genome}.fa -bed ${genome}_${enzyme}_flanking_sites_${fl}_unique_2.bed -fo ${genome}_${enzyme}_flanking_sequences_${fl}_unique_2.fa
#get only sequences from FASTA file
#get only unique sequences from FASTA file
grep -v '^>' ${genome}_${enzyme}_flanking_sequences_${fl}_unique_2.fa | sort | uniq -i -u | grep -xF -f - -B 1 ${genome}_${enzyme}_flanking_sequences_${fl}_unique_2.fa | grep -v '^--' > ${genome}_${enzyme}_flanking_sequences_${fl}_unique.fa

#remove unwanted intermediate files
Expand Down

0 comments on commit 1015b46

Please sign in to comment.