Skip to content
Snippets Groups Projects
Commit a79a5aac authored by Venkat Malladi's avatar Venkat Malladi
Browse files

Unit test other functions.

parent bc3cbdee
1 merge request!67Resolve "Rename Plot profile to be consistent with naming"
Pipeline #6308 canceled with stages
in 1 hour, 27 minutes, and 51 seconds
......@@ -6,3 +6,26 @@ profile_script="./workflow/scripts/plot_profile.sh"
source ${profile_script}
run check_tools
}
@test "Test deeptools present" {
source ${profile_script}
run check_tools
}
@test "Test deeptools computeMatrix" {
source ${profile_script}
run compute_matrix test_data/ENCSR238SGC_pooled.fc_signal.bw /project/shared/bicf_workflow_ref/mouse/GRCm38/gencode.vM20.annotation.gtf
FILE=computeMatrix.gz
if [[ -f "$FILE" ]]; then
echo "$FILE exist"
fi
}
@test "Test deeptools plotProfile" {
source ${profile_script}
run plot_profile computeMatrix.gz
FILE=plotProfile.png
if [[ -f "$FILE" ]]; then
echo "$FILE exist"
fi
}
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment