:78 Function create_function() is deprecated [8192]

adding the terms and filters defns used in table.sh

Marcelo Ponce [2019-06-23 17:51:59]
adding the terms and filters defns used in table.sh
Filename
core/auxs/TT_gene.id
core/auxs/TT_mRNA.id
diff --git a/core/auxs/TT_gene.id b/core/auxs/TT_gene.id
new file mode 100755
index 0000000..7ceba9d
--- /dev/null
+++ b/core/auxs/TT_gene.id
@@ -0,0 +1,41 @@
+#####################################################################
+#####################################################################
+## The following two sections:
+##
+##		"FILTERS AND DELIMITERS"
+##
+##	and
+##
+##		"SELECTIONS"
+##
+## should be determine depending on the particular organism, protein,
+## genes (ie. target) and data layout of the specific file to be
+## processed.
+##
+## Here we present the case for Tetrahymena Thermophila.
+#####################################################################
+#####################################################################
+
+
+############  CASE FOR TETRAHYMENA THERMOPHILA  #####################
+################# FILTERS AND DELIMITERS ############################
+# filterS can be modified/added depending on the "TARGET" organism and 'protein'
+filter1="gene"
+filter2="Name=TTHERM_"
+# and one could keep addingg further 'filters' if needed...
+# filter3='"hypothetical protein"'
+# ...
+
+# Eg.
+# TARGET=$(grep $filter1 $FILE | grep $filter2)
+#
+# grep $filter1 $FILE | grep $filter2 | awk '{print $1":"$4"-"$5"  "$9}
+
+
+# define some delimiters...
+delim1="TTHERM"
+delim2=";Note"
+delim3="Note="
+
+######################################################################
+#######################################################################
diff --git a/core/auxs/TT_mRNA.id b/core/auxs/TT_mRNA.id
new file mode 100755
index 0000000..feb0d11
--- /dev/null
+++ b/core/auxs/TT_mRNA.id
@@ -0,0 +1,41 @@
+#####################################################################
+#####################################################################
+## The following two sections:
+##
+##		"FILTERS AND DELIMITERS"
+##
+##	and
+##
+##		"SELECTIONS"
+##
+## should be determine depending on the particular organism, protein,
+## genes (ie. target) and data layout of the specific file to be
+## processed.
+##
+## Here we present the case for Tetrahymena Thermophila.
+#####################################################################
+#####################################################################
+
+
+############  CASE FOR TETRAHYMENA THERMOPHILA  #####################
+################# FILTERS AND DELIMITERS ############################
+# filterS can be modified/added depending on the "TARGET" organism and 'protein'
+filter1="mRNA"
+filter2="Parent=gene"
+# and one could keep addingg further 'filters' if needed...
+# filter3='"hypothetical protein"'
+# ...
+
+# Eg.
+# TARGET=$(grep $filter1 $FILE | grep $filter2)
+#
+# grep $filter1 $FILE | grep $filter2 | awk '{print $1":"$4"-"$5"  "$9}
+
+
+# define some delimiters...
+delim1="gene"
+delim2=";Name"
+delim3="Name="
+
+######################################################################
+#######################################################################
ViewGit