Site Tools


anthill_sri003

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
anthill_sri003 [2019/05/27 07:35] tmatejukanthill_sri003 [2023/08/01 01:08] (current) – external edit 127.0.0.1
Line 1: Line 1:
-FIXME 
 ==== description ==== ==== description ====
-...+Bedtools is a powerful toolset for genome arithmetic\\ 
 +About:     developed in the quinlanlab.org and by many contributors worldwide. 
 +Docs:      http://bedtools.readthedocs.io/ 
 +Code:      https://github.com/arq5x/bedtools2
  
 ==== software version ==== ==== software version ====
-...+Version:   v2.26.0
  
 ==== sbatch example ==== ==== sbatch example ====
Line 10: Line 12:
  
 <code> <code>
-...+#!/bin/bash -l 
 +#SBATCH --partition=long 
 +#SBATCH --ntasks=1                  # <--- bedtool uses only one core 
 +#SBATCH --mem 2048M 
 +#SBATCH --job-name="bedtools test" 
 + 
 +#test filenames 
 +#https://s3.amazonaws.com/bedtools-tutorials/web/exons.bed 
 +#https://s3.amazonaws.com/bedtools-tutorials/web/genome.txt 
 +BEDFILENAME=exons.bed 
 +GENOMEFILENAME=genome.txt 
 + 
 +#dir path with test files 
 +TESTFILEDIR="/home/users/${USER}/bedtools_2.26_test" 
 +  
 +#run cdhit computation and remove output files 
 +cd ${TESTFILEDIR} 
 +bedtools genomecov -i data/${BEDFILENAME} -g data/${GENOMEFILENAME} > bedtools_test_`date +%s`.txt 
 </code> </code>
  
Line 28: Line 48:
 software software
  
-bedtools : instaled from Ubuntu 16.04 repo (version v2.25.0)+bedtools : instaled from Ubuntu 16.04 repo (version v2aa.25.0)
 tutorial tutorial
  
anthill_sri003.1558935322.txt.gz · Last modified: 2023/08/01 06:38 (external edit)