Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Primjer 

Code Block
languagebash
themeMidnight
titleclosest-features
#!/bin/bash

#PBS -N bedops-test
#PBS -q cpu

cd $PBS_O_WORKDIR

module load scientific/bedops/2.4.41

closest-features --dist --closest --no-ref SNPs.bed DHSs.bed | cut -f2 -d '|' | grep -w -F -v -e "NA" > answer.bed

...