Skip to content
Snippets Groups Projects
Commit baa4acd8 authored by ameyner2's avatar ameyner2
Browse files

Fix VCF file names in output directories

parent 61be2bf6
No related branches found
No related tags found
No related merge requests found
......@@ -38,6 +38,12 @@ then
do
mv $OUTPUT_DIR/$INDV $OUTPUT_DIR/${DATE}_${PROJECT_ID}_${FAMILY_ID}/
done
# fix VCF output file names
cd $OUTPUT_DIR/${DATE}_${PROJECT_ID}_${FAMILY_ID}
mv ${PROJECT_ID}${FAMILY_ID}-gatk-haplotype-annotated.vcf.gz ${PROJECT_ID}_${FAMILY_ID}-gatk-haplotype-annotated.vcf.gz
mv ${PROJECT_ID}${FAMILY_ID}-gatk-haplotype-annotated.vcf.gz.tbi ${PROJECT_ID}_${FAMILY_ID}-gatk-haplotype-annotated.vcf.gz.tbi
else
echo $OUTPUT_DIR/${DATE}_${PROJECT_ID}_${FAMILY_ID} does not exist.
fi
......
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