File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1515 ["E[0-9]{5}" , [["HiSeq X" ]]],
1616 ["NB[0-9]{6}" , [["NextSeq" ]]],
1717 ["NS[0-9]{6}" , [["NextSeq" ]]],
18+ ["VH[0-9]{5}" , [["NextSeq 2000" ]]],
1819 ["MN[0-9]{5}" , [["MiniSeq" ]]],
1920 ["A[0-9]{5}" , [["NovaSeq" ]]],
2021 ["NA[0-9]{5}" , [["NovaSeq" ]]],
Original file line number Diff line number Diff line change @@ -13,6 +13,13 @@ def test_by_machine(capsys):
1313 outerr = capsys .readouterr ()
1414 assert outerr .out == "HiSeq 3000,HiSeq 4000\n "
1515
16+ def test_by_machine_nextseq (capsys ):
17+ testargs = ["fcid" , "VH12345" , "--by-machine" ]
18+ with patch .object (sys , "argv" , testargs ):
19+ main ()
20+ outerr = capsys .readouterr ()
21+ assert outerr .out == "NextSeq 2000\n "
22+
1623
1724def test_by_flowcell ():
1825 print (get_tech_type ("22C37GLT3" , FCIDs ))
Original file line number Diff line number Diff line change @@ -4,7 +4,7 @@ build-backend = "setuptools.build_meta"
44
55[project ]
66name = " fcid"
7- version = " 0.0.10 "
7+ version = " 0.0.11 "
88authors = [
99 {name = " Nick Waters" , email = " nickp60@gmail.com" },
1010]
You can’t perform that action at this time.
0 commit comments