<?xml version="1.0" encoding="UTF-8"?><rss xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:content="http://purl.org/rss/1.0/modules/content/" xmlns:atom="http://www.w3.org/2005/Atom" version="2.0"><channel><title><![CDATA[tmp]]></title><description><![CDATA[<p dir="auto">insert into ai_model(author,name,uuid,description,size,category,tag,path,user_id,status,is_public,extend_json,created_at,updated_at)<br />
values<br />
('ali','qwen7b','ec/327/b04-fc62-a200-c5a9-e7a2c6e027f8','qwen7b','4831838208','["类别1"]','["标签1"]','/cephfs_data/genostack_v3/genostack_php/ai_model/raw_data/ec/327/b04-fc62-a200-c5a9-e7a2c6e027f8/qwen7b.gguf',1,'1',true,'{"blob":"sha256:2091ee8c8d8f","name":"qwen:7b"}','2024-07-02 18:15:46','2024-07-02 18:15:46'),<br />
('ali','qwen2_72b','ec/327/b04-fc62-a200-c5a9-e7a2c6e027f8','qwen2_72b','44023414784','["类别1"]','["标签1"]','/cephfs_data/genostack_v3/genostack_php/ai_model/raw_data/ec/327/b04-fc62-a200-c5a9-e7a2c6e027f8/qwen2_72b.gguf',1,'1',true,'{"blob":"sha256:14066dfa503f","name":"qwen2:72b"}','2024-07-02 18:15:46','2024-07-02 18:15:46'),<br />
('llama','llama:70b','ec/327/b04-fc62-a200-c5a9-e7a2c6e027f8','qwen1_5-0_5b','41875931136','["类别1"]','["标签1"]','/cephfs_data/genostack_v3/genostack_php/ai_model/raw_data/ec/327/b04-fc62-a200-c5a9-e7a2c6e027f8/llama3_70b.gguf',1,'1',true,'{"blob":"sha256:786f3184aec0","name":"llama3:70b"}','2024-07-02 18:15:46','2024-07-02 18:15:46');</p>
]]></description><link>http://an.forum.genostack.com/topic/1085/tmp</link><generator>RSS for Node</generator><lastBuildDate>Sat, 13 Jun 2026 09:22:06 GMT</lastBuildDate><atom:link href="http://an.forum.genostack.com/topic/1085.rss" rel="self" type="application/rss+xml"/><pubDate>Tue, 02 Jul 2024 09:35:29 GMT</pubDate><ttl>60</ttl><item><title><![CDATA[Reply to tmp on Wed, 25 Sep 2024 06:36:19 GMT]]></title><description><![CDATA[<p dir="auto">/cephfs_data/genostack_v3/genostack_php/source_v3/reportHtml/2024_09/a9cc132fd641478e84caacd66ab8502e.zip</p>
]]></description><link>http://an.forum.genostack.com/post/2722</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2722</guid><dc:creator><![CDATA[zhanglu]]></dc:creator><pubDate>Wed, 25 Sep 2024 06:36:19 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Sat, 31 Aug 2024 09:34:12 GMT]]></title><description><![CDATA[<p dir="auto">JZ_URL=https://crmapi.jzsoft.cn<br />
JZ_APPID=509331<br />
JZ_SECRETID=cVaQjWPqn1XQ<br />
JZ_SECRETKEY=cc0b2385-5358-4f95-91d6-80341e82d5d3</p>
]]></description><link>http://an.forum.genostack.com/post/2719</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2719</guid><dc:creator><![CDATA[zhangfanglin]]></dc:creator><pubDate>Sat, 31 Aug 2024 09:34:12 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Sat, 24 Aug 2024 08:29:02 GMT]]></title><description><![CDATA[<h1>阿里-金智CRM</h1>
<p dir="auto">JZ_URL=http://nboa.jzsoft.cn:777<br />
JZ_APPID=91307<br />
JZ_SECRETID=MIOAmSeu3m8c<br />
JZ_SECRETKEY=d724a2f9-c5f8-4612-b1c6-db8734c6180a</p>
]]></description><link>http://an.forum.genostack.com/post/2715</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2715</guid><dc:creator><![CDATA[zhangfanglin]]></dc:creator><pubDate>Sat, 24 Aug 2024 08:29:02 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Thu, 22 Aug 2024 01:28:09 GMT]]></title><description><![CDATA[<pre><code>    public function gettree(Request $request){
        $path=$request-&gt;path?$request-&gt;path:env('PUBLIC_FILE_DATA');
        if($request-&gt;find_name){
            $datas=public_data::where('file_path','ilike',"%$request-&gt;find_name%")
            -&gt;orWhere('intro','ilike',"%$request-&gt;find_name%")
            -&gt;orWhere('db_category','ilike',"%$request-&gt;find_name%")
            -&gt;orWhere('db_name','ilike',"%$request-&gt;find_name%")
            -&gt;orWhere('tag','ilike',"%$request-&gt;find_name%")
            -&gt;orWhere('expand_json','ilike',"%$request-&gt;find_name%")
            -&gt;orWhere('remark','ilike',"%$request-&gt;find_name%")
            -&gt;get();
            $find_list=[];
            foreach($datas as $k =&gt;$v){
                $find_list[]=$v-&gt;file_path;
            }
            if($path  &amp;&amp; strpos($path,env('PUBLIC_FILE_DATA'))!== false){

                $s=shell_exec("find $path -name *$request-&gt;find_name*");
                $find_list=array_merge($find_list,explode("\n",$s));
                array_pop($find_list);
                return array_values(array_unique($find_list));
            }else{
                $s=shell_exec("find ".env('PUBLIC_FILE_DATA')." -name *$request-&gt;find_name*");
                $find_list=array_merge($find_list,explode("\n",$s));
                array_pop($find_list);
                return array_values(array_unique($find_list));
            }
        }
        $dir_info=[];
        $is_file=false;
        \Log::info('文件夹列表-开始'.'-----'.$path);
        if($path &amp;&amp; is_file($path) &amp;&amp; strpos($path,env('PUBLIC_FILE_DATA'))!== false){
            $data=[];
            $pathinfo=pathinfo($path);
            $dir_info['metadata']=public_data::where('file_path',$pathinfo['dirname'])-&gt;where('name',$pathinfo['basename'])-&gt;with('user')-&gt;first();
            if($dir_info['metadata']){
                $dir_info['metadata']-&gt;expand_json=json_decode($dir_info['metadata']-&gt;expand_json,true);
            }
            $is_file=true;
            $dir_info['file_info']["time"]=date("Y-m-d H:i:s",filectime($path));
            $dir_info['file_info']["filesize"]=k_m(filesize($path));
        }else if($path &amp;&amp; strpos($path,env('PUBLIC_FILE_DATA'))!== false){
            $data=catalogue_intro($path);
        }else{
            $data=catalogue_intro(env('PUBLIC_FILE_DATA'));
        }
        \Log::info('文件夹列表-完成'.'-----'.$path);
        \Log::info('数据库处理-开始'.'-----'.$path);
        foreach($data as $k =&gt;$vs){
            $data[$k]['dir_info']=public_data::where('file_path',$vs['dir'])-&gt;with('user')-&gt;whereNull('name')-&gt;first();
            if($data[$k]['dir_info']){
                $data[$k]['dir_info']-&gt;expand_json=json_decode($data[$k]['dir_info']-&gt;expand_json,true);
            }
        }
        \Log::info('数据库处理-完成'.'-----'.$path);
        if(!isset($dir_info['file_info'])){
            $dir_info['metadata']=public_data::where('file_path',$path)-&gt;with('user')-&gt;whereNull('name')-&gt;first();
            if($dir_info['metadata']){
                $dir_info['metadata']-&gt;expand_json=json_decode($dir_info['metadata']-&gt;expand_json,true);
            }
            \Log::info('获取文件创建时间-开始'.'-----'.$path);
            $dir_info['file_info']["time"]=date("Y-m-d H:i:s",filectime($path));
            \Log::info('获取文件创建时间-完成'.'-----'.$path);
            \Log::info('文件大小读取-开始'.'-----'.$path);
            $dir_info['file_info']["filesize"]=k_m(dirSize($path,true));
            \Log::info('文件大小读取-完成'.'-----'.$path);
            $dir_info['file_info']["file_num"]=count($data);
        }
        $ebi_err_list=public_data::where('file_path',$path)-&gt;whereNotIn('status',['success','init'])-&gt;count();
        return [
            'ebi_err_list'=&gt;$ebi_err_list,
            'dir_info'=&gt;$dir_info,
            "dir"=&gt;$path,
            'is_file'=&gt;$is_file,
            "data"=&gt;$data
        ];
    }
