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

Fix file reference.

parent 0a9794c2
1 merge request!12Resolve "Pool and Pseudoreplication"
Pipeline #1132 failed with stage
in 2 hours, 20 minutes, and 5 seconds
......@@ -125,7 +125,7 @@ def self_psuedoreplication(tag_file, prefix, paired):
# Convert read pairs to reads into standard tagAlign file
for i, index in enumerate([0, 1]):
string_index = str(index)
string_index = '0' + str(index)
steps = ['cat %s' % (splits_prefix + string_index)]
if paired:
steps.extend([r"""awk 'BEGIN{OFS="\t"}{printf "%s\t%s\t%s\tN\t1000\t%s\n%s\t%s\t%s\tN\t1000\t%s\n",$1,$2,$3,$9,$4,$5,$6,$10}'"""])
......
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