Skip to content

Commit

Permalink
fix error in @sq lines (AM -> AN)
Browse files Browse the repository at this point in the history
  • Loading branch information
tkchafin authored Jun 27, 2024
1 parent 2a19a8e commit 9195817
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions modules/local/build_sam_header.nf
Original file line number Diff line number Diff line change
Expand Up @@ -64,9 +64,9 @@ process BUILD_SAM_HEADER {
}
}
if (sn in lookup) {
new_field = "AM:" lookup[sn];
new_field = "AN:" lookup[sn];
} else {
new_field = "AM:na";
new_field = "AN:na";
}
new_sp = "SP:" species_name;
print join(fields, OFS), AS, new_field, new_sp;
Expand Down

0 comments on commit 9195817

Please sign in to comment.