@@ -1156,6 +1156,115 @@ q{Default: hgvs, symbol, numbers, sift, polyphen, humdiv, domains, protein, ccds
11561156 )
11571157 );
11581158
1159+ option(
1160+ q{ me_merge_bam} => (
1161+ cmd_tags => [q{ Analysis recipe switch} ],
1162+ documentation => q{ Prepare bam files for RetroSeq} ,
1163+ is => q{ rw} ,
1164+ isa => enum( [ 0, 1, 2 ] ),
1165+ )
1166+ );
1167+
1168+ option(
1169+ q{ retroseq} => (
1170+ cmd_tags => [q{ Analysis recipe switch} ],
1171+ documentation => q{ Discover mobile elements using RetroSeq} ,
1172+ is => q{ rw} ,
1173+ isa => enum( [ 0, 1, 2 ] ),
1174+ )
1175+ );
1176+
1177+ option(
1178+ q{ me_merge_vcfs} => (
1179+ cmd_tags => [q{ Analysis recipe switch} ],
1180+ documentation => q{ Merge sample vcfs from RetroSeq} ,
1181+ is => q{ rw} ,
1182+ isa => enum( [ 0, 1, 2 ] ),
1183+ )
1184+ );
1185+
1186+ option(
1187+ q{ me_merge_vcfs_bnd_distance} => (
1188+ cmd_tags => [q{ Default: 150} ],
1189+ documentation => q{ Maximum distance between two similar BNDs} ,
1190+ is => q{ rw} ,
1191+ isa => Num,
1192+ )
1193+ );
1194+
1195+ option(
1196+ q{ me_merge_vcfs_overlap} => (
1197+ cmd_tags => [q{ Default: } ],
1198+ documentation => q{ Overlap required to merge two events} ,
1199+ is => q{ rw} ,
1200+ isa => Num,
1201+ )
1202+ );
1203+
1204+ option(
1205+ q{ mobile_element_reference} => (
1206+ cmd_tags => [q{ file.vcf=TE_type} ],
1207+ documentation => q{ Database file(s) for mobile element iscovery} ,
1208+ is => q{ rw} ,
1209+ isa => HashRef,
1210+ )
1211+ );
1212+
1213+ option(
1214+ q{ me_annotate} => (
1215+ cmd_tags => [q{ Analysis recipe switch} ],
1216+ documentation => q{ Annotate mobile elememnt} ,
1217+ is => q{ rw} ,
1218+ isa => enum( [ 0, 1, 2 ] ),
1219+ )
1220+ );
1221+
1222+ option(
1223+ q{ me_annotate_query_bnd_distance} => (
1224+ cmd_tags => [q{ Default: 150} ],
1225+ documentation => q{ Maximum distance between two similar BNDs} ,
1226+ is => q{ rw} ,
1227+ isa => Num,
1228+ )
1229+ );
1230+
1231+ option(
1232+ q{ me_annotate_query_overlap} => (
1233+ cmd_tags => [q{ Default: } ],
1234+ documentation => q{ Overlap required to annotate} ,
1235+ is => q{ rw} ,
1236+ isa => Num,
1237+ )
1238+ );
1239+
1240+ option(
1241+ q{ me_varianteffectpredictor} => (
1242+ cmd_tags => [q{ Analysis recipe switch} ],
1243+ documentation => q{ Annotate mobile elements with VEP} ,
1244+ is => q{ rw} ,
1245+ isa => enum( [ 0, 1, 2 ] ),
1246+ )
1247+ );
1248+
1249+ option(
1250+ q{ me_filter} => (
1251+ cmd_tags => [q{ Analysis recipe switch} ],
1252+ documentation => q{ Filter mobile elements} ,
1253+ is => q{ rw} ,
1254+ isa => enum( [ 0, 1, 2 ] ),
1255+ )
1256+ );
1257+
1258+ option(
1259+ q{ me_filter_frequency_threshold} => (
1260+ cmd_tags => [q{ Default: 0.1} ],
1261+ documentation =>
1262+ q{ Threshold frequency for variants to be filtered out, set to 0 to disable} ,
1263+ is => q{ rw} ,
1264+ isa => Num,
1265+ )
1266+ );
1267+
11591268 option(
11601269 q{ gatk_haplotypecaller} => (
11611270 cmd_tags => [q{ Analysis recipe switch} ],
0 commit comments