You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
cols[8] =cols[8].rstrip(";") # gff2bed doesn't like trailing ;
499
506
print('\t'.join(cols), file=base_gff_out)
500
507
base_gff_out.close()
@@ -971,6 +978,8 @@ class OgsMerger():
971
978
parser.add_argument("-d", "--deleted", help="File containing a list of mRNAs to remove")
972
979
parser.add_argument("-o", "--out_prefix", help="Prefix for output files (default=<ogs_name>_<today's date>)")
973
980
parser.add_argument("--regex_rna", help="Regex matching mRNA ids, with a capturing group around the gene id without version suffix (default='([a-zA-Z0-9]+)([\\.0-9]+)?([-_]R[A-Z]+)?(,[a-zA-Z0-9\\.\\-_]*)?' )")
981
+
parser.add_argument("--regex_rna_replace", help="Replacement string to create a gene id from regex_rna captured group, where {id} is the captured group (default='{id}' )")
0 commit comments