This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/bin/bash | |
# | |
# Fixes FTDNA BAM version 1 files so can be processed by standard bioinformatic tools. | |
# Applies only to Bigy files (not needed for Bigy2 or Bigy3) | |
# | |
# This is handled behind the scenes (automagically) by WGS Extract (in the next release) | |
# Simply a stand-alone. simple scenario script installation for demonstration purposes here | |
# | |
# Relies on htslib bgzip and samtools; along with wget, python rm, zip and unzip. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env python3 | |
# coding: utf8 | |
# | |
# Counting Reference Model Final Assembly N's (BED, region, etc output files) | |
# | |
# Part of the WGS Extract (https://wgse.bio/) system (standalone) | |
# | |
# Copyright (C) 2022-2024 Randy Harr | |
# | |
# License: GNU General Public License v3 or later |