</code></pre>
]]></description><link>http://an.forum.genostack.com/post/2711</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2711</guid><dc:creator><![CDATA[zhangfanglin]]></dc:creator><pubDate>Thu, 22 Aug 2024 01:28:09 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Fri, 02 Aug 2024 02:31:42 GMT]]></title><description><![CDATA[<pre><code>public function get_task_output(Request $request,$project_id,$id){
        $da=Data_analysi::find($id);
        if($da-&gt;workflow_root &amp;&amp; is_dir($da-&gt;workflow_root)){
            if($request-&gt;find_name){
                if($request-&gt;dir   &amp;&amp; strpos($request-&gt;dir, $da-&gt;workflow_root)!== false){
                    $s=shell_exec("find $request-&gt;dir -name *$request-&gt;find_name*");
                    $find_list=explode("\n",$s);
                    array_pop($find_list);
                    return $find_list;
                }else{
                    $s=shell_exec("find $da-&gt;workflow_root -name *$request-&gt;find_name*");
                    $find_list=explode("\n",$s);
                    array_pop($find_list);
                    return $find_list;
                }
            }
            $dir=$da-&gt;workflow_root;
            $data=[];
            $dir_info=[];
            $is_file=false;
            \Log::info('文件夹列表-开始'.'-----'.$request-&gt;dir);
            if($request-&gt;dir &amp;&amp; is_file($request-&gt;dir) &amp;&amp; strpos($request-&gt;dir,$da-&gt;workflow_root)!== false){
                $is_file=true;
                $dir=$request-&gt;dir;
                $dir_info['file_info']["time"]=date("Y-m-d H:i:s",filectime($request-&gt;dir));
                $dir_info['file_info']["filesize"]=k_m(filesize($request-&gt;dir));
            }else if($request-&gt;dir &amp;&amp; strpos($request-&gt;dir, $da-&gt;workflow_root)!== false){
                $dir=$request-&gt;dir;
                $data=catalogue_intro($dir);
            }else{
                $data=catalogue_intro($dir);
            }  
            \Log::info('文件夹列表-完成'.'-----'.$request-&gt;dir);
            if(!isset($dir_info['file_info'])){
                \Log::info('获取文件创建时间-开始'.'-----'.$request-&gt;dir);
                $dir_info['file_info']["time"]=date("Y-m-d H:i:s",filectime($dir));
                \Log::info('获取文件创建时间-完成'.'-----'.$request-&gt;dir);
                $dir_info['file_info']["filesize"]=k_m(dirSize($dir,true));
                \Log::info('文件夹dirSize-完成'.'-----'.$request-&gt;dir);
                $dir_info['file_info']["file_num"]=count($data);
                
            } 
            return [
                'dir_info'=&gt;$dir_info,
                "is_file"=&gt;$is_file,
                "dir"=&gt;$dir,
                "data"=&gt;$data
            ];
        }else{
            return [];
        }
    }
