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

Fix check design file.

parent e8434460
Branches
Tags
No related merge requests found
......@@ -61,7 +61,7 @@ process checkDesignFile {
}
else {
"""
python $baseDir/scripts/check_design.py -d $designFile -f $readsList -a
python3 $baseDir/scripts/check_design.py -d $designFile -f $readsList -a
"""
}
......
......@@ -158,9 +158,11 @@ def main():
fastq_df = pd.read_csv(fastq, sep='\t', names=['name', 'path'])
# Check design file
check_design_headers(design_df, paired)
check_design_headers(design_df, paired, atac)
if not atac:
check_controls(design_df)
check_replicates(design_df)
new_design_df = check_files(design_df, fastq_df, paired)
......
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