@@ -1270,7 +1270,12 @@ experiment_f.puts xml_experiment.EXPERIMENT_SET{|experiment_set|
12701270 platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
12711271 }
12721272
1273- when /illumina|NextSeq|HiSeq/i
1273+ when /illumina|nextseq|hiseq/i
1274+ seq2_platform . ILLUMINA { |platform_e |
1275+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1276+ }
1277+
1278+ when "unspecified"
12741279 seq2_platform . ILLUMINA { |platform_e |
12751280 platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
12761281 }
@@ -1280,12 +1285,27 @@ experiment_f.puts xml_experiment.EXPERIMENT_SET{|experiment_set|
12801285 platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
12811286 }
12821287
1288+ when /AB 5500/
1289+ seq2_platform . ABI_SOLID { |platform_e |
1290+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1291+ }
1292+
12831293 when /Ion/
12841294 seq2_platform . ION_TORRENT { |platform_e |
12851295 platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
12861296 }
12871297
1288- when /pacbio|sequel/i
1298+ when /pacbio/i
1299+ seq2_platform . PACBIO_SMRT { |platform_e |
1300+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1301+ }
1302+
1303+ when /Sequel/
1304+ seq2_platform . PACBIO_SMRT { |platform_e |
1305+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1306+ }
1307+
1308+ when "Onso" , "Revio"
12891309 seq2_platform . PACBIO_SMRT { |platform_e |
12901310 platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
12911311 }
@@ -1295,12 +1315,61 @@ experiment_f.puts xml_experiment.EXPERIMENT_SET{|experiment_set|
12951315 platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
12961316 }
12971317
1298- when /bgiseq|dnbseq|mgiseq/i
1318+ when /AB 3/
1319+ seq2_platform . CAPILLARY { |platform_e |
1320+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1321+ }
1322+ when /Helicos HeliScope/
1323+ seq2_platform . HELICOS { |platform_e |
1324+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1325+ }
1326+
1327+ when /Complete/
1328+ seq2_platform . COMPLETE_GENOMICS { |platform_e |
1329+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1330+ }
1331+
1332+ when /bgiseq|mgiseq/i
12991333 seq2_platform . BGISEQ { |platform_e |
13001334 platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
13011335 }
13021336
1303- end
1337+ when /dnbseq/i
1338+ seq2_platform . DNBSEQ { |platform_e |
1339+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1340+ }
1341+
1342+ when /Element/
1343+ seq2_platform . ELEMENT { |platform_e |
1344+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1345+ }
1346+
1347+ when "UG 100"
1348+ seq2_platform . ULTIMA { |platform_e |
1349+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1350+ }
1351+
1352+ when "GENIUS" , "Genapsys Sequencer" , "GS111"
1353+ seq2_platform . GENAPSYS { |platform_e |
1354+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1355+ }
1356+
1357+ when "GenoCare 1600" , "GenoLab M" , "FASTASeq 300"
1358+ seq2_platform . GENEMIND { |platform_e |
1359+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1360+ }
1361+
1362+ when "Tapestri"
1363+ seq2_platform . TAPESTRI { |platform_e |
1364+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1365+ }
1366+
1367+ when "Sentosa SQ301"
1368+ seq2_platform . VELA_DIAGNOSTICS { |platform_e |
1369+ platform_e . INSTRUMENT_MODEL ( exp [ 7 ] )
1370+ }
1371+
1372+ end
13041373
13051374 } #seq2_platform
13061375
0 commit comments