</code></pre>
]]></description><link>http://an.forum.genostack.com/post/2703</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2703</guid><dc:creator><![CDATA[zhangfanglin]]></dc:creator><pubDate>Fri, 02 Aug 2024 02:31:42 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Mon, 22 Jul 2024 09:15:34 GMT]]></title><description><![CDATA[<p dir="auto">psql --dbname=qiime --username=postgres -c "COPY(select data_analysis.id,data_analysis.name,data_analysis.founder,data_analysis.process_name,data_analysis.time_consuming,<a href="http://projects.name" rel="nofollow ugc">projects.name</a> as p_name, process_warehouse.name as process_name,flow_version,data_analysis.created_at from data_analysis left join projects on projects.id=data_analysis.project_id left join process_warehouse on process_warehouse.id=data_analysis.process_warehouse_id where data_analysis.status='Succeeded' order by data_analysis.id desc)TO STDOUT with csv header " &gt; tt.csv</p>
<p dir="auto">;<a href="/assets/uploads/files/1721639645176-tt.csv">tt.csv</a></p>
]]></description><link>http://an.forum.genostack.com/post/2692</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2692</guid><dc:creator><![CDATA[zhanglu]]></dc:creator><pubDate>Mon, 22 Jul 2024 09:15:34 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Sun, 21 Jul 2024 08:38:31 GMT]]></title><description><![CDATA[<p dir="auto">update  permissions set icon='data_set' where name='dataset';<br />
update  permissions set icon='group' where name='group_detail';<br />
update  permissions set icon='menu_icon' where name='Menu';<br />
update  permissions set icon='group' where name='group_manger';<br />
update  permissions set icon='user_admin' where name='userManger';<br />
update  permissions set icon='role_management' where name='RolePermission';<br />
update  permissions set icon='dictionary_admin' where name='dictionary_manger';<br />
update  permissions set icon='app_list' where name='ToolIntro';<br />
update  permissions set icon='data_set' where name='DataTraining';<br />
update  permissions set icon='task_list' where name='dataAnalysiall_list';<br />
update  permissions set icon='report_list' where name='report_list';<br />
update  permissions set icon='software' where name='docker_warehouse';<br />
update  permissions set icon='software' where name='process_warehouse';<br />
update  permissions set icon='public_documents' where name='publicDataFile';<br />
update  permissions set icon='note' where name='commonNotebook';<br />
update  permissions set icon='language_model' where name='LanguageModel';<br />
update  permissions set icon='home_page' where name='home_config';<br />
update  permissions set icon='materialsetup' where name='activity';<br />
update  permissions set icon='license' where name='license_admin';<br />
update  permissions set icon='work_order' where name='Work_Order_List';<br />
update  permissions set icon='system_admin' where name='SystemSettings';<br />
update  permissions set icon='data_processing' where name='ProjectList';<br />
update  permissions set icon='report_config' where name='report_config';<br />
update  permissions set icon='file_datas' where name='commonFile';<br />
update  permissions set icon='knowledge_base' where name='LibraryKnowledge';<br />
update  permissions set icon='cloud_classroom' where name='cloudAcademyManage_plate';<br />
update  permissions set icon='literature' where name='literature_index';<br />
update  permissions set icon='department' where name='department_manger';</p>
]]></description><link>http://an.forum.genostack.com/post/2691</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2691</guid><dc:creator><![CDATA[zhangfanglin]]></dc:creator><pubDate>Sun, 21 Jul 2024 08:38:31 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Sun, 21 Jul 2024 06:24:25 GMT]]></title><description><![CDATA[<p dir="auto">id |           name_zh            |                               app_url<br />
----+------------------------------+---------------------------------------------------------------------<br />
40 | 多组柱状图                   | <a href="https://omictoolsshiny.sanshugroup.com/barplot_mutigroup/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/barplot_mutigroup/</a><br />
25 | Rstudio                      | <a href="http://192.168.30.202:30010/" rel="nofollow ugc">http://192.168.30.202:30010/</a><br />
24 | biointermine                 | <a href="http://192.168.30.203:5000/mymine" rel="nofollow ugc">http://192.168.30.203:5000/mymine</a><br />
17 | gitlab                       | <a href="http://192.168.30.202:30080/" rel="nofollow ugc">http://192.168.30.202:30080/</a><br />
37 | 代谢物分类查找               | <a href="https://omictoolsshiny.sanshugroup.com/metabolite_search/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/metabolite_search/</a><br />
30 | 饼图                         | <a href="https://omictoolsshiny.sanshugroup.com/pie/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/pie/</a><br />
46 | PDF2PNG 转换器               | <a href="https://omictoolsweb.sanshugroup.com/pdf2png/index.html" rel="nofollow ugc">https://omictoolsweb.sanshugroup.com/pdf2png/index.html</a><br />
38 | 小提琴图                     | <a href="https://omictoolsshiny.sanshugroup.com/violinplot_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/violinplot_single</a><br />
43 | 花瓣图                       | <a href="https://omictoolsshiny.sanshugroup.com/flowerplot/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/flowerplot/</a><br />
26 | blast                        | <a href="http://192.168.30.202:30011/" rel="nofollow ugc">http://192.168.30.202:30011/</a><br />
33 | 箱线图                       | <a href="https://omictoolsshiny.sanshugroup.com/boxplot_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/boxplot_single</a><br />
45 | 代谢物收录库查询(内部开发版) | <a href="http://192.168.30.202:31153/search" rel="nofollow ugc">http://192.168.30.202:31153/search</a><br />
23 | dockerhub                    | <a href="http://dockerhub.genostack.com:8090/" rel="nofollow ugc">http://dockerhub.genostack.com:8090/</a><br />
19 | 数据库                       | <a href="https://omictools001.sanshugroup.com/#/" rel="nofollow ugc">https://omictools001.sanshugroup.com/#/</a><br />
29 | 富集分析气泡图               | <a href="https://omictoolsshiny.sanshugroup.com/dotplot" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/dotplot</a><br />
21 | 核磁工具（内部）             | <a href="http://192.168.30.202:30006/#/" rel="nofollow ugc">http://192.168.30.202:30006/#/</a><br />
34 | 柱状图                       | <a href="https://omictoolsshiny.sanshugroup.com/barplot_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/barplot_single</a><br />
36 | 散点图                       | <a href="https://omictoolsshiny.sanshugroup.com/scatter_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/scatter_single</a><br />
42 | 棒棒糖图                     | <a href="https://omictoolsshiny.sanshugroup.com/lollipop_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/lollipop_single</a><br />
51 | Auto MNR报告生成             | <a href="http://192.168.30.202:31157/" rel="nofollow ugc">http://192.168.30.202:31157/</a><br />
49 | 环型柱状图-单组              | <a href="https://omictoolsshiny.sanshugroup.com/circular_barplot_single/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/circular_barplot_single/</a><br />
48 | 折线图                       | <a href="https://omictoolsshiny.sanshugroup.com/lineplot_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/lineplot_single</a><br />
66 | 三元图                       | <a href="https://omictoolsshiny.sanshugroup.com/ternary/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/ternary/</a><br />
52 | 瀑布图                       | <a href="https://omictoolsshiny.sanshugroup.com/waterfalls/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/waterfalls/</a><br />
65 | 以图搜绘图工具               | <a href="http://192.168.30.202:31159" rel="nofollow ugc">http://192.168.30.202:31159</a><br />
47 | 云雨图                       | <a href="https://omictoolsshiny.sanshugroup.com/raincloud_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/raincloud_single</a><br />
58 | 环型柱状图-多组              | <a href="https://omictoolsshiny.sanshugroup.com/circular_barplot_mutigroup/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/circular_barplot_mutigroup/</a><br />
57 | 火山图                       | <a href="https://omictoolsshiny.sanshugroup.com/volcano/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/volcano/</a><br />
63 | docker harbor                | <a href="http://192.168.30.202:23099" rel="nofollow ugc">http://192.168.30.202:23099</a><br />
56 | PCoA                         | <a href="https://omictoolsshiny.sanshugroup.com/pcoa/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/pcoa/</a><br />
55 | TIC绘图（内部版）            | <a href="http://192.168.30.202:31156/TICPlot/" rel="nofollow ugc">http://192.168.30.202:31156/TICPlot/</a><br />
44 | Upset图                      | <a href="https://omictoolsshiny.sanshugroup.com/upset/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/upset/</a><br />
62 | 手绘风格流程图               | <a href="http://192.168.30.202:31154/" rel="nofollow ugc">http://192.168.30.202:31154/</a><br />
54 | 双向条形图                   | <a href="https://omictoolsshiny.sanshugroup.com/bidirectional_barplot_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/bidirectional_barplot_single</a><br />
41 | 核密度图                     | <a href="https://omictoolsshiny.sanshugroup.com/density_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/density_single</a><br />
53 | 散点饼图                     | <a href="https://omictoolsshiny.sanshugroup.com/scatterpie/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/scatterpie/</a><br />
39 | 误差柱状图                   | <a href="https://omictoolsshiny.sanshugroup.com/barplot_single_witherrorbar/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/barplot_single_witherrorbar/</a><br />
61 | 流程图绘制小工具             | <a href="http://192.168.30.202:31155/" rel="nofollow ugc">http://192.168.30.202:31155/</a><br />
60 | 华夫饼图                     | <a href="https://omictoolsshiny.sanshugroup.com/waffle/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/waffle/</a><br />
68 | 二级谱图绘图小程序           | <a href="http://192.168.30.202:31162/" rel="nofollow ugc">http://192.168.30.202:31162/</a><br />
59 | 雷达图                       | <a href="https://omictoolsshiny.sanshugroup.com/radar/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/radar/</a><br />
67 | 代谢raw2msp格式转换          | <a href="http://192.168.30.202:31158/" rel="nofollow ugc">http://192.168.30.202:31158/</a><br />
35 | 相关性绘图                   | <a href="https://omictoolsshiny.sanshugroup.com/corplot_single" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/corplot_single</a><br />
31 | 韦恩图绘制                   | <a href="https://omictoolsweb.sanshugroup.com/jvenn/docs/index.html" rel="nofollow ugc">https://omictoolsweb.sanshugroup.com/jvenn/docs/index.html</a><br />
32 | PCA绘图                      | <a href="https://omictoolsshiny.sanshugroup.com/pca" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/pca</a><br />
27 | jbrowse                      | <a href="http://192.168.30.203:8079" rel="nofollow ugc">http://192.168.30.203:8079</a><br />
22 | cromwell                     | <a href="http://192.168.30.206:8000" rel="nofollow ugc">http://192.168.30.206:8000</a><br />
20 | 核磁工具(kaiyuan)            | <a href="http://192.168.30.202:30007/" rel="nofollow ugc">http://192.168.30.202:30007/</a><br />
16 | kubesphere                   | <a href="http://192.168.30.202:30880/" rel="nofollow ugc">http://192.168.30.202:30880/</a><br />
15 | 突变体数据库                 | <a href="https://omictools002.sanshugroup.com/#/" rel="nofollow ugc">https://omictools002.sanshugroup.com/#/</a><br />
28 | 聚类热图                     | <a href="https://omictoolsshiny.sanshugroup.com/heatmap_single/" rel="nofollow ugc">https://omictoolsshiny.sanshugroup.com/heatmap_single/</a><br />
69 | 矩形树图                     | <a href="http://192.168.30.202:31163/" rel="nofollow ugc">http://192.168.30.202:31163/</a></p>
]]></description><link>http://an.forum.genostack.com/post/2690</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2690</guid><dc:creator><![CDATA[zhanglu]]></dc:creator><pubDate>Sun, 21 Jul 2024 06:24:25 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Mon, 08 Jul 2024 04:15:16 GMT]]></title><description><![CDATA[<p dir="auto"><a href="/assets/uploads/files/1720412115488-t.csv">t.csv</a></p>
]]></description><link>http://an.forum.genostack.com/post/2687</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2687</guid><dc:creator><![CDATA[zhanglu]]></dc:creator><pubDate>Mon, 08 Jul 2024 04:15:16 GMT</pubDate></item><item><title><![CDATA[Reply to tmp on Mon, 08 Jul 2024 04:12:41 GMT]]></title><description><![CDATA[<p dir="auto">psql --dbname=qiime -c "COPY (select id,name,time_consuming,created_at,updated_at from data_analysis  where status='Succeeded' order by id desc) TO STDOUT csv header" &gt;/var/lib/postgresql/data/t.csv</p>
]]></description><link>http://an.forum.genostack.com/post/2686</link><guid isPermaLink="true">http://an.forum.genostack.com/post/2686</guid><dc:creator><![CDATA[zhanglu]]></dc:creator><pubDate>Mon, 08 Jul 2024 04:12:41 GMT</pubDate></item></channel></rss>