Skip to content
Snippets Groups Projects
Commit eb4146a3 authored by aknecht2's avatar aknecht2
Browse files

Added disclaimers to formatting jobs.

parent 6e23233e
No related branches found
No related tags found
1 merge request!34Resolve "Zerone"
#!/usr/bin/env bash
# Right now we are just padding missing columns with -1's.
# This is not a good way of filling in missing data
# but not currently sure how to do it correclty.
awk '{print $0,-1,-1,-1,-1,-1}' "$1" > "$2"
#!/usr/bin/env bash
# Right now we are just padding missing columns with -1's.
# This is not a good way of filling in missing data
# but not currently sure how to do it correclty.
/bin/sort -k1,1V -k2,2n -k3,3n "$1" | sed "/^#/ d" | awk '{print $0,-1,-1}' > "$2"
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment