Add utility to fix the off-by-3 error in the amplified from field.
[htsworkflow.git] / scripts / srf2fastq
1 #!/usr/bin/python
2 import sys
3 from htsworkflow.pipelines.srf2fastq import main
4
5 if __name__ == "__main__":    
6     sys.exit(main(sys.argv[1:]))