Mercurial > repos > fubar > jbrowse2
view convertMAF.sh @ 125:49f3d3878413 draft
planemo upload for repository https://github.com/galaxyproject/tools-iuc/tree/master/tools/jbrowse2 commit 5ea1f9c1eef1de76232e69aa6d34cda77d90d566
author | fubar |
---|---|
date | Sat, 05 Oct 2024 23:58:05 +0000 |
parents | e7a6f7a7148d |
children |
line wrap: on
line source
#!/usr/bin/env bash # https://github.com/cmdcolin/jbrowse-plugin-mafviewer/blob/master/bin/convert.sh # maf2bed modified to work right as a python script by ross lazarus in desperation # MAF file must contain the species name and chromosome name # e.g. hg38.chr1 in the sequence identifiers with hg38 passed in as $2 python $3/maf2bed.py $2 < $1 | sort -k1,1 -k2,2n > $4.sorted.bed bgzip -c $4.sorted.bed > $4.sorted.bed.gz tabix -p bed $4.sorted.bed.gz