Things required:
- Linux headers: https://cdn.kernel.org/pub/linux/kernel/
- Binutils: https://www.gnu.org/software/binutils/
- GCC: https://www.gnu.org/software/gcc/
- glibc: https://www.gnu.org/software/libc/
from random import randint | |
import pandas as pd | |
def main(): | |
with open("/home/chponte/Descargas/Bmedia_15MD_002MAF_filtered.new.vcf", "x") as fout: | |
with open("/home/chponte/Descargas/Bmedia_15MD_002MAF_filtered.vcf", "r") as fin: | |
l = fin.readline() | |
while not l.startswith("#CHROM"): | |
fout.write(l) | |
l = fin.readline() |
Things required:
' Simple command-line help. | |
select case WScript.Arguments(0) | |
case "-?", "/?", "-h", "--help" | |
WScript.echo "Usage: runHidden executable [...]" & vbNewLine & vbNewLine & "Runs the specified command hidden (without a visible window)." | |
WScript.Quit(0) | |
end select | |
' Separate the arguments into the executable name | |
' and a single string containing all arguments. | |
exe = WScript.Arguments(0) |