Skip to content

Commit

Permalink
Merge pull request #307 from kedhammar/radseq-pooling
Browse files Browse the repository at this point in the history
Remove special-treatment for RAD-seq pre-pooling. Treat as regular pre-pooling.
  • Loading branch information
kedhammar authored Feb 15, 2024
2 parents bb41d7a + ae2f378 commit de4b30d
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 17 deletions.
4 changes: 4 additions & 0 deletions VERSIONLOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,9 @@
# Scilifelab_epps Version Log

## 20240215.1

Treat RAD-seq as regular pooling step, requested by Hamid.

## 20240208.1

In Anglerfish parsing, only try to assign barcode-specific UDFs for barcoded samples.
Expand Down
18 changes: 1 addition & 17 deletions scripts/bravo_csv.py
Original file line number Diff line number Diff line change
Expand Up @@ -265,23 +265,7 @@ def aliquot_fixed_volume(currentStep, lims, volume, log):
def prepooling(currentStep, lims):
log = []

if zika_utils.verify_step(
currentStep, targets=[("", "Library Pooling (RAD-seq) v1.0")]
):
zika_methods.pool(
currentStep=currentStep,
lims=lims,
udfs={
"target_amt": "Amount for prep (ng)",
"target_vol": "Final Volume (uL)",
"target_conc": None,
"final_amt": "Amount for prep (ng)",
"final_vol": "Final Volume (uL)",
"final_conc": None,
},
)

elif currentStep.instrument.name == "Zika":
if currentStep.instrument.name == "Zika":
zika_methods.pool(
currentStep=currentStep,
lims=lims,
Expand Down

0 comments on commit de4b30d

Please sign in to comment.