-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathconcat_configs.sh
60 lines (51 loc) · 2.06 KB
/
concat_configs.sh
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
#! /bin/bash
#########################################################
#
# Platform: NCI Gadi HPC
# Usage:
# Version: 1.0
#
# For more details see: https://github.com/Sydney-Informatics-Hub/Somatic-ShortV
#
# If you use this script towards a publication, support us by citing:
#
# Suggest citation:
# Sydney Informatics Hub, Core Research Facilities, University of Sydney,
# 2021, The Sydney Informatics Hub Bioinformatics Repository, <date accessed>,
# https://github.com/Sydney-Informatics-Hub/Germline-ShortV
#
# Please acknowledge the Sydney Informatics Hub and the facilities:
#
# Suggested acknowledgement:
# The authors acknowledge the technical assistance provided by the Sydney
# Informatics Hub, a Core Research Facility of the University of Sydney
# and the Australian BioCommons which is enabled by NCRIS via Bioplatforms
# Australia. The authors acknowledge the use of the National Computational
# Infrastructure (NCI) supported by the Australian Government.
#
#########################################################
# There should be at least 3 args
if [ -z "$3" ]
then
echo "Please provide the name of the output config file followed by the config files you wish to join"
echo "e.g. sh concat_configs.sh ../combinedSampleCohort.config ../oldSamples.config ../newSamples.config"
echo "sh concat_configs.sh ../combinedSampleCohort.config ../*config also works"
exit
fi
output=$1
configs=("${@:2}")
cat=$(cat "${@:2}")
if [ -f $output ]; then
echo $(date): The $output file exists, please choose another filename to output the new config file to.
exit
fi
echo $(date) Concatenting "${configs[@]}", assuming LabSampleIDs are unique. Writing to $output
# Simple concatenate configs, contains all headers if present
echo "$cat" > $output
header=$(grep -m 1 "^#" $output)
config_noheader=$(grep -v "^#" $output)
# Keep only first header, two steps for newline after header
echo $(date): Writing new config to $output, including samples in "${configs[@]}"
echo "$header" > $output
echo "$config_noheader" >> $output
sed -i '/^$/d' $output